Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
+---
+ mm/mempolicy.c | 18 +++++++++---------
+ 1 file changed, 9 insertions(+), 9 deletions(-)
+
--- a/mm/mempolicy.c
+++ b/mm/mempolicy.c
-@@ -2195,8 +2195,8 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
+@@ -2029,8 +2029,8 @@ int mpol_parse_str(char *str, struct mem
char *rest = nodelist;
while (isdigit(*rest))
rest++;
}
break;
case MPOL_INTERLEAVE:
-@@ -2205,7 +2205,6 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
+@@ -2039,7 +2039,6 @@ int mpol_parse_str(char *str, struct mem
*/
if (!nodelist)
nodes = node_states[N_HIGH_MEMORY];
break;
case MPOL_LOCAL:
/*
-@@ -2214,7 +2213,6 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
+@@ -2048,7 +2047,6 @@ int mpol_parse_str(char *str, struct mem
if (nodelist)
goto out;
mode = MPOL_PREFERRED;
break;
case MPOL_DEFAULT:
/*
-@@ -2229,7 +2227,6 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
+@@ -2063,7 +2061,6 @@ int mpol_parse_str(char *str, struct mem
*/
if (!nodelist)
goto out;
}
mode_flags = 0;
-@@ -2243,13 +2240,14 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
+@@ -2077,14 +2074,17 @@ int mpol_parse_str(char *str, struct mem
else if (!strcmp(flags, "relative"))
mode_flags |= MPOL_F_RELATIVE_NODES;
else
new = mpol_new(mode, mode_flags, &nodes);
if (IS_ERR(new))
- err = 1;
-- else {
+- else if (no_context)
+- new->w.user_nodemask = nodes; /* save for contextualization */
+ goto out;
-+
-+ {
- int ret;
- NODEMASK_SCRATCH(scratch);
- if (scratch) {
-@@ -2260,13 +2258,15 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
- ret = -ENOMEM;
- NODEMASK_SCRATCH_FREE(scratch);
- if (ret) {
-- err = 1;
- mpol_put(new);
-- } else if (no_context) {
-- /* save for contextualization */
-- new->w.user_nodemask = nodes;
-+ goto out;
- }
- }
+ err = 0;
+ if (no_context) {
+ /* save for contextualization */