Subject: [to-be-updated] x86-define-_page_numa-by-reusing-software-bits-on-the-pmd-and-pte-levels-fix.patch removed from -mm tree To: mgorman@xxxxxxx,aarcange@xxxxxxxxxx,dave.hansen@xxxxxxxxx,david.vrabel@xxxxxxxxxx,fengguang.wu@xxxxxxxxx,gorcunov@xxxxxxxxx,hpa@xxxxxxxxx,mingo@xxxxxxxxxx,peterz@xxxxxxxxxxxxx,riel@xxxxxxxxxx,srikar@xxxxxxxxxxxxxxxxxx,steven@xxxxxxxxxxxxxx,torvalds@xxxxxxxxxxxxxxxxxxxx,mm-commits@xxxxxxxxxxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Thu, 17 Apr 2014 11:58:09 -0700 The patch titled Subject: x86: define _PAGE_NUMA by reusing software bits on the PMD and PTE levels -fix has been removed from the -mm tree. Its filename was x86-define-_page_numa-by-reusing-software-bits-on-the-pmd-and-pte-levels-fix.patch This patch was dropped because an updated version will be merged ------------------------------------------------------ From: Mel Gorman <mgorman@xxxxxxx> Subject: x86: define _PAGE_NUMA by reusing software bits on the PMD and PTE levels -fix PowerPC has NUMA_BALANCING and non-NUMA_BALANCING versions of pte_present and I missed that when testing cross-compiling. This should be collapsed with the patch x86-define-_page_numa-by-reusing-software-bits-on-the-pmd-and-pte-levels.patch Signed-off-by: Mel Gorman <mgorman@xxxxxxx> Cc: David Vrabel <david.vrabel@xxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxxxxx> Cc: Peter Anvin <hpa@xxxxxxxxx> Cc: Fengguang Wu <fengguang.wu@xxxxxxxxx> Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx> Cc: Steven Noonan <steven@xxxxxxxxxxxxxx> Cc: Rik van Riel <riel@xxxxxxxxxx> Cc: Peter Zijlstra <peterz@xxxxxxxxxxxxx> Cc: Andrea Arcangeli <aarcange@xxxxxxxxxx> Cc: Dave Hansen <dave.hansen@xxxxxxxxx> Cc: Srikar Dronamraju <srikar@xxxxxxxxxxxxxxxxxx> Cc: Cyrill Gorcunov <gorcunov@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/powerpc/include/asm/pgtable.h | 6 ++++++ 1 file changed, 6 insertions(+) diff -puN arch/powerpc/include/asm/pgtable.h~x86-define-_page_numa-by-reusing-software-bits-on-the-pmd-and-pte-levels-fix arch/powerpc/include/asm/pgtable.h --- a/arch/powerpc/include/asm/pgtable.h~x86-define-_page_numa-by-reusing-software-bits-on-the-pmd-and-pte-levels-fix +++ a/arch/powerpc/include/asm/pgtable.h @@ -126,6 +126,12 @@ static inline int pte_present(pte_t pte) { return pte_val(pte) & _PAGE_PRESENT; } + +static inline int pte_present_nonuma(pte_t pte) +{ + return pte_present(pte); +} + #endif /* CONFIG_NUMA_BALANCING */ /* Conversion functions: convert a page and protection to a page entry, _ Patches currently in -mm which might be from mgorman@xxxxxxx are mm-use-paravirt-friendly-ops-for-numa-hinting-ptes.patch thp-close-race-between-split-and-zap-huge-pages.patch x86-require-x86-64-for-automatic-numa-balancing.patch x86-define-_page_numa-by-reusing-software-bits-on-the-pmd-and-pte-levels.patch mm-introduce-do_shared_fault-and-drop-do_fault-fix-fix.patch mm-compactionc-isolate_freepages_block-small-tuneup.patch mm-only-force-scan-in-reclaim-when-none-of-the-lrus-are-big-enough.patch mm-huge_memoryc-complete-conversion-to-pr_foo.patch do_shared_fault-check-that-mmap_sem-is-held.patch linux-next.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