From: Christoph Lameter quicklists must keep even off node pages on the quicklists until the TLB flush has been completed. Signed-off-by: Christoph Lameter Cc: Dhaval Giani Cc: Signed-off-by: Andrew Morton --- include/linux/quicklist.h | 8 -------- 1 file changed, 8 deletions(-) diff -puN include/linux/quicklist.h~quicklists-do-not-release-off-node-pages-early include/linux/quicklist.h --- a/include/linux/quicklist.h~quicklists-do-not-release-off-node-pages-early +++ a/include/linux/quicklist.h @@ -56,14 +56,6 @@ static inline void __quicklist_free(int struct page *page) { struct quicklist *q; - int nid = page_to_nid(page); - - if (unlikely(nid != numa_node_id())) { - if (dtor) - dtor(p); - __free_page(page); - return; - } q = &get_cpu_var(quicklist)[nr]; *(void **)p = q->page; _