From: Shantanu Goel Date: Sat, 30 Dec 2006 00:48:59 +0000 (-0800) Subject: [PATCH] Buglet in vmscan.c X-Git-Tag: v2.6.20-rc3~26 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=918d3f90e8d5657491024f64427e9a5ea632d284;p=sfrench%2Fcifs-2.6.git [PATCH] Buglet in vmscan.c Fix a rather obvious buglet. Noticed while instrumenting the VM using /proc/vmstat. Cc: Christoph Lameter Cc: Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/mm/vmscan.c b/mm/vmscan.c index 63eb9ab0032b..40fea4918390 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -692,7 +692,7 @@ static unsigned long shrink_inactive_list(unsigned long max_scan, __count_vm_events(KSWAPD_STEAL, nr_freed); } else __count_zone_vm_events(PGSCAN_DIRECT, zone, nr_scan); - __count_vm_events(PGACTIVATE, nr_freed); + __count_zone_vm_events(PGSTEAL, zone, nr_freed); if (nr_taken == 0) goto done;