The patch titled Apply type enum zone_type (readahead) has been removed from the -mm tree. Its filename is readahead-state-based-method-aging-accounting-apply-type-enum-zone_type-readahead.patch This patch was dropped because it was folded into readahead-state-based-method-aging-accounting.patch ------------------------------------------------------ Subject: Apply type enum zone_type (readahead) From: Christoph Lameter <clameter@xxxxxxx> After we have done this we can now do some typing cleanup. The memory policy layer keeps a policy_zone that specifies the zone that gets memory policies applied. This variable can now be of type enum zone_type. The check_highest_zone function and the build_zonelists funnctionm must then also take a enum zone_type parameter. Plus there are a number of loops over zones that also should use zone_type. We run into some troubles at some points with functions that need a zone_type variable to become -1. Fix that up. Signed-off-by: Christoph Lameter <clameter@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/page_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/page_alloc.c~readahead-state-based-method-aging-accounting-apply-type-enum-zone_type-readahead mm/page_alloc.c --- a/mm/page_alloc.c~readahead-state-based-method-aging-accounting-apply-type-enum-zone_type-readahead +++ a/mm/page_alloc.c @@ -1266,7 +1266,7 @@ static inline void show_node(struct zone */ unsigned long nr_free_inactive_pages_node(int nid) { - unsigned int i; + enum zone_type i; unsigned long sum = 0; struct zone *zones = NODE_DATA(nid)->node_zones; _ Patches currently in -mm which might be from clameter@xxxxxxx are 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 introduce-config_zone_dma.patch optional-zone_dma-in-the-vm.patch optional-zone_dma-for-ia64.patch remove-zone_dma-remains-from-parisc.patch remove-zone_dma-remains-from-sh-sh64.patch set-config_zone_dma-for-arches-with-generic_isa_dma.patch radix-tree-rcu-lockless-readside.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.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