WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-devel

[Xen-devel] HAP Failure with 64Bit Windows 2003

To: "Tim Deegan" <Tim.Deegan@xxxxxxxxxxxxx>
Subject: [Xen-devel] HAP Failure with 64Bit Windows 2003
From: "Huang2, Wei" <Wei.Huang2@xxxxxxx>
Date: Fri, 13 Jul 2007 11:45:44 -0500
Cc: xen-devel@xxxxxxxxxxxxxxxxxxx
Delivery-date: Fri, 13 Jul 2007 09:43:47 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-devel-request@lists.xensource.com?subject=help>
List-id: Xen developer discussion <xen-devel.lists.xensource.com>
List-post: <mailto:xen-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-devel>, <mailto:xen-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-devel-bounces@xxxxxxxxxxxxxxxxxxx
Thread-index: AcfFbUHJIi2RhZHDRWqGwfDR3VgHcw==
Thread-topic: HAP Failure with 64Bit Windows 2003
Tim,
 
I found that your small patch (changeset 15291) caused failure with Windows 2003 64Bit and Vista 64Bit under nested paging. It turned out that intercepting CR0 read should not be disabled. Please see the change below. Other guests seem running well.
 
Thanks,
 
-Wei
 
=========
Replace
        vmcb->cr_intercepts &= ~(CR_INTERCEPT_CR0_READ
                                 |CR_INTERCEPT_CR3_READ
                                 |CR_INTERCEPT_CR4_READ);
with
 
        vmcb->cr_intercepts &= ~(CR_INTERCEPT_CR3_READ
                                 |CR_INTERCEPT_CR4_READ);
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
<Prev in Thread] Current Thread [Next in Thread>