The patch titled mm: cleanup indentation on switch for CPU operations has been added to the -mm tree. Its filename is mm-cleanup-indentation-on-switch-for-cpu-operations.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: mm: cleanup indentation on switch for CPU operations From: Andy Whitcroft <apw@xxxxxxxxxxxx> These patches introduced new switch statements which are indented contrary to the concensus in mm/*.c. Fix them up to match that concensus. [PATCH] node local per-cpu-pages [PATCH] ZVC: Scale thresholds depending on the size of the system commit e7c8d5c9955a4d2e88e36b640563f5d6d5aba48a commit df9ecaba3f152d1ea79f2a5e0b87505e03f47590 Signed-off-by: Andy Whitcroft <apw@xxxxxxxxxxxx> Cc: Christoph Lameter <clameter@xxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/page_alloc.c | 20 ++++++++++---------- mm/vmstat.c | 14 +++++++------- 2 files changed, 17 insertions(+), 17 deletions(-) diff -puN mm/page_alloc.c~mm-cleanup-indentation-on-switch-for-cpu-operations mm/page_alloc.c --- a/mm/page_alloc.c~mm-cleanup-indentation-on-switch-for-cpu-operations +++ a/mm/page_alloc.c @@ -2042,16 +2042,16 @@ static int __cpuinit pageset_cpuup_callb int ret = NOTIFY_OK; switch (action) { - case CPU_UP_PREPARE: - if (process_zones(cpu)) - ret = NOTIFY_BAD; - break; - case CPU_UP_CANCELED: - case CPU_DEAD: - free_zone_pagesets(cpu); - break; - default: - break; + case CPU_UP_PREPARE: + if (process_zones(cpu)) + ret = NOTIFY_BAD; + break; + case CPU_UP_CANCELED: + case CPU_DEAD: + free_zone_pagesets(cpu); + break; + default: + break; } return ret; } diff -puN mm/vmstat.c~mm-cleanup-indentation-on-switch-for-cpu-operations mm/vmstat.c --- a/mm/vmstat.c~mm-cleanup-indentation-on-switch-for-cpu-operations +++ a/mm/vmstat.c @@ -685,13 +685,13 @@ static int __cpuinit vmstat_cpuup_callba void *hcpu) { switch (action) { - case CPU_UP_PREPARE: - case CPU_UP_CANCELED: - case CPU_DEAD: - refresh_zone_stat_thresholds(); - break; - default: - break; + case CPU_UP_PREPARE: + case CPU_UP_CANCELED: + case CPU_DEAD: + refresh_zone_stat_thresholds(); + break; + default: + break; } return NOTIFY_OK; } _ Patches currently in -mm which might be from apw@xxxxxxxxxxxx are git-acpi.patch pci-device-ensure-sysdata-initialised-v2.patch get-rid-of-zone_table.patch deal-with-cases-of-zone_dma-meaning-the-first-zone.patch get-rid-of-zone_table-fix-3.patch optional-zone_dma-in-the-vm.patch zoneid-fix-up-calculations-for-zoneid_pgshift.patch enables-booting-a-numa-system-where-some-nodes-have-no.patch numa-node-ids-are-int-page_to_nid-and-zone_to_nid-should-return-int.patch silence-unused-pgdat-warning-from-alloc_bootmem_node-and-friends.patch mm-cleanup-indentation-on-switch-for-cpu-operations.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