Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42772
b: refs/heads/master
c: e9168c1
h: refs/heads/master
v: v3
  • Loading branch information
Miklos Szeredi authored and Linus Torvalds committed Dec 7, 2006
1 parent a589703 commit d93916e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 48ed214d10ae3c3999af938970f7b5b58df77be3
refs/heads/master: e9168c189fd54171124b5d25644024d99869e6a8
12 changes: 9 additions & 3 deletions trunk/include/linux/fuse.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#define FUSE_KERNEL_VERSION 7

/** Minor version number of this interface */
#define FUSE_KERNEL_MINOR_VERSION 7
#define FUSE_KERNEL_MINOR_VERSION 8

/** The node ID of the root inode */
#define FUSE_ROOT_ID 1
Expand Down Expand Up @@ -92,6 +92,11 @@ struct fuse_file_lock {
#define FUSE_ASYNC_READ (1 << 0)
#define FUSE_POSIX_LOCKS (1 << 1)

/**
* Release flags
*/
#define FUSE_RELEASE_FLUSH (1 << 0)

enum fuse_opcode {
FUSE_LOOKUP = 1,
FUSE_FORGET = 2, /* no reply */
Expand Down Expand Up @@ -205,12 +210,13 @@ struct fuse_open_out {
struct fuse_release_in {
__u64 fh;
__u32 flags;
__u32 padding;
__u32 release_flags;
__u64 lock_owner;
};

struct fuse_flush_in {
__u64 fh;
__u32 flush_flags;
__u32 unused;
__u32 padding;
__u64 lock_owner;
};
Expand Down

0 comments on commit d93916e

Please sign in to comment.