diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2005-09-09 16:10:38 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-09 17:03:47 -0400 |
commit | 8254798199332966e2ab647380c990193af7e854 (patch) | |
tree | ad4a9721a872fbdec0be107f35684864a1a94053 /include | |
parent | b36c31ba95f0fe0a03c727300d9c4c54438a5636 (diff) |
[PATCH] FUSE: add fsync operation for directories
This patch adds a new FSYNCDIR request, which is sent when fsync is called
on directories. This operation is available in libfuse 2.3-pre1 or
greater.
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 'include')
-rw-r--r-- | include/linux/fuse.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index c65124a213a1..acbeb96a3353 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h | |||
@@ -99,7 +99,8 @@ enum fuse_opcode { | |||
99 | FUSE_INIT = 26, | 99 | FUSE_INIT = 26, |
100 | FUSE_OPENDIR = 27, | 100 | FUSE_OPENDIR = 27, |
101 | FUSE_READDIR = 28, | 101 | FUSE_READDIR = 28, |
102 | FUSE_RELEASEDIR = 29 | 102 | FUSE_RELEASEDIR = 29, |
103 | FUSE_FSYNCDIR = 30 | ||
103 | }; | 104 | }; |
104 | 105 | ||
105 | /* Conservative buffer size for the client */ | 106 | /* Conservative buffer size for the client */ |