aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2009-03-08 03:48:41 -0400
committerJeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>2009-04-08 20:57:19 -0400
commit3ecb1b7df92393647b13b21b1f7142b65c582511 (patch)
tree4657f11e20f9b4b967e68ef1df7801536813e88e
parentd745562cc40bff60f0597004d8128fa0225cc267 (diff)
xen: add FIX_TEXT_POKE to fixmap
FIX_TEXT_POKE[01] are used to map kernel addresses, so they're mapping pfns, not mfns. Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
-rw-r--r--arch/x86/xen/mmu.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index 7ef880c51dca..c3061d318da8 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -1821,6 +1821,9 @@ static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot)
1821#ifdef CONFIG_X86_LOCAL_APIC 1821#ifdef CONFIG_X86_LOCAL_APIC
1822 case FIX_APIC_BASE: /* maps dummy local APIC */ 1822 case FIX_APIC_BASE: /* maps dummy local APIC */
1823#endif 1823#endif
1824 case FIX_TEXT_POKE0:
1825 case FIX_TEXT_POKE1:
1826 /* All local page mappings */
1824 pte = pfn_pte(phys, prot); 1827 pte = pfn_pte(phys, prot);
1825 break; 1828 break;
1826 1829