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 <[EMAIL PROTECTED]> diff -ruNp 930-vmscan.patch-old/mm/vmscan.c 930-vmscan.patch-new/mm/vmscan.c --- 930-vmscan.patch-old/mm/vmscan.c 2006-12-12 12:24:05.000000000 +1100 +++ 930-vmscan.patch-new/mm/vmscan.c 2006-12-12 12:23:52.000000000 +1100 @@ -1443,8 +1443,8 @@ void wakeup_kswapd(struct zone *zone, in * * For pass > 3 we also try to shrink the LRU lists that contain a few pages */ -static unsigned long shrink_all_zones(unsigned long nr_pages, int pass, - int prio, struct scan_control *sc) +static unsigned long shrink_all_zones(unsigned long nr_pages, int prio, + int pass, struct scan_control *sc) { struct zone *zone; unsigned long nr_to_scan, ret = 0; - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/