From: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
To: LKML <linux-kernel@vger.kernel.org>
Cc: kosaki.motohiro@jp.fujitsu.com, kiran@scalex86.org,
cl@linux-foundation.org, hugh.dickins@tiscali.co.uk,
lee.schermerhorn@hp.com, mel@csn.ul.ie, stable@kernel.org,
linux-mm <linux-mm@kvack.org>,
akpm@linux-foundation.org
Subject: [PATCH 1/5] tmpfs: fix oops on mounts with mpol=default
Date: Tue, 16 Mar 2010 14:49:28 +0900 (JST) [thread overview]
Message-ID: <20100316144810.4C48.A69D9226@jp.fujitsu.com> (raw)
In-Reply-To: <20100316143406.4C45.A69D9226@jp.fujitsu.com>
ChangeLog from Ravikiran's original one
- Fix the patch description. the problem is in mount, not only remount.
- Skip mpol_new() simply, instead adding NULL check.
=========================
From: Ravikiran G Thirumalai <kiran@scalex86.org>
Fix an 'oops' when a tmpfs mount point is mounted with the mpol=default
mempolicy.
Upon remounting a tmpfs mount point with 'mpol=default' option, the
mount code crashed with a null pointer dereference. The initial
problem report was on 2.6.27, but the problem exists in mainline
2.6.34-rc as well. On examining the code, we see that mpol_new returns
NULL if default mempolicy was requested. This 'NULL' mempolicy is
accessed to store the node mask resulting in oops.
The following patch fixes it.
Signed-off-by: Ravikiran Thirumalai <kiran@scalex86.org>
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Cc: Christoph Lameter <cl@linux-foundation.org>
Cc: Mel Gorman <mel@csn.ul.ie>
Cc: Lee Schermerhorn <lee.schermerhorn@hp.com>
Cc: Hugh Dickins <hugh.dickins@tiscali.co.uk>
Cc: <stable@kernel.org>
---
mm/mempolicy.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/mm/mempolicy.c b/mm/mempolicy.c
index bda230e..25a0c0f 100644
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
@@ -2213,10 +2213,15 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
goto out;
mode = MPOL_PREFERRED;
break;
-
+ case MPOL_DEFAULT:
+ /*
+ * Insist on a empty nodelist
+ */
+ if (!nodelist)
+ err = 0;
+ goto out;
/*
* case MPOL_BIND: mpol_new() enforces non-empty nodemask.
- * case MPOL_DEFAULT: mpol_new() enforces empty nodemask, ignores flags.
*/
}
--
1.6.5.2
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2010-03-16 5:49 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <201003122353.o2CNrC56015250@imap1.linux-foundation.org>
2010-03-16 5:47 ` + tmpfs-fix-oops-on-remounts-with-mpol=default.patch added to -mm tree KOSAKI Motohiro
2010-03-16 5:49 ` KOSAKI Motohiro [this message]
2010-03-17 14:16 ` [PATCH 1/5] tmpfs: fix oops on mounts with mpol=default Lee Schermerhorn
2010-03-16 5:50 ` [PATCH 2/5] tmpfs: mpol=bind:0 don't cause mount error KOSAKI Motohiro
2010-03-17 14:17 ` Lee Schermerhorn
2010-03-16 5:51 ` [PATCH 3/5] tmpfs: handle MPOL_LOCAL mount option properly KOSAKI Motohiro
2010-03-17 14:25 ` Lee Schermerhorn
2010-03-17 16:26 ` Hugh Dickins
2010-03-17 23:52 ` KOSAKI Motohiro
2010-03-18 1:55 ` Lee Schermerhorn
2010-03-18 21:21 ` Hugh Dickins
2010-03-16 5:52 ` [PATCH 4/5] tmpfs: cleanup mpol_parse_str() KOSAKI Motohiro
2010-03-17 14:25 ` Lee Schermerhorn
2010-03-16 5:53 ` [PATCH 5/5] doc: add the documentation for mpol=local KOSAKI Motohiro
2010-03-17 14:42 ` Lee Schermerhorn
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20100316144810.4C48.A69D9226@jp.fujitsu.com \
--to=kosaki.motohiro@jp.fujitsu.com \
--cc=akpm@linux-foundation.org \
--cc=cl@linux-foundation.org \
--cc=hugh.dickins@tiscali.co.uk \
--cc=kiran@scalex86.org \
--cc=lee.schermerhorn@hp.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mel@csn.ul.ie \
--cc=stable@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox