]> git.hungrycats.org Git - linux/commitdiff
fuse: initialize fc->release before calling it
authorMiklos Szeredi <mszeredi@suse.cz>
Wed, 1 Jul 2015 14:25:55 +0000 (16:25 +0200)
committerJiri Slaby <jslaby@suse.cz>
Tue, 4 Aug 2015 14:52:26 +0000 (16:52 +0200)
commit 0ad0b3255a08020eaf50e34ef0d6df5bdf5e09ed upstream.

fc->release is called from fuse_conn_put() which was used in the error
cleanup before fc->release was initialized.

[Jeremiah Mahler <jmmahler@gmail.com>: assign fc->release after calling
fuse_conn_init(fc) instead of before.]

Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Fixes: a325f9b92273 ("fuse: update fuse_conn_init() and separate out fuse_conn_kill()")
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
fs/fuse/inode.c

index 4937d4b512531bd5e2831837eb2b8d7aed89d00e..68f12d51dbea9bd811defe0c530e917718767bc2 100644 (file)
@@ -1028,6 +1028,7 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent)
                goto err_fput;
 
        fuse_conn_init(fc);
+       fc->release = fuse_free_conn;
 
        fc->dev = sb->s_dev;
        fc->sb = sb;
@@ -1042,7 +1043,6 @@ static int fuse_fill_super(struct super_block *sb, void *data, int silent)
                fc->dont_mask = 1;
        sb->s_flags |= MS_POSIXACL;
 
-       fc->release = fuse_free_conn;
        fc->flags = d.flags;
        fc->user_id = d.user_id;
        fc->group_id = d.group_id;