[<prev] [next>] [day] [month] [year] [list]
Message-Id: <E1HxkwN-0006iA-00@dorka.pomaz.szeredi.hu>
Date: Mon, 11 Jun 2007 16:32:19 +0200
From: Miklos Szeredi <miklos@...redi.hu>
To: akpm@...l.org
CC: adobriyan@...il.com, linux-kernel@...r.kernel.org
Subject: [mm patch] fuse: fix double fs_flags initializer
From: Miklos Szeredi <mszeredi@...e.cz>
Thanks to Alexey Dobriyan for spotting the other one.
Signed-off-by: Miklos Szeredi <mszeredi@...e.cz>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists