Re: [Qemu-devel] [PATCH] use PCI MACRO in virtio-pci

2011-12-08 Thread hkran
On 12/08/2011 10:30 AM, Anthony Liguori wrote: On 12/07/2011 03:39 AM, hkran wrote: Signed-off-by: hkran A Signed-off-by line needs to use your full name. Regards, Anthony Liguori --- hw/virtio-pci.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/virtio

Re: [Qemu-devel] [PATCH] use pci macro in virtio

2011-12-08 Thread hkran
On 12/08/2011 06:17 PM, Stefan Hajnoczi wrote: On Thu, Dec 8, 2011 at 5:49 AM, hkran wrote: Signed-off-by: hkran Anthony asked that you put your real name in the Signed-off-by. You don't need to resend the patch, please just reply to this mail with: Signed-off-by: $YOUR_NAME Thanks, S

[Qemu-devel] [PATCH] use pci macro in virtio

2011-12-07 Thread hkran
Signed-off-by: hkran --- hw/virtio-pci.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c index c665f5c..f8ee772 100644 --- a/hw/virtio-pci.c +++ b/hw/virtio-pci.c @@ -627,9 +627,9 @@ void virtio_init_pci(VirtIOPCIProxy *proxy

Re: [Qemu-devel] [PATCH] use PCI MACRO in virtio-pci

2011-12-07 Thread hkran
On 12/07/2011 06:18 PM, Stefan Hajnoczi wrote: On Wed, Dec 7, 2011 at 9:39 AM, hkran wrote: Signed-off-by: hkran --- hw/virtio-pci.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) This patch is line-wrapped and git-am refuses to apply it. Are you using git-send-email(1

[Qemu-devel] [PATCH] use PCI MACRO in virtio-pci

2011-12-07 Thread hkran
Signed-off-by: hkran --- hw/virtio-pci.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hw/virtio-pci.c b/hw/virtio-pci.c index c665f5c..f8ee772 100644 --- a/hw/virtio-pci.c +++ b/hw/virtio-pci.c @@ -627,9 +627,9 @@ void virtio_init_pci(VirtIOPCIProxy *proxy

Re: [Qemu-devel] [PATCH] Implement the function usb_hub_handle_reset

2011-11-22 Thread hkran
On 11/22/2011 08:36 PM, Gerd Hoffmann wrote: On 11/22/11 09:58, hkran wrote: Implement the function usb_hub_handle_reset. without it the guest propablly fail to configure the usb device attached to the virtulized hub with a correct address. Typically, attaching more than one usb devices when

[Qemu-devel] [PATCH] Implement the function usb_hub_handle_reset

2011-11-22 Thread hkran
Implement the function usb_hub_handle_reset. without it the guest propablly fail to configure the usb device attached to the virtulized hub with a correct address. Typically, attaching more than one usb devices when lauch qemu may lead to the problem. Signed-off-by: hkran --- hw/usb

[Qemu-devel] [PATCH] Implement the function usb_hub_handle_reset

2011-11-22 Thread hkran
Implement the function usb_hub_handle_reset. without it the guest propablly fail to configure the usb device attached to the virtulized hub with a correct address. Typically, attaching more than one usb devices when lauch qemu may lead to the problem. Signed-off-by: hkran --- hw/usb

[Qemu-devel] [PATCH] Implement the function usb_hub_handle_reset

2011-11-22 Thread hkran
Implement the function usb_hub_handle_reset. without it the guest propablly fail to configure the usb device attached to the virtulized hub with a correct address. Typically, attaching more than one usb devices when lauch qemu may lead to the problem. Signed-off-by: hkran --- hw/usb

[Qemu-devel] [PATCH] Implement the function usb_hub_handle_reset

2011-11-22 Thread hkran
Implement the function usb_hub_handle_reset. without it the guest propablly fail to configure the usb device attached to the virtulized hub with a correct address. Typically, attaching more than one usb devices when lauch qemu may lead to the problem. Signed-off-by: hkran --- hw/usb

Re: [Qemu-devel] Windows 7 shutdown causes BSOD

2011-11-18 Thread hkran
On 11/17/2011 07:08 PM, Gleb Natapov wrote: On Thu, Nov 17, 2011 at 06:55:14PM +0800, hkran wrote: On 11/17/2011 02:37 PM, Gleb Natapov wrote: On Thu, Nov 17, 2011 at 02:29:47PM +0800, hkran wrote: On 11/16/2011 06:51 PM, Gleb Natapov wrote: On Wed, Nov 16, 2011 at 10:48:15AM +, Stefan

Re: [Qemu-devel] Windows 7 shutdown causes BSOD

2011-11-17 Thread hkran
On 11/17/2011 02:37 PM, Gleb Natapov wrote: On Thu, Nov 17, 2011 at 02:29:47PM +0800, hkran wrote: On 11/16/2011 06:51 PM, Gleb Natapov wrote: On Wed, Nov 16, 2011 at 10:48:15AM +, Stefan Hajnoczi wrote: On Wed, Nov 16, 2011 at 10:14 AM, hkran wrote: On 11/15/2011 09:17 PM, Stefan

Re: [Qemu-devel] Windows 7 shutdown causes BSOD

2011-11-16 Thread hkran
On 11/15/2011 09:17 PM, Stefan Hajnoczi wrote: On Fri, Nov 4, 2011 at 11:25 AM, Stefan Hajnoczi wrote: On Fri, Nov 4, 2011 at 10:48 AM, Stefan Hajnoczi wrote: Windows 7 32-bit guest blue screens when I shut it down properly with Start | Shut Down. The blue screen is only displayed for a spli

Re: [Qemu-devel] [PATCH 1/3] usb-hub: wakeup on attach

2011-11-09 Thread hkran
On 11/01/2011 10:56 PM, Gerd Hoffmann wrote: When attaching a new device we must send a wakeup request to the root hub, otherwise the guest will not notice the new device in case the usb hub is suspended. Signed-off-by: Gerd Hoffmann --- hw/usb-hub.c |1 + 1 files changed, 1 insertions(+)

Re: [Qemu-devel] [PATCH 1/3] usb-hub: wakeup on attach

2011-11-03 Thread hkran
On 11/03/2011 04:41 PM, Gerd Hoffmann wrote: On 11/03/11 07:01, hkran wrote: On 11/02/2011 08:56 PM, Gerd Hoffmann wrote: Hi, static void usb_hub_detach(USBPort *port1) pulled, In what cases, the usb hub will be suspended? and how to tell it happened? thanks. The guest enables the

Re: [Qemu-devel] [PATCH 1/3] usb-hub: wakeup on attach

2011-11-02 Thread hkran
On 11/02/2011 08:56 PM, Gerd Hoffmann wrote: Hi, static void usb_hub_detach(USBPort *port1) pulled, In what cases, the usb hub will be suspended? and how to tell it happened? thanks. The guest enables the remote-wakeup feature. 'lspci -v' (within the guest) shows it. cheers, Gerd

Re: [Qemu-devel] [PATCH 1/3] usb-hub: wakeup on attach

2011-11-02 Thread hkran
On 11/01/2011 10:56 PM, Gerd Hoffmann wrote: When attaching a new device we must send a wakeup request to the root hub, otherwise the guest will not notice the new device in case the usb hub is suspended. Signed-off-by: Gerd Hoffmann --- hw/usb-hub.c |1 + 1 files changed, 1 insertions(+)

Re: [Qemu-devel] balloon driver on winxp guest start failed

2011-10-27 Thread hkran
On 10/17/2011 08:55 PM, Vadim Rozenfeld wrote: On Fri, 2011-10-14 at 17:49 +0800, hkran wrote: On 10/14/2011 04:55 AM, Vadim Rozenfeld wrote: On Thu, 2011-10-13 at 15:47 +0100, Stefan Hajnoczi wrote: On Thu, Oct 13, 2011 at 5:00 AM, hkran wrote: On 10/12/2011 07:09 PM, hkran wrote: I used

Re: [Qemu-devel] balloon driver on winxp guest start failed

2011-10-20 Thread hkran
On 10/17/2011 08:55 PM, Vadim Rozenfeld wrote: On Fri, 2011-10-14 at 17:49 +0800, hkran wrote: On 10/14/2011 04:55 AM, Vadim Rozenfeld wrote: On Thu, 2011-10-13 at 15:47 +0100, Stefan Hajnoczi wrote: On Thu, Oct 13, 2011 at 5:00 AM, hkran wrote: On 10/12/2011 07:09 PM, hkran wrote: I used

Re: [Qemu-devel] balloon driver on winxp guest start failed

2011-10-14 Thread hkran
On 10/14/2011 04:55 AM, Vadim Rozenfeld wrote: On Thu, 2011-10-13 at 15:47 +0100, Stefan Hajnoczi wrote: On Thu, Oct 13, 2011 at 5:00 AM, hkran wrote: On 10/12/2011 07:09 PM, hkran wrote: I used balloon driver for windows virtio-win-0.1-15.iso (from http://alt.fedoraproject.org/pub/alt

Re: [Qemu-devel] balloon driver on winxp guest start failed

2011-10-12 Thread hkran
On 10/12/2011 07:09 PM, hkran wrote: Hi, I used balloon driver for windows virtio-win-0.1-15.iso (from http://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/bin/) following the install guard , I installed the balloon driver like this: devcon.exe install d:\wxp\x86\balloon.inf &quo

[Qemu-devel] balloon driver on winxp guest start failed

2011-10-12 Thread hkran
Hi, I used balloon driver for windows virtio-win-0.1-15.iso (from http://alt.fedoraproject.org/pub/alt/virtio-win/latest/images/bin/) following the install guard , I installed the balloon driver like this: devcon.exe install d:\wxp\x86\balloon.inf "PCI\VEN_1AF4&DEV_1002&SUBSYS_00051AF4&REV_

Re: [Qemu-devel] [PATCH v3 0/6]: block: Add I/O status support

2011-09-28 Thread hkran
On 09/27/2011 04:43 AM, Luiz Capitulino wrote: This series adds support to the block layer to keep track of devices' I/O status. That information is also made available in QMP and HMP. The goal here is to allow management applications that miss the BLOCK_IO_ERROR event to able to query the VM to

Re: [Qemu-devel] [PATCH 0/2] Make simpletrace work on Windows

2011-09-22 Thread hkran
On 09/20/2011 06:15 PM, Zhi Yong Wu wrote: On Tue, Sep 20, 2011 at 5:57 PM, Stefan Hajnoczi wrote: On Tue, Sep 20, 2011 at 05:05:45PM +0800, hkran wrote: On 09/09/2011 05:37 PM, Stefan Hajnoczi wrote: The 'simple' trace backend uses pthreads and does not work on Windows. The

Re: [Qemu-devel] [PATCH 0/2] Make simpletrace work on Windows

2011-09-20 Thread hkran
On 09/09/2011 05:37 PM, Stefan Hajnoczi wrote: The 'simple' trace backend uses pthreads and does not work on Windows. These patches switch from pthreads to glib so that the code builds on all platforms supported by glib. Only one thing I'm unhappy about: the simpletrace write-out thread used to

Re: [Qemu-devel] windows XP fail to enter standby mode

2011-09-19 Thread hkran
On 09/18/2011 03:53 PM, Alon Levy wrote: On Fri, Sep 16, 2011 at 02:28:05PM +0800, hkran wrote: On 09/15/2011 06:42 PM, Alon Levy wrote: On Thu, Sep 15, 2011 at 05:23:01PM +0800, hkran wrote: Hi, If I select to let my guest XP enter standby mode by clicking the button manually. qemu will

Re: [Qemu-devel] [Bug 818673] Re: virtio: trying to map MMIO memory

2011-09-16 Thread hkran
On 09/16/2011 03:37 AM, Rick Vernam wrote: On Thursday 15 September 2011 11:23:53 Rick Vernam wrote: On Wednesday 14 September 2011 16:30:11 Rick Vernam wrote: On Wednesday 14 September 2011 14:42:09 vrozenfe wrote: Thank you, Rick. Could you help me to narrow this problem down? Absolutely.

Re: [Qemu-devel] windows XP fail to enter standby mode

2011-09-15 Thread hkran
On 09/15/2011 06:42 PM, Alon Levy wrote: On Thu, Sep 15, 2011 at 05:23:01PM +0800, hkran wrote: Hi, If I select to let my guest XP enter standby mode by clicking the button manually. qemu will exit with the following message left: ioport_write: PANIC d->guest_slots[val].active failed

[Qemu-devel] windows XP fail to enter standby mode

2011-09-15 Thread hkran
Hi, If I select to let my guest XP enter standby mode by clicking the button manually. qemu will exit with the following message left: ioport_write: PANIC d->guest_slots[val].active failed the following is my command to start qemu: /home/huikai/qemu15/bin/qemu --enable-kvm -m 768 -drive file