aboutsummaryrefslogtreecommitdiffstats
path: root/mm/mprotect.c
diff options
context:
space:
mode:
authorRik van Riel <riel@redhat.com>2014-04-07 18:36:57 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-04-07 19:35:50 -0400
commita5338093bfb462256f70f3450c08f73e59543e26 (patch)
tree52225510cc303cede1bff15405a0b66b378240df /mm/mprotect.c
parent1ad9f620c3a22fa800489455ce517c29e576934e (diff)
mm: move mmu notifier call from change_protection to change_pmd_range
The NUMA scanning code can end up iterating over many gigabytes of unpopulated memory, especially in the case of a freshly started KVM guest with lots of memory. This results in the mmu notifier code being called even when there are no mapped pages in a virtual address range. The amount of time wasted can be enough to trigger soft lockup warnings with very large KVM guests. This patch moves the mmu notifier call to the pmd level, which represents 1GB areas of memory on x86-64. Furthermore, the mmu notifier code is only called from the address in the PMD where present mappings are first encountered. The hugetlbfs code is left alone for now; hugetlb mappings are not relocatable, and as such are left alone by the NUMA code, and should never trigger this problem to begin with. Signed-off-by: Rik van Riel <riel@redhat.com> Acked-by: David Rientjes <rientjes@google.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Andrea Arcangeli <aarcange@redhat.com> Reported-by: Xing Gang <gang.xing@hp.com> Tested-by: Chegu Vinod <chegu_vinod@hp.com> Cc: Sasha Levin <sasha.levin@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'mm/mprotect.c')
-rw-r--r--mm/mprotect.c15
1 files changed, 12 insertions, 3 deletions
diff --git a/mm/mprotect.c b/mm/mprotect.c
index 2c51c79c8a69..c43d557941f8 100644
--- a/mm/mprotect.c
+++ b/mm/mprotect.c
@@ -140,9 +140,11 @@ static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
140 pgprot_t newprot, int dirty_accountable, int prot_numa) 140 pgprot_t newprot, int dirty_accountable, int prot_numa)
141{ 141{
142 pmd_t *pmd; 142 pmd_t *pmd;
143 struct mm_struct *mm = vma->vm_mm;
143 unsigned long next; 144 unsigned long next;
144 unsigned long pages = 0; 145 unsigned long pages = 0;
145 unsigned long nr_huge_updates = 0; 146 unsigned long nr_huge_updates = 0;
147 unsigned long mni_start = 0;
146 148
147 pmd = pmd_offset(pud, addr); 149 pmd = pmd_offset(pud, addr);
148 do { 150 do {
@@ -151,6 +153,13 @@ static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
151 next = pmd_addr_end(addr, end); 153 next = pmd_addr_end(addr, end);
152 if (!pmd_trans_huge(*pmd) && pmd_none_or_clear_bad(pmd)) 154 if (!pmd_trans_huge(*pmd) && pmd_none_or_clear_bad(pmd))
153 continue; 155 continue;
156
157 /* invoke the mmu notifier if the pmd is populated */
158 if (!mni_start) {
159 mni_start = addr;
160 mmu_notifier_invalidate_range_start(mm, mni_start, end);
161 }
162
154 if (pmd_trans_huge(*pmd)) { 163 if (pmd_trans_huge(*pmd)) {
155 if (next - addr != HPAGE_PMD_SIZE) 164 if (next - addr != HPAGE_PMD_SIZE)
156 split_huge_page_pmd(vma, addr, pmd); 165 split_huge_page_pmd(vma, addr, pmd);
@@ -175,6 +184,9 @@ static inline unsigned long change_pmd_range(struct vm_area_struct *vma,
175 pages += this_pages; 184 pages += this_pages;
176 } while (pmd++, addr = next, addr != end); 185 } while (pmd++, addr = next, addr != end);
177 186
187 if (mni_start)
188 mmu_notifier_invalidate_range_end(mm, mni_start, end);
189
178 if (nr_huge_updates) 190 if (nr_huge_updates)
179 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates); 191 count_vm_numa_events(NUMA_HUGE_PTE_UPDATES, nr_huge_updates);
180 return pages; 192 return pages;
@@ -234,15 +246,12 @@ unsigned long change_protection(struct vm_area_struct *vma, unsigned long start,
234 unsigned long end, pgprot_t newprot, 246 unsigned long end, pgprot_t newprot,
235 int dirty_accountable, int prot_numa) 247 int dirty_accountable, int prot_numa)
236{ 248{
237 struct mm_struct *mm = vma->vm_mm;
238 unsigned long pages; 249 unsigned long pages;
239 250
240 mmu_notifier_invalidate_range_start(mm, start, end);
241 if (is_vm_hugetlb_page(vma)) 251 if (is_vm_hugetlb_page(vma))
242 pages = hugetlb_change_protection(vma, start, end, newprot); 252 pages = hugetlb_change_protection(vma, start, end, newprot);
243 else 253 else
244 pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa); 254 pages = change_protection_range(vma, start, end, newprot, dirty_accountable, prot_numa);
245 mmu_notifier_invalidate_range_end(mm, start, end);
246 255
247 return pages; 256 return pages;
248} 257}