diff options
author | Feng Shuo <steve.shuo.feng@gmail.com> | 2013-01-15 11:23:28 +0800 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2013-01-31 17:08:11 +0100 |
commit | 4582a4ab2a0e7218449fb2e895d0aae9ea753c94 (patch) | |
tree | 20e4bf90709bf369665c3261753fcf32ff0d1b78 /fs/fuse/inode.c | |
parent | c2132c1bc73d9a279cec148f74ea709c960b3d89 (diff) |
FUSE: Adapt readdirplus to application usage patterns
Use the same adaptive readdirplus mechanism as NFS:
http://permalink.gmane.org/gmane.linux.nfs/49299
If the user space implementation wants to disable readdirplus
temporarily, it could just return ENOTSUPP. Then kernel will
recall it with readdir.
Signed-off-by: Feng Shuo <steve.shuo.feng@gmail.com>
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r-- | fs/fuse/inode.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 79b70deb7cd6..9876a87255fe 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -92,6 +92,7 @@ static struct inode *fuse_alloc_inode(struct super_block *sb) fi->attr_version = 0; fi->writectr = 0; fi->orig_ino = 0; + fi->state = 0; INIT_LIST_HEAD(&fi->write_files); INIT_LIST_HEAD(&fi->queued_writes); INIT_LIST_HEAD(&fi->writepages); |