The patch titled ZVC: Support NR_SLAB_RECLAIMABLE / NR_SLAB_UNRECLAIMABLE has been removed from the -mm tree. Its filename was zvc-support-nr_slab_reclaimable--nr_slab_unreclaimable-swap_prefetch.patch This patch was dropped because it was folded into mm-implement-swap-prefetching.patch ------------------------------------------------------ Subject: ZVC: Support NR_SLAB_RECLAIMABLE / NR_SLAB_UNRECLAIMABLE From: Christoph Lameter <clameter@xxxxxxx> Remove the atomic counter for slab_reclaim_pages and replace the counter and NR_SLAB with two ZVC counter that account for unreclaimable and reclaimable slab pages: NR_SLAB_RECLAIMABLE and NR_SLAB_UNRECLAIMABLE. Change the check in vmscan.c to refer to to NR_SLAB_RECLAIMABLE. The intend seems to be to check for slab pages that could be freed. Signed-off-by: Christoph Lameter <clameter@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- mm/swap_prefetch.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN mm/swap_prefetch.c~zvc-support-nr_slab_reclaimable--nr_slab_unreclaimable-swap_prefetch mm/swap_prefetch.c --- a/mm/swap_prefetch.c~zvc-support-nr_slab_reclaimable--nr_slab_unreclaimable-swap_prefetch +++ a/mm/swap_prefetch.c @@ -394,7 +394,8 @@ static int prefetch_suitable(void) * would be expensive to fix and not of great significance. */ limit = node_page_state(node, NR_FILE_PAGES); - limit += node_page_state(node, NR_SLAB); + limit += node_page_state(node, NR_SLAB_UNRECLAIMABLE); + limit += node_page_state(node, NR_SLAB_RECLAIMABLE); limit += node_page_state(node, NR_FILE_DIRTY); limit += node_page_state(node, NR_UNSTABLE_NFS); limit += total_swapcache_pages; _ 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 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 remove-uses-of-kmem_cache_t-from-mm-and-include-linux-slabh-prefetch.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