diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2008-01-30 07:30:35 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:30:35 -0500 |
commit | 0b9c99b6f21c2e9e00938e9c57942ed71bfe4d21 (patch) | |
tree | 3d14168b8a58d03f91870b985e3dc9bf5d8aa2cc /arch/x86/mm/boot_ioremap_32.c | |
parent | 1075cf7a959f72833e54dd2d4f885617e58e3e0a (diff) |
x86: cleanup tlbflush.h variants
Bring the tlbflush.h variants into sync to prepare merging and
paravirt support.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/mm/boot_ioremap_32.c')
-rw-r--r-- | arch/x86/mm/boot_ioremap_32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/mm/boot_ioremap_32.c b/arch/x86/mm/boot_ioremap_32.c index f14da2a53ece..b20f74a2770f 100644 --- a/arch/x86/mm/boot_ioremap_32.c +++ b/arch/x86/mm/boot_ioremap_32.c | |||
@@ -57,7 +57,7 @@ static void __boot_ioremap(unsigned long phys_addr, unsigned long nrpages, | |||
57 | pte = boot_vaddr_to_pte(virtual_source); | 57 | pte = boot_vaddr_to_pte(virtual_source); |
58 | for (i=0; i < nrpages; i++, phys_addr += PAGE_SIZE, pte++) { | 58 | for (i=0; i < nrpages; i++, phys_addr += PAGE_SIZE, pte++) { |
59 | set_pte(pte, pfn_pte(phys_addr>>PAGE_SHIFT, PAGE_KERNEL)); | 59 | set_pte(pte, pfn_pte(phys_addr>>PAGE_SHIFT, PAGE_KERNEL)); |
60 | __flush_tlb_one(&vaddr[i*PAGE_SIZE]); | 60 | __flush_tlb_one((unsigned long) &vaddr[i*PAGE_SIZE]); |
61 | } | 61 | } |
62 | } | 62 | } |
63 | 63 | ||