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

[Xen-ia64-devel] [PATCH][IA64] bug fix for acceleration of IDE PIO on HV

To: Keir Fraser <Keir.Fraser@xxxxxxxxxxxx>
Subject: [Xen-ia64-devel] [PATCH][IA64] bug fix for acceleration of IDE PIO on HVM/IA64
From: Kouya SHIMURA <kouya@xxxxxxxxxxxxxx>
Date: Thu, 1 Mar 2007 13:17:58 +0900
Cc: xen-devel@xxxxxxxxxxxxxxxxxxx, Alex Williamson <alex.williamson@xxxxxx>, xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
Delivery-date: Wed, 28 Feb 2007 20:17:20 -0800
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-ia64-devel-request@lists.xensource.com?subject=help>
List-id: Discussion of the ia64 port of Xen <xen-ia64-devel.lists.xensource.com>
List-post: <mailto:xen-ia64-devel@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ia64-devel>, <mailto:xen-ia64-devel-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-ia64-devel>, <mailto:xen-ia64-devel-request@lists.xensource.com?subject=unsubscribe>
Sender: xen-ia64-devel-bounces@xxxxxxxxxxxxxxxxxxx
Hi Keir, 

Thanks for checking in patches to accerate IDE PIO on HVM/IA64.
As Alex pointed out, this patch is also necessary. Please apply.

Thanks,
Kouya

Singed-off-by: Kouya Shimura <kouya@xxxxxxxxxxxxxx>

diff -r 8ba425b640b3 tools/ioemu/hw/ide.c
--- a/tools/ioemu/hw/ide.c      Wed Feb 28 11:13:49 2007 -0500
+++ b/tools/ioemu/hw/ide.c      Wed Feb 28 11:36:58 2007 +0900
@@ -504,7 +504,7 @@ buffered_pio_write(IDEState *s, uint32_t
 buffered_pio_write(IDEState *s, uint32_t addr, int size)
 {
     struct pio_buffer *piobuf = piobuf_by_addr(addr);
-    uint32_t data_end;
+    int data_end;
 
     if (!piobuf)
         return;
@@ -523,7 +523,7 @@ buffered_pio_read(IDEState *s, uint32_t 
 buffered_pio_read(IDEState *s, uint32_t addr, int size)
 {
     struct pio_buffer *piobuf = piobuf_by_addr(addr);
-    uint32_t data_end;
+    int data_end;
 
     if (!piobuf)
         return;
_______________________________________________
Xen-ia64-devel mailing list
Xen-ia64-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-ia64-devel
<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-ia64-devel] [PATCH][IA64] bug fix for acceleration of IDE PIO on HVM/IA64, Kouya SHIMURA <=