aboutsummaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorAndrea Arcangeli <aarcange@redhat.com>2011-01-16 16:10:39 -0500
committerLinus Torvalds <torvalds@linux-foundation.org>2011-01-16 18:05:44 -0500
commitb3697c0255d9d73eaaa4deb4512e3f0ff97b3b71 (patch)
tree59f7c5aa4c6ac509381071997f0888e2687cebd5 /mm
parent7e3d0eb0b028ed9e9384e6afcae2f22993bbdf25 (diff)
fix non-x86 build failure in pmdp_get_and_clear
pmdp_get_and_clear/pmdp_clear_flush/pmdp_splitting_flush were trapped as BUG() and they were defined only to diminish the risk of build issues on not-x86 archs and to be consistent with the generic pte methods previously defined in include/asm-generic/pgtable.h. But they are causing more trouble than they were supposed to solve, so it's simpler not to define them when THP is off. This is also correcting the export of pmdp_splitting_flush which is currently unused (x86 isn't using the generic implementation in mm/pgtable-generic.c and no other arch needs that [yet]). Signed-off-by: Andrea Arcangeli <aarcange@redhat.com> Sam Ravnborg <sam@ravnborg.org> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Cc: "David S. Miller" <davem@davemloft.net> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: "Luck, Tony" <tony.luck@intel.com> Cc: James Bottomley <James.Bottomley@HansenPartnership.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm')
-rw-r--r--mm/pgtable-generic.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/mm/pgtable-generic.c b/mm/pgtable-generic.c
index d030548047e2..0369f5b3ba1b 100644
--- a/mm/pgtable-generic.c
+++ b/mm/pgtable-generic.c
@@ -92,32 +92,29 @@ pte_t ptep_clear_flush(struct vm_area_struct *vma, unsigned long address,
92#endif 92#endif
93 93
94#ifndef __HAVE_ARCH_PMDP_CLEAR_FLUSH 94#ifndef __HAVE_ARCH_PMDP_CLEAR_FLUSH
95#ifdef CONFIG_TRANSPARENT_HUGEPAGE
95pmd_t pmdp_clear_flush(struct vm_area_struct *vma, unsigned long address, 96pmd_t pmdp_clear_flush(struct vm_area_struct *vma, unsigned long address,
96 pmd_t *pmdp) 97 pmd_t *pmdp)
97{ 98{
98 pmd_t pmd; 99 pmd_t pmd;
99#ifndef CONFIG_TRANSPARENT_HUGEPAGE
100 BUG();
101#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
102 VM_BUG_ON(address & ~HPAGE_PMD_MASK); 100 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
103 pmd = pmdp_get_and_clear(vma->vm_mm, address, pmdp); 101 pmd = pmdp_get_and_clear(vma->vm_mm, address, pmdp);
104 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE); 102 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
105 return pmd; 103 return pmd;
106} 104}
105#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
107#endif 106#endif
108 107
109#ifndef __HAVE_ARCH_PMDP_SPLITTING_FLUSH 108#ifndef __HAVE_ARCH_PMDP_SPLITTING_FLUSH
109#ifdef CONFIG_TRANSPARENT_HUGEPAGE
110pmd_t pmdp_splitting_flush(struct vm_area_struct *vma, unsigned long address, 110pmd_t pmdp_splitting_flush(struct vm_area_struct *vma, unsigned long address,
111 pmd_t *pmdp) 111 pmd_t *pmdp)
112{ 112{
113#ifdef CONFIG_TRANSPARENT_HUGEPAGE
114 pmd_t pmd = pmd_mksplitting(*pmdp); 113 pmd_t pmd = pmd_mksplitting(*pmdp);
115 VM_BUG_ON(address & ~HPAGE_PMD_MASK); 114 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
116 set_pmd_at(vma->vm_mm, address, pmdp, pmd); 115 set_pmd_at(vma->vm_mm, address, pmdp, pmd);
117 /* tlb flush only to serialize against gup-fast */ 116 /* tlb flush only to serialize against gup-fast */
118 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE); 117 flush_tlb_range(vma, address, address + HPAGE_PMD_SIZE);
119#else /* CONFIG_TRANSPARENT_HUGEPAGE */
120 BUG();
121#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
122} 118}
119#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
123#endif 120#endif