diff options
author | Nigel Cunningham <nigel@suspend2.net> | 2006-12-22 04:07:21 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.osdl.org> | 2006-12-22 11:55:47 -0500 |
commit | e07aa05b606deeb1a8b55cd19098427c72daebce (patch) | |
tree | c13323bfb4345f69fbc58bc4aab1324f66a5d0ec /mm | |
parent | 3b2b96abbf321891bdde5412d23bc4123c6cccec (diff) |
[PATCH] Fix swapped parameters in mm/vmscan.c
The version of mm/vmscan.c in Linus' current tree has swapped parameters in
the shrink_all_zones declaration and call, used by the various
suspend-to-disk implementations. This doesn't seem to have any great
adverse effect, but it's clearly wrong.
Signed-off-by: Nigel Cunningham <nigel@suspend2.net>
Cc: Pavel Machek <pavel@ucw.cz>
Cc: "Rafael J. Wysocki" <rjw@sisk.pl>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'mm')
-rw-r--r-- | mm/vmscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/vmscan.c b/mm/vmscan.c index e9813b06c7a3..63eb9ab0032b 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c | |||
@@ -1369,8 +1369,8 @@ void wakeup_kswapd(struct zone *zone, int order) | |||
1369 | * | 1369 | * |
1370 | * For pass > 3 we also try to shrink the LRU lists that contain a few pages | 1370 | * For pass > 3 we also try to shrink the LRU lists that contain a few pages |
1371 | */ | 1371 | */ |
1372 | static unsigned long shrink_all_zones(unsigned long nr_pages, int pass, | 1372 | static unsigned long shrink_all_zones(unsigned long nr_pages, int prio, |
1373 | int prio, struct scan_control *sc) | 1373 | int pass, struct scan_control *sc) |
1374 | { | 1374 | { |
1375 | struct zone *zone; | 1375 | struct zone *zone; |
1376 | unsigned long nr_to_scan, ret = 0; | 1376 | unsigned long nr_to_scan, ret = 0; |