aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/fuse_i.h
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2006-10-08 17:35:40 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2006-10-08 17:35:40 +0000
commitb9ea32fc3bb3410c5f436c1f1f90558ff189bf23 (patch)
tree667f201f103569f79dcefcddc4ec699dc6418f04 /kernel/fuse_i.h
parent7e7fa1fb9429adf2061670c97ce30a39685daadd (diff)
downloadlibfuse-b9ea32fc3bb3410c5f436c1f1f90558ff189bf23.tar.gz
Add DESTROY message
Diffstat (limited to 'kernel/fuse_i.h')
-rw-r--r--kernel/fuse_i.h6
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)