jarausch@belgacom.net wrote:
>
> Hi,
>
> trying to build 2.4.14-pre7 breaks with the error message
> depmod: *** Unresolved symbols in /lib/modules/2.4.14-pre7/kernel/fs/romfs/romfs.o
> depmod: unlock_page
Not an official patch, but as the symbol was introduced into
mm/filemap.c
and is used widely through linux/mm.h, I guess it should simply be
exported.
-- Eyal Lebedinsky (eyal@eyal.emu.id.au) <http://samba.anu.edu.au/eyal/> --------------F45EAEDA2F6041D7B6485122 Content-Type: text/plain; charset=us-ascii; name="2.4.14-pre7-filemap.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="2.4.14-pre7-filemap.patch"--- linux/mm/filemap.c.orig Fri Nov 2 21:28:22 2001 +++ linux/mm/filemap.c Fri Nov 2 21:28:48 2001 @@ -785,6 +785,7 @@ if (waitqueue_active(&(page)->wait)) wake_up(&(page)->wait); } +EXPORT_SYMBOL(unlock_page); /* * Get a lock on the page, assuming we need to sleep
--------------F45EAEDA2F6041D7B6485122--
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/