diff options
author | Miklos Szeredi <mszeredi@suse.cz> | 2015-07-01 16:26:01 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@suse.cz> | 2015-07-01 16:26:01 +0200 |
commit | e16714d8756dc1237a66994e139b61feebcf707a (patch) | |
tree | 149f1106ae65abfb03e892a295f15d3a17477672 /fs/fuse/fuse_i.h | |
parent | f88996a93324483ff3ec027312bbacacf97a555b (diff) | |
download | linux-e16714d8756dc1237a66994e139b61feebcf707a.tar.bz2 |
fuse: duplicate ->connected in iqueue
This will allow checking ->connected just with the input queue lock.
Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Reviewed-by: Ashish Samant <ashish.samant@oracle.com>
Diffstat (limited to 'fs/fuse/fuse_i.h')
-rw-r--r-- | fs/fuse/fuse_i.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h index 3d075417042a..e8be4611fb8e 100644 --- a/fs/fuse/fuse_i.h +++ b/fs/fuse/fuse_i.h @@ -375,6 +375,9 @@ struct fuse_req { }; struct fuse_iqueue { + /** Connection established */ + unsigned connected; + /** Readers of the connection are waiting on this */ wait_queue_head_t waitq; |