diff options
author | Mel Gorman <mgorman@suse.de> | 2015-02-12 17:58:19 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-12 21:54:08 -0500 |
commit | e7bb4b6d1609cce391af1e7bc6f31d14f1a3a890 (patch) | |
tree | a6c5101e1b4cd9c9f0de605723b7c378b0c028d7 /include/asm-generic/pgtable.h | |
parent | 5d833062139d290adb8b62c093b654a01a353448 (diff) |
mm: add p[te|md] protnone helpers for use by NUMA balancing
This is a preparatory patch that introduces protnone helpers for automatic
NUMA balancing.
Signed-off-by: Mel Gorman <mgorman@suse.de>
Acked-by: Linus Torvalds <torvalds@linux-foundation.org>
Acked-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Tested-by: Sasha Levin <sasha.levin@oracle.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Dave Jones <davej@redhat.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Kirill Shutemov <kirill.shutemov@linux.intel.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Rik van Riel <riel@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-generic/pgtable.h')
-rw-r--r-- | include/asm-generic/pgtable.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/asm-generic/pgtable.h b/include/asm-generic/pgtable.h index 129de9204d18..067922c06c29 100644 --- a/include/asm-generic/pgtable.h +++ b/include/asm-generic/pgtable.h | |||
@@ -673,6 +673,26 @@ static inline int pmd_trans_unstable(pmd_t *pmd) | |||
673 | #endif | 673 | #endif |
674 | } | 674 | } |
675 | 675 | ||
676 | #ifndef CONFIG_NUMA_BALANCING | ||
677 | /* | ||
678 | * Technically a PTE can be PROTNONE even when not doing NUMA balancing but | ||
679 | * the only case the kernel cares is for NUMA balancing and is only ever set | ||
680 | * when the VMA is accessible. For PROT_NONE VMAs, the PTEs are not marked | ||
681 | * _PAGE_PROTNONE so by by default, implement the helper as "always no". It | ||
682 | * is the responsibility of the caller to distinguish between PROT_NONE | ||
683 | * protections and NUMA hinting fault protections. | ||
684 | */ | ||
685 | static inline int pte_protnone(pte_t pte) | ||
686 | { | ||
687 | return 0; | ||
688 | } | ||
689 | |||
690 | static inline int pmd_protnone(pmd_t pmd) | ||
691 | { | ||
692 | return 0; | ||
693 | } | ||
694 | #endif /* CONFIG_NUMA_BALANCING */ | ||
695 | |||
676 | #ifdef CONFIG_NUMA_BALANCING | 696 | #ifdef CONFIG_NUMA_BALANCING |
677 | /* | 697 | /* |
678 | * _PAGE_NUMA distinguishes between an unmapped page table entry, an entry that | 698 | * _PAGE_NUMA distinguishes between an unmapped page table entry, an entry that |