aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-i386/pgtable.h
diff options
context:
space:
mode:
authorZachary Amsden <zach@vmware.com>2006-12-06 20:14:08 -0500
committerAndi Kleen <andi@basil.nowhere.org>2006-12-06 20:14:08 -0500
commitdfbea0ad50e08c52539bddce977b07f77a762ba4 (patch)
tree5ae675ca460e45affbff885a4c7cc3537b172ed0 /include/asm-i386/pgtable.h
parenta2952d8949bb0b37c1be92a89c4f180c74292857 (diff)
[PATCH] paravirt: fix parameter names in mmu operations
Make parameter names match function argument names for the yet to be defined pte_update_defer accessor. Signed-off-by: Zachary Amsden <zach@vmware.com> Signed-off-by: Andi Kleen <ak@suse.de> Cc: Andi Kleen <ak@muc.de> Cc: Jeremy Fitzhardinge <jeremy@goop.org> Cc: Chris Wright <chrisw@sous-sol.org> Signed-off-by: Andrew Morton <akpm@osdl.org>
Diffstat (limited to 'include/asm-i386/pgtable.h')
-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; \