diff options
author | Miklos Szeredi | 2007-11-29 01:22:01 +0100 |
---|---|---|
committer | Linus Torvalds | 2007-11-29 18:24:54 +0100 |
commit | d0186b25e65d4d786727a03044b8aafe2ba118ee (patch) | |
tree | cf02b766c799d3827782102d385935d2275af14b /fs/fuse/inode.c | |
parent | fuse: pass open flags to read and write (diff) | |
download | kernel-qcow2-linux-d0186b25e65d4d786727a03044b8aafe2ba118ee.tar.gz kernel-qcow2-linux-d0186b25e65d4d786727a03044b8aafe2ba118ee.tar.xz kernel-qcow2-linux-d0186b25e65d4d786727a03044b8aafe2ba118ee.zip |
fuse: fix FUSE_FILE_OPS sending
FUSE_FILE_OPS is meant to signal that the kernel will send the open file to to
the userspace filesystem for operations on open files, so that sillyrenaming
unlinked files becomes unnecessary.
However this needs VFS changes, which won't make it into 2.6.24.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/fuse/inode.c')
-rw-r--r-- | fs/fuse/inode.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 9a68d6970845..0cc95eeb9379 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -562,8 +562,7 @@ static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req) arg->major = FUSE_KERNEL_VERSION; arg->minor = FUSE_KERNEL_MINOR_VERSION; arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE; - arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_FILE_OPS | - FUSE_ATOMIC_O_TRUNC; + arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC; req->in.h.opcode = FUSE_INIT; req->in.numargs = 1; req->in.args[0].size = sizeof(*arg); |