Commit fcab6f35 authored by Alexey Dobriyan's avatar Alexey Dobriyan Committed by Linus Torvalds

[PATCH] mm/mempolicy.c: fix 'if ();' typo

[akpm; it happens that the code was still correct, only inefficient ]
Signed-off-by: default avatarAlexey Dobriyan <adobriyan@gmail.com>
Cc: Christoph Lameter <christoph@lameter.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 1dd31b6c
...@@ -587,7 +587,7 @@ static int migrate_pages_to(struct list_head *pagelist, ...@@ -587,7 +587,7 @@ static int migrate_pages_to(struct list_head *pagelist,
} }
list_add(&page->lru, &newlist); list_add(&page->lru, &newlist);
nr_pages++; nr_pages++;
if (nr_pages > MIGRATE_CHUNK_SIZE); if (nr_pages > MIGRATE_CHUNK_SIZE)
break; break;
} }
err = migrate_pages(pagelist, &newlist, &moved, &failed); err = migrate_pages(pagelist, &newlist, &moved, &failed);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment