diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2003-12-12 14:06:41 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2003-12-12 14:06:41 +0000 |
commit | 5e43f2c00c1ce3a9ee3ed9c2b5a9b32dabbb6e60 (patch) | |
tree | f2b700316c0ec296d18aee045fe098880602664b /include/linux/fuse.h | |
parent | e4cf733e1c0a1a959f2f3c4f1951ad35da58011e (diff) | |
download | libfuse-5e43f2c00c1ce3a9ee3ed9c2b5a9b32dabbb6e60.tar.gz |
added fsync operation
Diffstat (limited to 'include/linux/fuse.h')
-rw-r--r-- | include/linux/fuse.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h index 4be9a28..08ad214 100644 --- a/include/linux/fuse.h +++ b/include/linux/fuse.h @@ -103,7 +103,8 @@ enum fuse_opcode { FUSE_WRITE = 16, FUSE_STATFS = 17, FUSE_RELEASE = 18, /* no reply */ - FUSE_INVALIDATE = 19 /* user initiated */ + FUSE_INVALIDATE = 19, /* user initiated */ + FUSE_FSYNC = 20 }; /* Conservative buffer size for the client */ @@ -176,6 +177,10 @@ struct fuse_statfs_out { struct fuse_kstatfs st; }; +struct fuse_fsync_in { + int datasync; +}; + struct fuse_in_header { int unique; enum fuse_opcode opcode; |