From 87b907808d5e1d5b86928ec711a0d795201aeeb9 Mon Sep 17 00:00:00 2001 From: Nikolaus Rath Date: Sat, 6 Apr 2019 17:56:14 +0100 Subject: 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. --- include/fuse_kernel.h | 7 ------- 1 file changed, 7 deletions(-) (limited to 'include/fuse_kernel.h') 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 */ -- cgit v1.2.3