The patch titled reiser4 vs streamline-generic_file_-interfaces-and-filemap has been added to the -mm tree. Its filename is reiser4-vs-streamline-generic_file_-interfaces-and-filemap.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: reiser4 vs streamline-generic_file_-interfaces-and-filemap From: Laurent Riffard <laurent.riffard@xxxxxxx> generic_file_read has been dropped from 2.6.18-rc1-mm1. This patch works for me. Signed-off-by: Laurent Riffard <laurent.riffard@xxxxxxx> Cc: "Vladimir V. Saveliev" <vs@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/reiser4/plugin/file/cryptcompress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN fs/reiser4/plugin/file/cryptcompress.c~reiser4-vs-streamline-generic_file_-interfaces-and-filemap fs/reiser4/plugin/file/cryptcompress.c --- a/fs/reiser4/plugin/file/cryptcompress.c~reiser4-vs-streamline-generic_file_-interfaces-and-filemap +++ a/fs/reiser4/plugin/file/cryptcompress.c @@ -2883,7 +2883,7 @@ ssize_t read_cryptcompress(struct file * down_read(&info->lock); LOCK_CNT_INC(inode_sem_r); - result = generic_file_read(file, buf, size, off); + result = do_sync_read(file, buf, size, off); up_read(&info->lock); LOCK_CNT_DEC(inode_sem_r); _ Patches currently in -mm which might be from laurent.riffard@xxxxxxx are reiser4-vs-streamline-generic_file_-interfaces-and-filemap.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html