xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fix xenctx with 32-on-64 domains
@ 2011-03-03 17:08 Paolo Bonzini
  2011-03-03 17:47 ` Keir Fraser
  0 siblings, 1 reply; 2+ messages in thread
From: Paolo Bonzini @ 2011-03-03 17:08 UTC (permalink / raw)
  To: xen-devel

# HG changeset patch
# User Paolo Bonzini <pbonzini@redhat.com>
# Date 1299171180 -3600
# Node ID c639f0afaa74591d1053677b0a6348503a14fd78
# Parent  c923816861a96328aaf3d5ba8939fd9b4c441cd0
fix xenctx with 32-on-64 domains

When compiled on 64-bit, xenctx was using the 64-bit version
of xen_cr3_to_pfn even for 32-bit PV domains.  This is wrong,
and this patch fixes it.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>

diff --git a/tools/libxc/xc_pagetab.c b/tools/libxc/xc_pagetab.c
--- a/tools/libxc/xc_pagetab.c
+++ b/tools/libxc/xc_pagetab.c
@@ -64,8 +64,8 @@ unsigned long xc_translate_foreign_addre
             paddr = ctx.x64.ctrlreg[3] & ~0xfffull;
         } else {
             pt_levels = 3;
-            paddr = (((uint64_t) xen_cr3_to_pfn(ctx.x32.ctrlreg[3])) 
-                     << PAGE_SHIFT);
+            paddr = (((unsigned)ctx.x32.ctrlreg[3] >> 12) |
+                     ((unsigned)ctx.x32.ctrlreg[3] << 20)) << PAGE_SHIFT;
         }
     }

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-03-03 17:47 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-03 17:08 [PATCH] fix xenctx with 32-on-64 domains Paolo Bonzini
2011-03-03 17:47 ` Keir Fraser

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).