aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/asm-i386/pgtable.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-i386/pgtable.h b/include/asm-i386/pgtable.h
index efd7d90789d0..04dd39b973ad 100644
--- a/include/asm-i386/pgtable.h
+++ b/include/asm-i386/pgtable.h
@@ -277,7 +277,7 @@ static inline pte_t pte_mkhuge(pte_t pte) { (pte).pte_low |= _PAGE_PSE; return p
277do { \ 277do { \
278 if (dirty) { \ 278 if (dirty) { \
279 (ptep)->pte_low = (entry).pte_low; \ 279 (ptep)->pte_low = (entry).pte_low; \
280 pte_update_defer((vma)->vm_mm, (addr), (ptep)); \ 280 pte_update_defer((vma)->vm_mm, (address), (ptep)); \
281 flush_tlb_page(vma, address); \ 281 flush_tlb_page(vma, address); \
282 } \ 282 } \
283} while (0) 283} while (0)
@@ -307,7 +307,7 @@ do { \
307 __dirty = pte_dirty(*(ptep)); \ 307 __dirty = pte_dirty(*(ptep)); \
308 if (__dirty) { \ 308 if (__dirty) { \
309 clear_bit(_PAGE_BIT_DIRTY, &(ptep)->pte_low); \ 309 clear_bit(_PAGE_BIT_DIRTY, &(ptep)->pte_low); \
310 pte_update_defer((vma)->vm_mm, (addr), (ptep)); \ 310 pte_update_defer((vma)->vm_mm, (address), (ptep)); \
311 flush_tlb_page(vma, address); \ 311 flush_tlb_page(vma, address); \
312 } \ 312 } \
313 __dirty; \ 313 __dirty; \
@@ -320,7 +320,7 @@ do { \
320 __young = pte_young(*(ptep)); \ 320 __young = pte_young(*(ptep)); \
321 if (__young) { \ 321 if (__young) { \
322 clear_bit(_PAGE_BIT_ACCESSED, &(ptep)->pte_low); \ 322 clear_bit(_PAGE_BIT_ACCESSED, &(ptep)->pte_low); \
323 pte_update_defer((vma)->vm_mm, (addr), (ptep)); \ 323 pte_update_defer((vma)->vm_mm, (address), (ptep)); \
324 flush_tlb_page(vma, address); \ 324 flush_tlb_page(vma, address); \
325 } \ 325 } \
326 __young; \ 326 __young; \