Re: 2.4.12 -- Unresolved symbols in fs/jfs/jfs.o: block_flushpage

Andrew Morton (akpm@zip.com.au)
Wed, 01 May 2002 00:21:54 -0700


Miles Lane wrote:
>
> depmod: *** Unresolved symbols in /lib/modules/2.5.12/kernel/fs/jfs/jfs.o
> depmod: block_flushpage
>

block_flushpage() used to be a macro which pointed at the
exported discard_bh_page(). I turned block_flushpage() into
a real function but forgot the export.

--- linux-2.5.12/fs/buffer.c Tue Apr 30 17:56:30 2002
+++ 25/fs/buffer.c Wed May 1 00:19:10 2002
@@ -1231,6 +1231,7 @@ int block_flushpage(struct page *page, u

return 1;
}
+EXPORT_SYMBOL(block_flushpage);

/*
* We attach and possibly dirty the buffers atomically wrt

-
-
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/