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] [xen-unstable] Fix DEC instruction decode. Turn into SUB

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] Fix DEC instruction decode. Turn into SUB, not OR. :-)
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Wed, 14 Feb 2007 08:15:09 -0800
Delivery-date: Wed, 14 Feb 2007 08:15:05 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
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 kfraser@xxxxxxxxxxxxxxxxxxxxx
# Date 1171455289 0
# Node ID d08c2af538045c16366ab5e5e99e1c4bd01f8223
# Parent  ed6501070f3724ab2c6a2738315ee942ebff876c
Fix DEC instruction decode. Turn into SUB, not OR. :-)
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>
---
 xen/arch/x86/hvm/platform.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -r ed6501070f37 -r d08c2af53804 xen/arch/x86/hvm/platform.c
--- a/xen/arch/x86/hvm/platform.c       Wed Feb 14 12:10:01 2007 +0000
+++ b/xen/arch/x86/hvm/platform.c       Wed Feb 14 12:14:49 2007 +0000
@@ -713,7 +713,7 @@ static int mmio_decode(int address_bytes
             return DECODE_success;
 
         case 1: /* dec */
-            mmio_op->instr = INSTR_OR;
+            mmio_op->instr = INSTR_SUB;
             return DECODE_success;
 
         default:

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] Fix DEC instruction decode. Turn into SUB, not OR. :-), Xen patchbot-unstable <=