The patch titled Buglet in vmscan.c has been removed from the -mm tree. Its filename was buglet-in-vmscanc.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Buglet in vmscan.c From: Shantanu Goel <sgoel01@xxxxxxxxx> Fix a rather obvious buglet. Noticed while instrumenting the VM using /proc/vmstat. Cc: Christoph Lameter <clameter@xxxxxxxxxxxx> Cc: <stable@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/vmscan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/vmscan.c~buglet-in-vmscanc mm/vmscan.c --- a/mm/vmscan.c~buglet-in-vmscanc +++ a/mm/vmscan.c @@ -692,7 +692,7 @@ static unsigned long shrink_inactive_lis __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; _ Patches currently in -mm which might be from sgoel01@xxxxxxxxx are - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html