[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <EFD6DBD752D5C44BAF4AE4BE140985E010D4C92D@SHSMSX104.ccr.corp.intel.com>
Date: Fri, 28 Mar 2014 15:35:24 +0000
From: "Chen, Jet" <jet.chen@...el.com>
To: Fabian Frederick <fabf@...net.be>,
linux-kernel <linux-kernel@...r.kernel.org>
CC: akpm <akpm@...ux-foundation.org>,
"Wu, Fengguang" <fengguang.wu@...el.com>
Subject: RE: [PATCH linux-next v2] ufs: sb mutex merge + mutex_destroy: fix
Hi Fabian,
I helped to test your patch on our LKP system. Your patch fixes the boot failure issue. Thank you for your work.
Thanks,
-Jet
-----Original Message-----
From: linux-kernel-owner@...r.kernel.org [mailto:linux-kernel-owner@...r.kernel.org] On Behalf Of Fabian Frederick
Sent: Friday, March 28, 2014 6:39 AM
To: linux-kernel
Cc: akpm; Wu, Fengguang
Subject: [PATCH linux-next v2] ufs: sb mutex merge + mutex_destroy: fix
mutex_destroy was also called when trying to mount volume in read/write without write support enabled.
Reported by Fengguang Wu.
Signed-off-by: Fabian Frederick <fabf@...net.be>
---
v2: failed_noreadwrite is only used with CONFIG_UFS_FS_WRITE
-> add ifndef
fs/ufs/super.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/fs/ufs/super.c b/fs/ufs/super.c index d05cf89..432baa1 100644
--- a/fs/ufs/super.c
+++ b/fs/ufs/super.c
@@ -798,7 +798,7 @@ static int ufs_fill_super(struct super_block *sb, void *data, int silent)
if (!(sb->s_flags & MS_RDONLY)) {
printk("ufs was compiled with read-only support, "
"can't be mounted as read-write\n");
- goto failed;
+ goto failed_noreadwrite;
}
#endif
mutex_init(&sbi->mutex);
@@ -1255,10 +1255,14 @@ magic_found:
return 0;
failed:
+ mutex_destroy(&sbi->mutex);
+
+#ifndef CONFIG_UFS_FS_WRITE
+failed_noreadwrite:
+#endif
if (ubh)
ubh_brelse_uspi (uspi);
kfree (uspi);
- mutex_destroy(&sbi->mutex);
kfree(sbi);
sb->s_fs_info = NULL;
UFSD("EXIT (FAILED)\n");
--
1.8.4.5
--
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/
--
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