The patch titled
     fuse: fix bug in control filesystem mount
has been added to the -mm tree.  Its filename is
     fuse-fix-bug-in-control-filesystem-mount.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: fuse: fix bug in control filesystem mount
From: Miklos Szeredi <[EMAIL PROTECTED]>

The BUG in fuse_ctl_add_dentry() could be triggered if the control
filesystem was unmounted and mounted again while one or more fuse
filesystems were present.

The fix is to reset the dentry counter in fuse_ctl_kill_sb().

Bug reported by Florent Mertens.

Signed-off-by: Miklos Szeredi <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---

 fs/fuse/control.c |    4 ++++
 1 files changed, 4 insertions(+)

diff -puN fs/fuse/control.c~fuse-fix-bug-in-control-filesystem-mount 
fs/fuse/control.c
--- a/fs/fuse/control.c~fuse-fix-bug-in-control-filesystem-mount
+++ a/fs/fuse/control.c
@@ -193,8 +193,12 @@ static int fuse_ctl_get_sb(struct file_s
 
 static void fuse_ctl_kill_sb(struct super_block *sb)
 {
+       struct fuse_conn *fc;
+
        mutex_lock(&fuse_mutex);
        fuse_control_sb = NULL;
+       list_for_each_entry(fc, &fuse_conn_list, entry)
+               fc->ctl_ndents = 0;
        mutex_unlock(&fuse_mutex);
 
        kill_litter_super(sb);
_

Patches currently in -mm which might be from [EMAIL PROTECTED] are

fuse-fix-bug-in-control-filesystem-mount.patch

-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to