aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Kara <jack@suse.cz>2007-12-19 15:24:52 +0100
committerMark Fasheh <mark.fasheh@oracle.com>2008-01-25 15:05:45 -0800
commit32c3c0e2e515197ad240f5104116254975e6bbce (patch)
treeeb68b0a63c68ca9f51a5dad94430696c2bb17b2a
parentocfs2: Safer read_inline_data() (diff)
downloadlinux-dev-32c3c0e2e515197ad240f5104116254975e6bbce.tar.xz
linux-dev-32c3c0e2e515197ad240f5104116254975e6bbce.zip
ocfs2: Use generic_file_llseek
We should use generic_file_llseek() and not default_llseek() so that s_maxbytes gets properly checked when seeking. Signed-off-by: Jan Kara <jack@suse.cz> Signed-off-by: Mark Fasheh <mark.fasheh@oracle.com>
-rw-r--r--fs/ocfs2/file.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/ocfs2/file.c b/fs/ocfs2/file.c
index caefd571782e..6ebc9f9ec52c 100644
--- a/fs/ocfs2/file.c
+++ b/fs/ocfs2/file.c
@@ -2233,6 +2233,7 @@ const struct inode_operations ocfs2_special_file_iops = {
};
const struct file_operations ocfs2_fops = {
+ .llseek = generic_file_llseek,
.read = do_sync_read,
.write = do_sync_write,
.mmap = ocfs2_mmap,
@@ -2251,6 +2252,7 @@ const struct file_operations ocfs2_fops = {
};
const struct file_operations ocfs2_dops = {
+ .llseek = generic_file_llseek,
.read = generic_read_dir,
.readdir = ocfs2_readdir,
.fsync = ocfs2_sync_file,