aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2019-04-06 17:56:14 +0100
committerNikolaus Rath <Nikolaus@rath.org>2019-04-06 17:56:14 +0100
commit87b907808d5e1d5b86928ec711a0d795201aeeb9 (patch)
tree1ef3a00baaf316de2a27ab65f776b923507f4147 /include
parent1a6c9811e56bb2d113746325c8cdacb936fa895e (diff)
downloadlibfuse-87b907808d5e1d5b86928ec711a0d795201aeeb9.tar.gz
Delete FUSE_FSYNC_FDATASYNC
This constant is not defined in the kernel, so it will be lost when fuse_kernel.h is not synchronized. Instead, the kernel just passes a flag value of "1", so for now we also use a literal in userspace.
Diffstat (limited to 'include')
-rw-r--r--include/fuse_kernel.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/include/fuse_kernel.h b/include/fuse_kernel.h
index 5d34e56..401c569 100644
--- a/include/fuse_kernel.h
+++ b/include/fuse_kernel.h
@@ -339,13 +339,6 @@ struct fuse_file_lock {
*/
#define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0)
-/**
- * Fsync flags
- *
- * FUSE_FSYNC_FDATASYNC: Sync data only, not metadata
- */
-#define FUSE_FSYNC_FDATASYNC (1 << 0)
-
enum fuse_opcode {
FUSE_LOOKUP = 1,
FUSE_FORGET = 2, /* no reply */