aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/xen/mmu.c
diff options
context:
space:
mode:
authorMasami Hiramatsu <mhiramat@redhat.com>2009-04-09 13:55:33 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-04-09 19:41:45 -0400
commit3b3809ac5375f614bbf8671cddeae3c693aa584e (patch)
tree26d5fc6ea3d77a6ab7b843fc8138ee90b315fe1c /arch/x86/xen/mmu.c
parent62b8e680e61d3f48f2a12ee248ca03ea8f376926 (diff)
x86: fix set_fixmap to use phys_addr_t
Use phys_addr_t for receiving a physical address argument instead of unsigned long. This allows fixmap to handle pages higher than 4GB on x86-32. Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com> Cc: Ingo Molnar <mingo@elte.hu> Acked-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/xen/mmu.c')
-rw-r--r--arch/x86/xen/mmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index db3802fb7b84..2a81838a9ab7 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -1750,7 +1750,7 @@ __init pgd_t *xen_setup_kernel_pagetable(pgd_t *pgd,
1750} 1750}
1751#endif /* CONFIG_X86_64 */ 1751#endif /* CONFIG_X86_64 */
1752 1752
1753static void xen_set_fixmap(unsigned idx, unsigned long phys, pgprot_t prot) 1753static void xen_set_fixmap(unsigned idx, phys_addr_t phys, pgprot_t prot)
1754{ 1754{
1755 pte_t pte; 1755 pte_t pte;
1756 1756