From: kfraser@dhcp93.uk.xensource.com Date: Fri, 2 Jun 2006 16:54:55 +0000 (+0100) Subject: Fix Xen build with some versions of gcc. X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~15972^2~49^2~15 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=7ec31d2960d0f5e4c1dfbd3d0d003860f51c6054;p=xen.git Fix Xen build with some versions of gcc. Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c index e8b2d647a7..7c6297b917 100644 --- a/xen/arch/x86/domain.c +++ b/xen/arch/x86/domain.c @@ -259,7 +259,7 @@ int arch_set_info_guest( struct vcpu *v, struct vcpu_guest_context *c) { struct domain *d = v->domain; - unsigned long cr3_pfn; + unsigned long cr3_pfn = INVALID_MFN; int i, rc; if ( !(c->flags & VGCF_HVM_GUEST) )