diff options
author | Christoph Hellwig <hch@lst.de> | 2005-11-07 03:59:44 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:53:41 -0500 |
commit | 2cf06916217b5dcb2cc52a495e1f130cc8434ef5 (patch) | |
tree | 58e2392e82d0354e713fe17eff9d4edb62e98c9d /fs/befs/linuxvfs.c | |
parent | 8c65b4a60450590e79a28e9717ceffa9e4debb3f (diff) |
[PATCH] befs: use generic_ro_fops
No need to duplicate a generic readonly file ops table in befs.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/befs/linuxvfs.c')
-rw-r--r-- | fs/befs/linuxvfs.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index e0a6025f1d06..e8112ad5365d 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
@@ -73,12 +73,6 @@ static struct inode_operations befs_dir_inode_operations = { | |||
73 | .lookup = befs_lookup, | 73 | .lookup = befs_lookup, |
74 | }; | 74 | }; |
75 | 75 | ||
76 | static struct file_operations befs_file_operations = { | ||
77 | .llseek = default_llseek, | ||
78 | .read = generic_file_read, | ||
79 | .mmap = generic_file_readonly_mmap, | ||
80 | }; | ||
81 | |||
82 | static struct address_space_operations befs_aops = { | 76 | static struct address_space_operations befs_aops = { |
83 | .readpage = befs_readpage, | 77 | .readpage = befs_readpage, |
84 | .sync_page = block_sync_page, | 78 | .sync_page = block_sync_page, |
@@ -398,7 +392,7 @@ befs_read_inode(struct inode *inode) | |||
398 | inode->i_mapping->a_ops = &befs_aops; | 392 | inode->i_mapping->a_ops = &befs_aops; |
399 | 393 | ||
400 | if (S_ISREG(inode->i_mode)) { | 394 | if (S_ISREG(inode->i_mode)) { |
401 | inode->i_fop = &befs_file_operations; | 395 | inode->i_fop = &generic_ro_fops; |
402 | } else if (S_ISDIR(inode->i_mode)) { | 396 | } else if (S_ISDIR(inode->i_mode)) { |
403 | inode->i_op = &befs_dir_inode_operations; | 397 | inode->i_op = &befs_dir_inode_operations; |
404 | inode->i_fop = &befs_dir_operations; | 398 | inode->i_fop = &befs_dir_operations; |