Messages in this thread Patch in this message |  | | From | Marc-Christian Petersen <> | Subject | [PATCH] 2.5.35-vanilla compile error with NTFS - FIX | Date | Mon, 16 Sep 2002 14:04:00 +0200 |
| |
Hi Linus,
root@codeman:[/usr/src/linux-2.5.35] # make modules_install ... if [ -r System.map ]; then /sbin/depmod -ae -F System.map 2.5.35; fi depmod: *** Unresolved symbols in /lib/modules/2.5.35/kernel/fs/ntfs/ntfs.o depmod: unmap_underlying_metadata root@codeman:[/usr/src/linux-2.5.35] #
This also was true for 2.5.34.
... CONFIG_NTFS_FS=m # CONFIG_NTFS_DEBUG is not set CONFIG_NTFS_RW=y ...
The attached patch fixes it. Please apply.
-- Kind regards Marc-Christian Petersen
http://sourceforge.net/projects/wolk
PGP/GnuPG Key: 1024D/569DE2E3DB441A16 Fingerprint: 3469 0CF8 CA7E 0042 7824 080A 569D E2E3 DB44 1A16 Key available at www.keyserver.net. Encrypted e-mail preferred.diff -ruN linux-2.5.35-vanilla/fs/buffer.c linux-2.5.35-mcp1-fullkernel/fs/buffer.c --- linux-2.5.35-vanilla/fs/buffer.c 2002-09-16 10:47:01.000000000 +0200 +++ linux-2.5.35-mcp1-fullkernel/fs/buffer.c 2002-09-16 13:54:24.000000000 +0200 @@ -1628,6 +1628,7 @@ __brelse(old_bh); } } +EXPORT_SYMBOL(unmap_underlying_metadata); /* * NOTE! All mapped/uptodate combinations are valid: |  |