The patch titled ZVC writeback: Fix mm and other issues has been removed from the -mm tree. Its filename was readahead-state-based-method-aging-accounting-vs-zvc-changes.patch This patch was dropped because it was folded into readahead-state-based-method-aging-accounting.patch ------------------------------------------------------ Subject: ZVC writeback: Fix mm and other issues From: Christoph Lameter <clameter@xxxxxxx> This deals with swap prefetch and various things changed in mm. Signed-off-by: Christoph Lameter <clameter@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/page_alloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN mm/page_alloc.c~readahead-state-based-method-aging-accounting-vs-zvc-changes mm/page_alloc.c --- a/mm/page_alloc.c~readahead-state-based-method-aging-accounting-vs-zvc-changes +++ a/mm/page_alloc.c @@ -1513,12 +1513,12 @@ unsigned int nr_free_pagecache_pages(voi unsigned long nr_free_inactive_pages_node(int nid) { enum zone_type i; - unsigned long sum = 0; + unsigned long sum = node_page_state(nid, NR_FREE_PAGES) + + node_page_state(nid, NR_INACTIVE); struct zone *zones = NODE_DATA(nid)->node_zones; for (i = 0; i < MAX_NR_ZONES; i++) - sum += zones[i].nr_inactive + - zones[i].free_pages - zones[i].pages_low; + sum -= zones[i].pages_low; return sum; } _ Patches currently in -mm which might be from clameter@xxxxxxx are origin.patch slab-introduce-krealloc.patch slab-introduce-krealloc-fix.patch safer-nr_node_ids-and-nr_node_ids-determination-and-initial.patch use-zvc-counters-to-establish-exact-size-of-dirtyable-pages.patch make-try_to_unmap-return-a-special-exit-code.patch slab-ensure-cache_alloc_refill-terminates.patch smaps-extract-pmd-walker-from-smaps-code.patch smaps-add-pages-referenced-count-to-smaps.patch smaps-add-clear_refs-file-to-clear-reference.patch smaps-add-clear_refs-file-to-clear-reference-fix.patch smaps-add-clear_refs-file-to-clear-reference-fix-fix.patch slab-shutdown-cache_reaper-when-cpu-goes-down.patch mm-implement-swap-prefetching.patch readahead-state-based-method-aging-accounting.patch readahead-state-based-method-aging-accounting-vs-zvc-changes.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