Jean-Luc:
> Here is what I get trying loading minix module :
>
> [root@debian] ~ # modprobe minix
> /lib/modules/2.3.39/fs/minix.o: unresolved symbol fs_overflowuid
> /lib/modules/2.3.39/fs/minix.o: unresolved symbol fs_overflowgid
> /lib/modules/2.3.39/fs/minix.o: insmod /lib/modules/2.3.39/fs/minix.o failed
> /lib/modules/2.3.39/fs/minix.o: insmod minix failed
My fault. The following patch fixes this problem.
Sorry for the inconvenience,
Chris Wing
wingc@engin.umich.edu
diff -uNr linux-2.3.39/kernel/ksyms.c linux-arch-independ/kernel/ksyms.c
--- linux-2.3.39/kernel/ksyms.c Sat Jan 8 20:41:17 2000
+++ linux-arch-independ/kernel/ksyms.c Tue Jan 11 19:34:59 2000
@@ -42,6 +42,7 @@
#include <linux/mmzone.h>
#include <linux/mm.h>
#include <linux/capability.h>
+#include <linux/highuid.h>
#if defined(CONFIG_PROC_FS)
#include <linux/proc_fs.h>
@@ -429,6 +430,8 @@
EXPORT_SYMBOL(__down_trylock);
EXPORT_SYMBOL(__up);
EXPORT_SYMBOL(brw_page);
+EXPORT_SYMBOL(fs_overflowuid);
+EXPORT_SYMBOL(fs_overflowgid);
/* all busmice */
EXPORT_SYMBOL(add_mouse_randomness);
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/
This archive was generated by hypermail 2b29 : Sat Jan 15 2000 - 21:00:19 EST