diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-09 16:10:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 17:03:45 -0400 |
commit | b6aeadeda22a9aa322fdfcd3f4c69ccf0da5cbdd (patch) | |
tree | 794afec0eeb13722550a97783ec0cfb95e5e83cb /fs/fuse/dir.c | |
parent | 9e6268db496a2592e89457537ea54a496feabb77 (diff) |
[PATCH] FUSE - file operations
This patch adds the file operations of FUSE.
The following operations are added:
o open
o flush
o release
o fsync
o readpage
o commit_write
Signed-off-by: Miklos Szeredi <miklos@szeredi.hu>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/fuse/dir.c')
-rw-r--r-- | fs/fuse/dir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fuse/dir.c b/fs/fuse/dir.c index 92c7188ccd16..8adc1eed164b 100644 --- a/fs/fuse/dir.c +++ b/fs/fuse/dir.c | |||
@@ -731,6 +731,7 @@ static struct inode_operations fuse_dir_inode_operations = { | |||
731 | }; | 731 | }; |
732 | 732 | ||
733 | static struct file_operations fuse_dir_operations = { | 733 | static struct file_operations fuse_dir_operations = { |
734 | .llseek = generic_file_llseek, | ||
734 | .read = generic_read_dir, | 735 | .read = generic_read_dir, |
735 | .readdir = fuse_readdir, | 736 | .readdir = fuse_readdir, |
736 | .open = fuse_dir_open, | 737 | .open = fuse_dir_open, |