aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fuse.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fuse.h')
-rw-r--r--include/linux/fuse.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/linux/fuse.h b/include/linux/fuse.h
index 436047093bc4..015a8b15a388 100644
--- a/include/linux/fuse.h
+++ b/include/linux/fuse.h
@@ -13,6 +13,7 @@
13 * 13 *
14 * 7.9: 14 * 7.9:
15 * - new fuse_getattr_in input argument of GETATTR 15 * - new fuse_getattr_in input argument of GETATTR
16 * - add lk_flags in fuse_lk_in
16 */ 17 */
17 18
18#include <asm/types.h> 19#include <asm/types.h>
@@ -113,6 +114,11 @@ struct fuse_file_lock {
113 */ 114 */
114#define FUSE_GETATTR_FH (1 << 0) 115#define FUSE_GETATTR_FH (1 << 0)
115 116
117/**
118 * Lock flags
119 */
120#define FUSE_LK_FLOCK (1 << 0)
121
116enum fuse_opcode { 122enum fuse_opcode {
117 FUSE_LOOKUP = 1, 123 FUSE_LOOKUP = 1,
118 FUSE_FORGET = 2, /* no reply */ 124 FUSE_FORGET = 2, /* no reply */
@@ -295,6 +301,8 @@ struct fuse_lk_in {
295 __u64 fh; 301 __u64 fh;
296 __u64 owner; 302 __u64 owner;
297 struct fuse_file_lock lk; 303 struct fuse_file_lock lk;
304 __u32 lk_flags;
305 __u32 padding;
298}; 306};
299 307
300struct fuse_lk_out { 308struct fuse_lk_out {