public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [Patch - 2.4.17++] Fix undefined ksym in minix.o, ext2.o, sysv.o
@ 2002-01-22 22:16 Kristofer T. Karas
  2002-01-22 22:32 ` Jeff Garzik
  0 siblings, 1 reply; 4+ messages in thread
From: Kristofer T. Karas @ 2002-01-22 22:16 UTC (permalink / raw)
  To: linux-kernel; +Cc: Marcelo Tosatti

Marcelo, et al,

Compiling minix as a module results in an unresolved symbol,
waitfor_one_page:

pinhead:~# depmod -a -e
depmod: *** Unresolved symbols in
/lib/modules/BootsAs/n18p4/kernel/fs/minix/minix.o
depmod:         waitfor_one_page
pinhead:~#

Looks as if EXT2 and SYSV are also affected.

Trivial patch [tested on i386] appended.

Kris

##################

--- linux-2.4.18p6/kernel/ksyms.c	Tue Jan 22 17:12:25 2002
+++ linux/kernel/ksyms.c	Tue Jan 22 17:01:25 2002
@@ -268,6 +268,9 @@
 EXPORT_SYMBOL(lock_may_read);
 EXPORT_SYMBOL(lock_may_write);
 EXPORT_SYMBOL(dcache_readdir);
+#if defined(CONFIG_EXT2_FS)||defined(CONFIG_MINIX_FS)||defined(CONFIG_SYSV_FS)
+EXPORT_SYMBOL(waitfor_one_page);
+#endif
 
 /* for stackable file systems (lofs, wrapfs, cryptfs, etc.) */
 EXPORT_SYMBOL(default_llseek);

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2002-01-22 23:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-01-22 22:16 [Patch - 2.4.17++] Fix undefined ksym in minix.o, ext2.o, sysv.o Kristofer T. Karas
2002-01-22 22:32 ` Jeff Garzik
2002-01-22 22:37   ` Kristofer T. Karas
2002-01-22 23:58   ` David Woodhouse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox