[Qemu-devel] [PATCH] char: restore read callback on a reattached (hotplug) chardev

2013-11-30 Thread Gal Hammer
Hi, Trying again. Thanks, Gal. Original Message Subject: [Qemu-devel] [PATCH] char: restore read callback on a reattached (hotplug) chardev Date: Mon, 25 Nov 2013 10:07:40 +0200 From: Gal Hammer To: qemu-devel@nongnu.org CC: Gal Hammer Fix a bug that was introduced i

[Qemu-devel] [PATCH] misc: Replace 'struct QEMUTimer' by 'QEMUTimer'

2013-11-30 Thread Stefan Weil
Most code already used QEMUTimer without the redundant 'struct' keyword. Signed-off-by: Stefan Weil --- hw/char/cadence_uart.c |4 ++-- hw/ppc/ppc.c |6 +++--- hw/ppc/ppc405_uc.c |2 +- hw/ppc/ppc_booke.c |4 ++-- hw/timer/m48t59.c|4 ++-- in

[Qemu-devel] virtio virt-queue and virt-ring

2013-11-30 Thread Yaodong Yang
Inside file ./hw/virtio/virtio.c, The following structs are defined. I understood that for each virtual disk, there is a corresponding queue and this queue is implemented by a ring. My questions is what is the meaning of each element inside struct VRing?Thanks a lot!typedef struct VRing{    unsigne

[Qemu-devel] virtio queue

2013-11-30 Thread Yaodong Yang
Hi all,At any given time, how do we get the number of IO requests for a certain disk in the virtqueue? These requests are waiting for the process.Thanks!Yaodong 

Re: [Qemu-devel] [PULL 23/41] qapi: Change BlockDirtyInfo to list

2013-11-30 Thread Eric Blake
On 11/29/2013 09:45 AM, Kevin Wolf wrote: > From: Fam Zheng > > We have multiple dirty bitmaps in BDS now, switch QAPI to allow query > it (BlockInfo.dirty_bitmaps), and also drop old BlockInfo.dirty. > > +++ b/qapi-schema.json > @@ -948,8 +948,8 @@ > # @tray_open: #optional True if the device

[Qemu-devel] question about emulation

2013-11-30 Thread Alex C
Hi, i was wondering if i could emulate/virtualize IOS 6 or 7 with your software or if there is any other way to do it, thx

[Qemu-devel] [Bug 1254786] Re: qemu-m68k-static: illegal instruction ebc0 during debootstrap second stage

2013-11-30 Thread Ken Sharp
Version: 1.6.0+dfsg-2ubuntu4 Still present in Trusty. ** Tags added: trusty ** Also affects: qemu Importance: Undecided Status: New -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1254786

Re: [Qemu-devel] [PATCH 09/13] nbd: don't change socket block during negotiate

2013-11-30 Thread Paolo Bonzini
Il 30/11/2013 16:49, Marc-André Lureau ha scritto: > So you suggest this block/unblock: (I haven't reviewed all callers of > unix_connect_opts(), I am not sure that's what you meant) Other option > would be to move the nonblock to unix_socket_outgoing. > > diff --git a/block/nbd-client.c b/block/n

[Qemu-devel] [Bug 1256548] [NEW] qemu windows guest issues

2013-11-30 Thread therock247uk
Public bug reported: Ive noticed the following in the latest qemu build on mingw 64bit for windows older guests like windows 9* no longer boot they mostly just bsod its been this way for ages same with 32bit builds xp 64bit and other 64bit windows guests no longer work and havent for ages same

Re: [Qemu-devel] [PATCH 09/13] nbd: don't change socket block during negotiate

2013-11-30 Thread Marc-André Lureau
On Fri, Nov 29, 2013 at 4:22 PM, Paolo Bonzini wrote: > If you remove this here, you need to remove also the matching > socket_set_nonblock, Ok > Also, there are two callers: > > - nbd.c: you can add nbd_socket_block/nonblock around > nbd_receive_negotiate in nbd_open. > > - qemu-nbd.c: here the

[Qemu-devel] [Bug 1254672] Re: ps segfaults with qemu-{arm, armel, mips, powerpc}-static

2013-11-30 Thread Ken Sharp
Version: 1.6.0+dfsg-2ubuntu4 This is fixed in Trusty in the qemu package. Doesn't look like qemu- linaro has been updated for Trusty. I don't know what is going on with these two packages. ** Changed in: qemu-linaro (Ubuntu) Status: New => Fix Committed ** Changed in: qemu Status:

Re: [Qemu-devel] [PATCH v3 1/6] cpu: add suboptions support

2013-11-30 Thread Alexey Kardashevskiy
On 11/30/2013 10:00 PM, Paolo Bonzini wrote: > Il 30/11/2013 11:10, Alexey Kardashevskiy ha scritto: >> btw there is a problem - all this qemu_opt stuff normally lives in vl.c so >> this patch does not compile with linux-user target. > > Which qemu_opt exactly? > > Perhaps you can just move it to

Re: [Qemu-devel] [PATCH v3 1/6] cpu: add suboptions support

2013-11-30 Thread Paolo Bonzini
Il 30/11/2013 11:10, Alexey Kardashevskiy ha scritto: > btw there is a problem - all this qemu_opt stuff normally lives in vl.c so > this patch does not compile with linux-user target. Which qemu_opt exactly? Perhaps you can just move it to util/qemu-option.c or something like that. Paolo > How

Re: [Qemu-devel] [PATCH v3 1/6] cpu: add suboptions support

2013-11-30 Thread Alexey Kardashevskiy
On 11/11/2013 06:44 PM, Alexey Kardashevskiy wrote: > This adds suboptions support for -cpu. > > Cc: Andreas Färber > Signed-off-by: Alexey Kardashevskiy > --- > include/qom/cpu.h | 29 + > include/sysemu/sysemu.h | 1 + > qom/cpu.c | 27