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] x86 hvm: Add a missing line to record the

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] x86 hvm: Add a missing line to record the type passed into register_io_handler()
From: Xen patchbot-unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 06 Jan 2011 06:45:17 -0800
Delivery-date: Thu, 06 Jan 2011 06:46:05 -0800
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/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/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 Keir Fraser <keir@xxxxxxx>
# Date 1294221174 0
# Node ID 41a259d7a33dfbea6296cbeaae178823e09b91db
# Parent  852d87e0480b4e813807bdef00e4d829850dc29a
x86 hvm: Add a missing line to record the type passed into register_io_handler()

Add a missing line to record the type passed into
register_io_handler()

Without this line, the BUFFERED_IO handler was never called.

Signed-off-by: Wei Gang <gang.wei@xxxxxxxxx>
---
 xen/arch/x86/hvm/intercept.c |    1 +
 1 files changed, 1 insertion(+)

diff -r 852d87e0480b -r 41a259d7a33d xen/arch/x86/hvm/intercept.c
--- a/xen/arch/x86/hvm/intercept.c      Wed Jan 05 09:52:18 2011 +0000
+++ b/xen/arch/x86/hvm/intercept.c      Wed Jan 05 09:52:54 2011 +0000
@@ -238,6 +238,7 @@ void register_io_handler(
     handler->hdl_list[num].addr = addr;
     handler->hdl_list[num].size = size;
     handler->hdl_list[num].action.ptr = action;
+    handler->hdl_list[num].type = type;
     handler->num_slot++;
 }
 

_______________________________________________
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] x86 hvm: Add a missing line to record the type passed into register_io_handler(), Xen patchbot-unstable <=