Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752792Ab2F1NE5 (ORCPT ); Thu, 28 Jun 2012 09:04:57 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27323 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754765Ab2F1M57 (ORCPT ); Thu, 28 Jun 2012 08:57:59 -0400 From: Andrea Arcangeli To: linux-kernel@vger.kernel.org, linux-mm@kvack.org Cc: Hillf Danton , Dan Smith , Peter Zijlstra , Linus Torvalds , Andrew Morton , Thomas Gleixner , Ingo Molnar , Paul Turner , Suresh Siddha , Mike Galbraith , "Paul E. McKenney" , Lai Jiangshan , Bharata B Rao , Lee Schermerhorn , Rik van Riel , Johannes Weiner , Srivatsa Vaddagiri , Christoph Lameter , Alex Shi , Mauricio Faria de Oliveira , Konrad Rzeszutek Wilk , Don Morris , Benjamin Herrenschmidt Subject: [PATCH 29/40] autonuma: retain page last_nid information in khugepaged Date: Thu, 28 Jun 2012 14:56:09 +0200 Message-Id: <1340888180-15355-30-git-send-email-aarcange@redhat.com> In-Reply-To: <1340888180-15355-1-git-send-email-aarcange@redhat.com> References: <1340888180-15355-1-git-send-email-aarcange@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1291 Lines: 36 When pages are collapsed try to keep the last_nid information from one of the original pages. Signed-off-by: Andrea Arcangeli --- mm/huge_memory.c | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/mm/huge_memory.c b/mm/huge_memory.c index 094f82b..ae20409 100644 --- a/mm/huge_memory.c +++ b/mm/huge_memory.c @@ -1814,7 +1814,18 @@ static bool __collapse_huge_page_copy(pte_t *pte, struct page *page, clear_user_highpage(page, address); add_mm_counter(vma->vm_mm, MM_ANONPAGES, 1); } else { +#ifdef CONFIG_AUTONUMA + int autonuma_last_nid; +#endif src_page = pte_page(pteval); +#ifdef CONFIG_AUTONUMA + /* pick the last one, better than nothing */ + autonuma_last_nid = + ACCESS_ONCE(src_page->autonuma_last_nid); + if (autonuma_last_nid >= 0) + ACCESS_ONCE(page->autonuma_last_nid) = + autonuma_last_nid; +#endif copy_user_highpage(page, src_page, address, vma); VM_BUG_ON(page_mapcount(src_page) != 1); VM_BUG_ON(page_count(src_page) != 2); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/