diff options
author | KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com> | 2009-12-14 20:59:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-15 11:53:18 -0500 |
commit | 338fde90930eaa02f6f394daa23d35a410af5852 (patch) | |
tree | 6a230b458d12e33b4b3d531f977636d1a4813102 /mm/vmscan.c | |
parent | ece74b2e7acfb71453f3f39948cc667434550dbb (diff) |
vmscan: make consistent of reclaim bale out between do_try_to_free_page and shrink_zone
Fix small inconsistent of ">" and ">=".
Signed-off-by: KOSAKI Motohiro <kosaki.motohiro@jp.fujitsu.com>
Reviewed-by: Rik van Riel <riel@redhat.com>
Reviewed-by: Minchan Kim <minchan.kim@gmail.com>
Cc: Mel Gorman <mel@csn.ul.ie>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/vmscan.c')
-rw-r--r-- | mm/vmscan.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index 2b1c74817a1e..2ef59d5b16a6 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
@@ -1637,7 +1637,7 @@ static void shrink_zone(int priority, struct zone *zone, | |||
1637 | * with multiple processes reclaiming pages, the total | 1637 | * with multiple processes reclaiming pages, the total |
1638 | * freeing target can get unreasonably large. | 1638 | * freeing target can get unreasonably large. |
1639 | */ | 1639 | */ |
1640 | if (nr_reclaimed > nr_to_reclaim && priority < DEF_PRIORITY) | 1640 | if (nr_reclaimed >= nr_to_reclaim && priority < DEF_PRIORITY) |
1641 | break; | 1641 | break; |
1642 | } | 1642 | } |
1643 | 1643 | ||