On Mon, 2007-04-02 at 14:09 +0200, Nick Piggin wrote: > Updated aops patchset against 2.6.21-rc5. > > http://www.kernel.org/pub/linux/kernel/people/npiggin/patches/new-aops/ > > Files/dirs are 2.6.21-rc5-new-aops* [root@elm3a241 linux-2.6.21-rc5]# make -j8 modules CHK include/linux/version.h CHK include/linux/utsrelease.h Building modules, stage 2. MODPOST 1281 modules WARNING: "cont_write_begin" [fs/fat/fat.ko] undefined! make[1]: *** [__modpost] Error 1 make: *** [modules] Error 2 Here is the fix. Thanks, Badari --- fs/buffer.c | 1 + 1 file changed, 1 insertion(+) Index: linux-2.6.21-rc5/fs/buffer.c =================================================================== --- linux-2.6.21-rc5.orig/fs/buffer.c 2007-04-02 13:45:56.000000000 -0700 +++ linux-2.6.21-rc5/fs/buffer.c 2007-04-02 14:33:20.000000000 -0700 @@ -3128,6 +3128,7 @@ EXPORT_SYMBOL(block_sync_page); EXPORT_SYMBOL(block_truncate_page); EXPORT_SYMBOL(block_write_full_page); EXPORT_SYMBOL(cont_prepare_write); +EXPORT_SYMBOL(cont_write_begin); EXPORT_SYMBOL(end_buffer_read_sync); EXPORT_SYMBOL(end_buffer_write_sync); EXPORT_SYMBOL(file_fsync); - To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html