Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 188916
b: refs/heads/master
c: 926f2ae
h: refs/heads/master
v: v3
  • Loading branch information
KOSAKI Motohiro authored and Linus Torvalds committed Mar 24, 2010
1 parent b9f909c commit a0e4cf4
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 12821f5fb942e795f8009ece14bde868893bd811
refs/heads/master: 926f2ae04f183098cf9a30521776fb2759c8afeb
24 changes: 12 additions & 12 deletions trunk/mm/mempolicy.c
Original file line number Diff line number Diff line change
Expand Up @@ -2195,8 +2195,8 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
char *rest = nodelist;
while (isdigit(*rest))
rest++;
if (!*rest)
err = 0;
if (*rest)
goto out;
}
break;
case MPOL_INTERLEAVE:
Expand All @@ -2205,7 +2205,6 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
*/
if (!nodelist)
nodes = node_states[N_HIGH_MEMORY];
err = 0;
break;
case MPOL_LOCAL:
/*
Expand All @@ -2214,7 +2213,6 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
if (nodelist)
goto out;
mode = MPOL_PREFERRED;
err = 0;
break;
case MPOL_DEFAULT:
/*
Expand All @@ -2229,7 +2227,6 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
*/
if (!nodelist)
goto out;
err = 0;
}

mode_flags = 0;
Expand All @@ -2243,13 +2240,14 @@ int mpol_parse_str(char *str, struct mempolicy **mpol, int no_context)
else if (!strcmp(flags, "relative"))
mode_flags |= MPOL_F_RELATIVE_NODES;
else
err = 1;
goto out;
}

new = mpol_new(mode, mode_flags, &nodes);
if (IS_ERR(new))
err = 1;
else {
goto out;

{
int ret;
NODEMASK_SCRATCH(scratch);
if (scratch) {
Expand All @@ -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 */
new->w.user_nodemask = nodes;
}

out:
/* Restore string for error message */
Expand Down

0 comments on commit a0e4cf4

Please sign in to comment.