rpms/xen/devel xen-misc-fixes.patch,1.20,1.21

fedora-cvs-commits at redhat.com fedora-cvs-commits at redhat.com
Mon Sep 12 19:10:55 UTC 2005


Author: riel

Update of /cvs/dist/rpms/xen/devel
In directory cvs.devel.redhat.com:/tmp/cvs-serv23841

Modified Files:
	xen-misc-fixes.patch 
Log Message:
s/movl/mov/ to get rid of errors

xen-misc-fixes.patch:
 tools/console/daemon/utils.c        |    8 ++-
 tools/examples/Makefile             |    8 ++-
 tools/examples/xmexample.vmx        |   96 ------------------------------------
 tools/examples/xmexample.vmx.in     |   96 ++++++++++++++++++++++++++++++++++++
 tools/ioemu/target-i386-dm/Makefile |    2 
 tools/libxc/xc_core.c               |    8 +--
 tools/misc/lomount/lomount.c        |    2 
 tools/xenstore/xenstored_core.c     |   66 +++++++++++++-----------
 xen/arch/x86/domain.c               |    8 +--
 9 files changed, 155 insertions(+), 139 deletions(-)

Index: xen-misc-fixes.patch
===================================================================
RCS file: /cvs/dist/rpms/xen/devel/xen-misc-fixes.patch,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- xen-misc-fixes.patch	12 Sep 2005 18:43:20 -0000	1.20
+++ xen-misc-fixes.patch	12 Sep 2005 19:10:49 -0000	1.21
@@ -486,3 +486,20 @@
  TARGET_PATH=$(SRC_PATH)/target-$(TARGET_ARCH)
  VPATH=$(SRC_PATH):$(TARGET_PATH):$(SRC_PATH)/hw:$(SRC_PATH)/audio
  DEFINES=-I. -I$(TARGET_PATH) -I$(SRC_PATH) -I$(XEN_ROOT)/xen/include/public
+--- xen-unstable/xen/arch/x86/domain.c.binutils	2005-09-12 15:08:21.000000000 -0400
++++ xen-unstable/xen/arch/x86/domain.c	2005-09-12 15:08:30.000000000 -0400
+@@ -677,10 +677,10 @@ static void save_segments(struct vcpu *v
+     if ( VMX_DOMAIN(v) )
+         rdmsrl(MSR_SHADOW_GS_BASE, v->arch.arch_vmx.msr_content.shadow_gs);
+ 
+-    __asm__ __volatile__ ( "movl %%ds,%0" : "=m" (regs->ds) );
+-    __asm__ __volatile__ ( "movl %%es,%0" : "=m" (regs->es) );
+-    __asm__ __volatile__ ( "movl %%fs,%0" : "=m" (regs->fs) );
+-    __asm__ __volatile__ ( "movl %%gs,%0" : "=m" (regs->gs) );
++    __asm__ __volatile__ ( "mov %%ds,%0" : "=m" (regs->ds) );
++    __asm__ __volatile__ ( "mov %%es,%0" : "=m" (regs->es) );
++    __asm__ __volatile__ ( "mov %%fs,%0" : "=m" (regs->fs) );
++    __asm__ __volatile__ ( "mov %%gs,%0" : "=m" (regs->gs) );
+ 
+     if ( regs->ds )
+         dirty_segment_mask |= DIRTY_DS;




More information about the fedora-cvs-commits mailing list