The patch titled zone_statistics: Use hot node instead of cold zone_pgdat has been removed from the -mm tree. Its filename is zone_statistics-use-hot-node-instead-of-cold-zone_pgdat.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: zone_statistics: Use hot node instead of cold zone_pgdat From: Christoph Lameter <clameter@xxxxxxx> Now that we have the node in the hot zone of struct zone we can avoid accessing zone_pgdat in zone_statistics. Signed-off-by: Christoph Lameter <clameter@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/vmstat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/vmstat.c~zone_statistics-use-hot-node-instead-of-cold-zone_pgdat mm/vmstat.c --- a/mm/vmstat.c~zone_statistics-use-hot-node-instead-of-cold-zone_pgdat +++ a/mm/vmstat.c @@ -371,7 +371,7 @@ void zone_statistics(struct zonelist *zo __inc_zone_state(z, NUMA_MISS); __inc_zone_state(zonelist->zones[0], NUMA_FOREIGN); } - if (z->zone_pgdat == NODE_DATA(numa_node_id())) + if (z->node == numa_node_id()) __inc_zone_state(z, NUMA_LOCAL); else __inc_zone_state(z, NUMA_OTHER); _ Patches currently in -mm which might be from clameter@xxxxxxx are origin.patch git-ia64.patch get-rid-of-zone_table.patch get-rid-of-zone_table-fix.patch deal-with-cases-of-zone_dma-meaning-the-first-zone.patch introduce-config_zone_dma.patch optional-zone_dma-in-the-vm.patch optional-zone_dma-for-i386.patch optional-zone_dma-for-x86_64.patch optional-zone_dma-for-ia64.patch remove-zone_dma-remains-from-parisc.patch remove-zone_dma-remains-from-sh-sh64.patch radix-tree-rcu-lockless-readside.patch scheduler-numa-aware-placement-of-sched_group_allnodes.patch zvc-support-nr_slab_reclaimable--nr_slab_unreclaimable-swap_prefetch.patch reduce-max_nr_zones-swap_prefetch-remove-incorrect-use-of-zone_highmem.patch numa-add-zone_to_nid-function-swap_prefetch.patch readahead-state-based-method-aging-accounting-apply-type-enum-zone_type-readahead.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