svn commit: r256307 - projects/amd64_xen_pv/sys/amd64/xen

Cherry G. Mathew cherry at FreeBSD.org
Fri Oct 11 05:09:24 UTC 2013


Author: cherry
Date: Fri Oct 11 05:09:23 2013
New Revision: 256307
URL: http://svnweb.freebsd.org/changeset/base/256307

Log:
  Load machine address into cr3, not the pseudo-physical one
  
  Approved by: gibbs(implicit)

Modified:
  projects/amd64_xen_pv/sys/amd64/xen/mm.c

Modified: projects/amd64_xen_pv/sys/amd64/xen/mm.c
==============================================================================
--- projects/amd64_xen_pv/sys/amd64/xen/mm.c	Fri Oct 11 04:50:27 2013	(r256306)
+++ projects/amd64_xen_pv/sys/amd64/xen/mm.c	Fri Oct 11 05:09:23 2013	(r256307)
@@ -164,7 +164,7 @@ xen_invlpg(vm_offset_t va)
 inline void
 xen_load_cr3(u_long val)
 {
-	xen_pt_switch(xpmap_ptom(val));
+	xen_pt_switch(val);
 }
 
 void


More information about the svn-src-projects mailing list