From: Christoph Hellwig Date: Mon, 8 Sep 2008 17:42:50 +0000 (+0200) Subject: [PATCH] reiserfs: add missing llseek method X-Git-Tag: v2.6.28-rc1~24^2~7 X-Git-Url: http://pilppa.com/gitweb/?a=commitdiff_plain;h=91efc167d02509ea78abeff6d668065964c67c0b;p=linux-2.6-omap-h63xx.git [PATCH] reiserfs: add missing llseek method Reiserfs currently doesn't set a llseek method for regular files, which means it will fall back to default_llseek. This means no one can seek beyond 2 Gigabytes on reiserfs, and that there's not protection vs the i_size updates from writers. Signed-off-by: Christoph Hellwig --- diff --git a/fs/reiserfs/file.c b/fs/reiserfs/file.c index a804903d31d..33408417038 100644 --- a/fs/reiserfs/file.c +++ b/fs/reiserfs/file.c @@ -296,6 +296,7 @@ const struct file_operations reiserfs_file_operations = { .aio_write = generic_file_aio_write, .splice_read = generic_file_splice_read, .splice_write = generic_file_splice_write, + .llseek = generic_file_llseek, }; const struct inode_operations reiserfs_file_inode_operations = {