diff options
Diffstat (limited to 'kernel/fuse_i.h')
-rw-r--r-- | kernel/fuse_i.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kernel/fuse_i.h b/kernel/fuse_i.h index 0841e44..9be2de1 100644 --- a/kernel/fuse_i.h +++ b/kernel/fuse_i.h @@ -357,6 +357,9 @@ struct fuse_conn { reply, before any other request, and never cleared */ unsigned conn_error : 1; + /** Connection successful. Only set in INIT */ + unsigned conn_init : 1; + /** Do readpages asynchronously? Only set in INIT */ unsigned async_read : 1; @@ -427,6 +430,9 @@ struct fuse_conn { /** Key for lock owner ID scrambling */ u32 scramble_key[4]; + + /** Reserved request for the DESTROY message */ + struct fuse_req *destroy_req; }; static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb) |