Skip to content

Commit

Permalink
tmpfs: cleanup mpol_parse_str()
Browse files Browse the repository at this point in the history
mpol_parse_str() made lots 'err' variable related bug.  Because it is ugly
and reviewing unfriendly.

This patch simplifies it.

Signed-off-by: KOSAKI Motohiro <[email protected]>
Cc: Ravikiran Thirumalai <[email protected]>
Cc: Christoph Lameter <[email protected]>
Cc: Mel Gorman <[email protected]>
Acked-by: Lee Schermerhorn <[email protected]>
Cc: Hugh Dickins <[email protected]>
Cc: <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
kosaki authored and torvalds committed Mar 24, 2010
1 parent 12821f5 commit 926f2ae
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions 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 926f2ae

Please sign in to comment.