aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2007-08-30 17:21:19 +0100
committerDavid Woodhouse <dwmw2@infradead.org>2007-09-02 18:18:46 +0100
commit48440e893d700fb8f0de95fa7d748b711d290365 (patch)
treeb7d1bed75038b93dc3f2fd3c35727f8093e7fff5 /drivers/mtd
parent[JFFS2] fix write deadlock regression (diff)
downloadlinux-dev-48440e893d700fb8f0de95fa7d748b711d290365.tar.xz
linux-dev-48440e893d700fb8f0de95fa7d748b711d290365.zip
[MTD] Initialise s_flags in get_sb_mtd_aux()
Initialise s_flags in get_sb_mtd_aux() from the flags parameter. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/mtdsuper.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/mtdsuper.c b/drivers/mtd/mtdsuper.c
index aca331971201..9b430f20b640 100644
--- a/drivers/mtd/mtdsuper.c
+++ b/drivers/mtd/mtdsuper.c
@@ -70,6 +70,8 @@ static int get_sb_mtd_aux(struct file_system_type *fs_type, int flags,
DEBUG(1, "MTDSB: New superblock for device %d (\"%s\")\n",
mtd->index, mtd->name);
+ sb->s_flags = flags;
+
ret = fill_super(sb, data, flags & MS_SILENT ? 1 : 0);
if (ret < 0) {
up_write(&sb->s_umount);