aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/mm/pgtable.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/x86/mm/pgtable.c')
-rw-r--r--arch/x86/mm/pgtable.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/mm/pgtable.c b/arch/x86/mm/pgtable.c
index 65e92d58f942..500242d3c96d 100644
--- a/arch/x86/mm/pgtable.c
+++ b/arch/x86/mm/pgtable.c
@@ -362,7 +362,7 @@ int pmdp_test_and_clear_young(struct vm_area_struct *vma,
362 362
363 if (pmd_young(*pmdp)) 363 if (pmd_young(*pmdp))
364 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED, 364 ret = test_and_clear_bit(_PAGE_BIT_ACCESSED,
365 (unsigned long *) &pmdp->pmd); 365 (unsigned long *)pmdp);
366 366
367 if (ret) 367 if (ret)
368 pmd_update(vma->vm_mm, addr, pmdp); 368 pmd_update(vma->vm_mm, addr, pmdp);
@@ -404,7 +404,7 @@ void pmdp_splitting_flush(struct vm_area_struct *vma,
404 int set; 404 int set;
405 VM_BUG_ON(address & ~HPAGE_PMD_MASK); 405 VM_BUG_ON(address & ~HPAGE_PMD_MASK);
406 set = !test_and_set_bit(_PAGE_BIT_SPLITTING, 406 set = !test_and_set_bit(_PAGE_BIT_SPLITTING,
407 (unsigned long *)&pmdp->pmd); 407 (unsigned long *)pmdp);
408 if (set) { 408 if (set) {
409 pmd_update(vma->vm_mm, address, pmdp); 409 pmd_update(vma->vm_mm, address, pmdp);
410 /* need tlb flush only to serialize against gup-fast */ 410 /* need tlb flush only to serialize against gup-fast */