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-changelog

[Xen-changelog] Save immediate operand into mcip structure.

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Save immediate operand into mcip structure.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 28 Sep 2005 13:16:14 +0000
Delivery-date: Wed, 28 Sep 2005 13:14:20 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User yjiang5@xxxxxxxxxxxxxxxxxxxxxxxxxx
# Node ID 5fb211049b3fa5888a633a7287136b95d46b5c14
# Parent  b1327ae8f41402081456f5813e6882298d50a735
Save immediate operand into mcip structure.
Some opcode like and/or need the immediate info when return from DM, we should 
save it before sending io request.

Signed-off-by: Yunhong Jiang <yunhong.jiang@xxxxxxxxx>

diff -r b1327ae8f414 -r 5fb211049b3f xen/arch/x86/vmx_platform.c
--- a/xen/arch/x86/vmx_platform.c       Wed Sep 28 13:05:58 2005
+++ b/xen/arch/x86/vmx_platform.c       Wed Sep 28 13:06:41 2005
@@ -667,6 +667,7 @@
     mpcip->instr = inst->instr;
     mpcip->operand[0] = inst->operand[0]; /* source */
     mpcip->operand[1] = inst->operand[1]; /* destination */
+    mpcip->immediate = inst->immediate;
 
     if (inst->operand[0] & REGISTER) { /* dest is memory */
         index = operand_index(inst->operand[0]);

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Save immediate operand into mcip structure., Xen patchbot -unstable <=