The patch titled mm: fixup /proc/vmstat output has been removed from the -mm tree. Its filename was mm-fixup-proc-vmstat-output.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: mm: fixup /proc/vmstat output From: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Line up the vmstat_text with zone_stat_item enum zone_stat_item { /* First 128 byte cacheline (assuming 64 bit words) */ NR_FREE_PAGES, NR_INACTIVE, NR_ACTIVE, We current have nr_active and nr_inactive reversed. Signed-off-by: Peter Zijlstra <a.p.zijlstra@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/vmstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/vmstat.c~mm-fixup-proc-vmstat-output mm/vmstat.c --- a/mm/vmstat.c~mm-fixup-proc-vmstat-output +++ a/mm/vmstat.c @@ -477,8 +477,8 @@ const struct seq_operations fragmentatio static const char * const vmstat_text[] = { /* Zoned VM counters */ "nr_free_pages", - "nr_active", "nr_inactive", + "nr_active", "nr_anon_pages", "nr_mapped", "nr_file_pages", _ Patches currently in -mm which might be from peterz@xxxxxxxxxxxxx are origin.patch mm-double-mark_page_accessed-in-read_cache_page_async.patch - 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