[mm patch] fuse: fix double fs_flags initializer

From: Miklos Szeredi
Date: Mon Jun 11 2007 - 10:33:20 EST


From: Miklos Szeredi <mszeredi@xxxxxxx>

Thanks to Alexey Dobriyan for spotting the other one.

Signed-off-by: Miklos Szeredi <mszeredi@xxxxxxx>
---

Index: linux/fs/fuse/inode.c
===================================================================
--- linux.orig/fs/fuse/inode.c 2007-06-11 16:14:46.000000000 +0200
+++ linux/fs/fuse/inode.c 2007-06-11 16:20:14.000000000 +0200
@@ -659,10 +659,9 @@ static int fuse_get_sb(struct file_syste
static struct file_system_type fuse_fs_type = {
.owner = THIS_MODULE,
.name = "fuse",
- .fs_flags = FS_HAS_SUBTYPE,
.get_sb = fuse_get_sb,
.kill_sb = kill_anon_super,
- .fs_flags = FS_SAFE,
+ .fs_flags = FS_HAS_SUBTYPE | FS_SAFE,
};

#ifdef CONFIG_BLOCK
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/