aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin P. Mattock <justinmattock@gmail.com>2011-08-23 12:28:02 -0400
committerJiri Kosina <jkosina@suse.cz>2011-08-24 10:45:10 -0400
commit81d66c70b546e7be5d7e1f1ca9676fd17c5973af (patch)
tree73b65ca359b47c7952c99df9abebe5922c69ca5c
parent52288b6646ee4b1f3b97b5b64e4e84652c2a9bbe (diff)
mm/vmscan.c: fix a typo in a comment "relaimed" to "reclaimed"
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com> Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r--mm/vmscan.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c
index febbc044e792..8e32698fab66 100644
--- a/mm/vmscan.c
+++ b/mm/vmscan.c
@@ -1417,7 +1417,7 @@ static inline bool should_reclaim_stall(unsigned long nr_taken,
1417 if (sc->reclaim_mode & RECLAIM_MODE_SINGLE) 1417 if (sc->reclaim_mode & RECLAIM_MODE_SINGLE)
1418 return false; 1418 return false;
1419 1419
1420 /* If we have relaimed everything on the isolated list, no stall */ 1420 /* If we have reclaimed everything on the isolated list, no stall */
1421 if (nr_freed == nr_taken) 1421 if (nr_freed == nr_taken)
1422 return false; 1422 return false;
1423 1423