aboutsummaryrefslogtreecommitdiffstats
path: root/fs/fuse
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2008-11-26 06:03:56 -0500
committerMiklos Szeredi <miklos@szeredi.hu>2008-11-26 06:03:56 -0500
commit43901aabd7a043e62e24e9459dc4949b4cd69f07 (patch)
treea3c111b3110852bd46a62b31bd510f08d6b20e88 /fs/fuse
parent0d179aa59285ceef529c125e181cbb79ff5245c2 (diff)
fuse: add fuse_conn->release()
Add fuse_conn->release() so that fuse_conn can be embedded in other structures. Signed-off-by: Tejun Heo <tj@kernel.org> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Diffstat (limited to 'fs/fuse')
-rw-r--r--fs/fuse/fuse_i.h3
-rw-r--r--fs/fuse/inode.c8
2 files changed, 10 insertions, 1 deletions
diff --git a/fs/fuse/fuse_i.h b/fs/fuse/fuse_i.h
index eb488d48b833..5e64b815a5a1 100644
--- a/fs/fuse/fuse_i.h
+++ b/fs/fuse/fuse_i.h
@@ -465,6 +465,9 @@ struct fuse_conn {
465 465
466 /** Version counter for attribute changes */ 466 /** Version counter for attribute changes */
467 u64 attr_version; 467 u64 attr_version;
468
469 /** Called on final put */
470 void (*release)(struct fuse_conn *);
468}; 471};
469 472
470static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb) 473static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb)
diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c
index 6c9fa03aa367..47c96fdca1ac 100644
--- a/fs/fuse/inode.c
+++ b/fs/fuse/inode.c
@@ -533,7 +533,7 @@ void fuse_conn_put(struct fuse_conn *fc)
533 fuse_request_free(fc->destroy_req); 533 fuse_request_free(fc->destroy_req);
534 mutex_destroy(&fc->inst_mutex); 534 mutex_destroy(&fc->inst_mutex);
535 bdi_destroy(&fc->bdi); 535 bdi_destroy(&fc->bdi);
536 kfree(fc); 536 fc->release(fc);
537 } 537 }
538} 538}
539 539
@@ -789,6 +789,11 @@ static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
789 fuse_request_send_background(fc, req); 789 fuse_request_send_background(fc, req);
790} 790}
791 791
792static void fuse_free_conn(struct fuse_conn *fc)
793{
794 kfree(fc);
795}
796
792static int fuse_fill_super(struct super_block *sb, void *data, int silent) 797static int fuse_fill_super(struct super_block *sb, void *data, int silent)
793{ 798{
794 struct fuse_conn *fc; 799 struct fuse_conn *fc;
@@ -837,6 +842,7 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent)
837 return err; 842 return err;
838 } 843 }
839 844
845 fc->release = fuse_free_conn;
840 fc->flags = d.flags; 846 fc->flags = d.flags;
841 fc->user_id = d.user_id; 847 fc->user_id = d.user_id;
842 fc->group_id = d.group_id; 848 fc->group_id = d.group_id;