Re: [Qemu-devel] [PATCH for-1.5] qom: optimize casting to leaf class and parent class

2013-05-11 Thread Anthony Liguori
Paolo Bonzini pbonz...@redhat.com writes: Il 11/05/2013 00:58, Anthony Liguori ha scritto: Aurelien Jarno aurel...@aurel32.net writes: On Fri, May 10, 2013 at 01:47:55PM -0500, Anthony Liguori wrote: Most QOM types use type_register_static but we still strdup the passed data. However

Re: [Qemu-devel] [PATCH for-1.5 0/9] Disable expensive QOM cast debugging for official releases

2013-05-10 Thread Anthony Liguori
a typeimpl and then use a function that returns a static similar to how glib works. If you've got a reproducible case where the overhead is high, it should be easy to check. Regards, Anthony Liguori At least patches 1-7 are for 1.5. Paolo Bonzini (9): qom: improve documentation of cast functions

Re: [Qemu-devel] [Qemu-trivial] [PATCH 2/2] remove needless semicolon

2013-05-10 Thread Anthony Liguori
Andreas Färber afaer...@suse.de writes: Am 09.05.2013 08:23, schrieb Michael Tokarev: 08.05.2013 17:25, Anthony Liguori wrote: Michael Tokarev m...@tls.msk.ru writes: 08.05.2013 13:46, Trival wrote: Signed-off-by: Trival triv...@linux.vnet.ibm.com Something went wrong in sending

Re: [Qemu-devel] [RFC PATCH v5 3/3] Force auto-convegence of live migration

2013-05-10 Thread Anthony Liguori
bit as a feature. Slow the VCPU down is not quite the same as setting priority of the VCPU thread largely because of the QBL so I recognize the need to have something for this in QEMU. Regards, Anthony Liguori (qemu) info migrate capabilities: xbzrle: off auto-converge: off

Re: [Qemu-devel] Profiling sparc64 emulation

2013-05-10 Thread Anthony Liguori
[.] type_is_ancestor That's worrisome, but should be easy to fix... can you make a callgraph profile? So percentage of a profiling run doesn't imply a performance regression. Are there real performance numbers here? Regards, Anthony Liguori Paolo

Re: [Qemu-devel] [PATCH for-1.5 0/9] Disable expensive QOM cast debugging for official releases

2013-05-10 Thread Anthony Liguori
Paolo Bonzini pbonz...@redhat.com writes: Il 10/05/2013 15:01, Anthony Liguori ha scritto: Paolo Bonzini pbonz...@redhat.com writes: Cast debugging can have a substantial cost (20% or more, measured by Aurelien on qemu-system-ppc64). [Needs citation] Sure: http://permalink.gmane.org

Re: [Qemu-devel] [PATCH for-1.5 0/9] Disable expensive QOM cast debugging for official releases

2013-05-10 Thread Anthony Liguori
Paolo Bonzini pbonz...@redhat.com writes: Il 10/05/2013 15:23, Andreas Färber ha scritto: Am 10.05.2013 15:08, schrieb Paolo Bonzini: Il 10/05/2013 15:01, Anthony Liguori ha scritto: I'd prefer not to disable but instead focus on improving performance. For 1.5? This is a regression in 1.5

Re: [Qemu-devel] [PATCH for-1.5] Revert pc: Kill the use flash device for BIOS unless KVM misfeature

2013-05-10 Thread Anthony Liguori
this code, and avoid a complicated mess of semantics that differ between 1.5, 1.5, and 1.5. Conflicts: hw/i386/pc_piix.c hw/i386/pc_q35.c include/hw/i386/pc.h Signed-off-by: Paolo Bonzini pbonz...@redhat.com Acked-by: Anthony Liguori aligu...@us.ibm.com I was hestitant

Re: [Qemu-devel] [PATCH for-1.5?] target-ppc: Drop unnecessary dynamic cast in ppc_env_get_cpu()

2013-05-10 Thread Anthony Liguori
. static inline PowerPCCPU *ppc_env_get_cpu(CPUPPCState *env) { -return POWERPC_CPU(container_of(env, PowerPCCPU, env)); +return container_of(env, PowerPCCPU, env); } So if this is worthwhile shouldn't we be doing it for all our CPUs? Ack. Regards, Anthony Liguori thanks -- PMM

Re: [Qemu-devel] [PATCH for-1.5?] target-ppc: Drop unnecessary dynamic cast in ppc_env_get_cpu()

2013-05-10 Thread Anthony Liguori
Andreas Färber afaer...@suse.de writes: A transition from CPUPPCState to PowerPCCPU can be considered safe, just like PowerPCCPU::env access in the opposite direction. This should slightly improve interrupt performance. Reported-by: Anthony Liguori aligu...@us.ibm.com Signed-off

Re: [Qemu-devel] [RFC PATCH v5 3/3] Force auto-convegence of live migration

2013-05-10 Thread Anthony Liguori
Daniel P. Berrange berra...@redhat.com writes: On Fri, May 10, 2013 at 08:07:51AM -0500, Anthony Liguori wrote: Chegu Vinod chegu_vi...@hp.com writes: If a user chooses to turn on the auto-converge migration capability these changes detect the lack of convergence and throttle down

Re: [Qemu-devel] [RFC PATCH v5 3/3] Force auto-convegence of live migration

2013-05-10 Thread Anthony Liguori
Chegu Vinod chegu_vi...@hp.com writes: On 5/10/2013 6:07 AM, Anthony Liguori wrote: Chegu Vinod chegu_vi...@hp.com writes: If a user chooses to turn on the auto-converge migration capability these changes detect the lack of convergence and throttle down the guest. i.e. force the VCPUs

Re: [Qemu-devel] [PATCH for-1.5 0/9] Disable expensive QOM cast debugging for official releases

2013-05-10 Thread Anthony Liguori
Paolo Bonzini pbonz...@redhat.com writes: Il 10/05/2013 16:39, Anthony Liguori ha scritto: I just oppose the notion of disabling casts and *especially* only disabling casts for official builds. This actually happens all the time. Exactly this kind of type-safe cast is disabled in releases

Re: [Qemu-devel] [PATCH for-1.5 8/9] qom: simplify object_class_dynamic_cast, part 1

2013-05-10 Thread Anthony Liguori
with --{enable,disable}-qom-casts? My suspicion is that this is the primary source of speed up. If you can make an image available too, I can try this myself. Regards, Anthony Liguori return class; } @@ -475,7 +473,7 @@ ObjectClass *object_class_dynamic_cast(ObjectClass

[Qemu-devel] [PATCH for-1.5] qom: optimize casting to leaf class and parent class

2013-05-10 Thread Anthony Liguori
Bonzini pbonz...@redhat.com Cc: Aurelien Jarno aurel...@aurel32.net Cc: Andreas Färber afaer...@suse.de Reported-by: Aurelien Jarno aurel...@aurel32.net Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- Aurelien, could you please try this patch with your PPC test case? --- qom/object.c | 16

Re: [Qemu-devel] [PATCH for-1.5 0/9] Disable expensive QOM cast debugging for official releases

2013-05-10 Thread Anthony Liguori
% faster. I just posted another patch which I believe will also reduce this overhead without eliminating the checks. We do a staggering number of casts... The patch I posted makes the overwhelming majority of them nothing more than a single pointer comparison and a couple derefs. Regards, Anthony

Re: [Qemu-devel] [PATCH for-1.5 0/9] Disable expensive QOM cast debugging for official releases

2013-05-10 Thread Anthony Liguori
Aurelien Jarno aurel...@aurel32.net writes: On Fri, May 10, 2013 at 12:41:07PM -0500, Anthony Liguori wrote: Paolo Bonzini pbonz...@redhat.com writes: Il 10/05/2013 16:39, Anthony Liguori ha scritto: I just oppose the notion of disabling casts and *especially* only disabling casts

Re: [Qemu-devel] [PATCH for-1.5] qom: optimize casting to leaf class and parent class

2013-05-10 Thread Anthony Liguori
Aurelien Jarno aurel...@aurel32.net writes: On Fri, May 10, 2013 at 01:47:55PM -0500, Anthony Liguori wrote: Most QOM types use type_register_static but we still strdup the passed data. However, the original pointers are useful because GCC is pretty good about collapsing strings so its very

Re: [Qemu-devel] [PATCH for-1.5 0/9] Disable expensive QOM cast debugging for official releases

2013-05-10 Thread Anthony Liguori
Paolo Bonzini pbonz...@redhat.com writes: Il 10/05/2013 19:41, Anthony Liguori ha scritto: Paolo Bonzini pbonz...@redhat.com writes: Il 10/05/2013 16:39, Anthony Liguori ha scritto: I just oppose the notion of disabling casts and *especially* only disabling casts for official builds

Re: [Qemu-devel] [Qemu-trivial] [PATCH 2/2] remove needless semicolon

2013-05-08 Thread Anthony Liguori
Michael Tokarev m...@tls.msk.ru writes: 08.05.2013 13:46, Trival wrote: Signed-off-by: Trival triv...@linux.vnet.ibm.com Something went wrong in sending this. This is not a valid SoB. Regards, Anthony Liguori --- block/nbd.c | 2 +- fsdev/virtfs-proxy-helper.c | 4

Re: [Qemu-devel] [PATCH v2] po/hu.po: Hungarian translation for the GTK+ interface

2013-05-08 Thread Anthony Liguori
works is one of them. BTW, xgettext is stupid and very difficult to make not put this in here. I still need to find some time to work that out. There's an option that lets you say, copyrighted by so-and-so but that's not what we need. Regards, Anthony Liguori Paolo

[Qemu-devel] [ANNOUNCE] QEMU 1.5.0-rc1 is now available

2013-05-08 Thread Anthony Liguori
the bus master is stopped (Kevin Wolf) - de_DE.po: Add missing leading spaces (Kevin Wolf) - ahci: Don't allow creating slave drives (Kevin Wolf) Regards, Anthony Liguori

[Qemu-devel] [PATCH] qga: set umask 0077 when daemonizing (CVE-2013-2007)

2013-05-07 Thread Anthony Liguori
, for compatibility reasons, stick with the 0666 file-mode in case of files newly created by the guest-file-open QMP call. Do so without changing the umask temporarily. Signed-off-by: Laszlo Ersek ler...@redhat.com Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- qga/commands-posix.c | 123

[Qemu-devel] [ANNOUNCE] We are now in hard freeze

2013-05-07 Thread Anthony Liguori
A little delayed as we had some last minute pull requests but we are now bug fixes only from this point on. We'll have the first -rc1 on Wednesday. I'll post an -rc0 tarball shortly. Regards, Anthony Liguori

[Qemu-devel] [ANNOUNCE] QEMU 1.5.0-rc0 is now available

2013-05-07 Thread Anthony Liguori
://wiki.qemu.org/ChangeLog/Next Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH for-1.5] configure: Check that libtool is not the MacOSX one

2013-05-07 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] virtio-net: properly check the vhost status during status set

2013-05-07 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] qga: set umask 0077 when daemonizing (CVE-2013-2007)

2013-05-07 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] qga: set umask 0077 when daemonizing (CVE-2013-2007)

2013-05-07 Thread Anthony Liguori
Anthony Liguori aligu...@us.ibm.com writes: Applied. Thanks. Hi, This was an automated response so it doesn't acknowledge the fact that since this was a CVE, I applied the original patch regardless of review feedback to avoid any confusion about whether the CVE has been addressed

Re: [Qemu-devel] [RFC 0/9] QContext: QOM class to support multiple event loops

2013-05-06 Thread Anthony Liguori
-based QContext and be done with it. Hopefully that is the case... Why even bother with QContext then? Regards, Anthony Liguori Paolo

[Qemu-devel] Last Call for 1.5 before Hard Freeze

2013-05-06 Thread Anthony Liguori
than 5pm US/Eastern. Regards, Anthony Liguori

Re: [Qemu-devel] Last Call for 1.5 before Hard Freeze

2013-05-06 Thread Anthony Liguori
Paolo Bonzini pbonz...@redhat.com writes: Il 06/05/2013 16:42, Anthony Liguori ha scritto: Hi, I believe I have processed all of the outstanding pull requests and patches tagged for 1.5. If there are any other patches or pull requests you would like to be considered, please respond

Re: [Qemu-devel] Last Call for 1.5 before Hard Freeze

2013-05-06 Thread Anthony Liguori
Jordan Justen jljus...@gmail.com writes: On Mon, May 6, 2013 at 7:42 AM, Anthony Liguori aligu...@us.ibm.com wrote: I believe I have processed all of the outstanding pull requests and patches tagged for 1.5. If there are any other patches or pull requests you would like to be considered

Re: [Qemu-devel] [PATCH for-1.5] virtio-pci: bugfix

2013-05-06 Thread Anthony Liguori
: ‘VirtIODevice’ has no member named ‘guest_notifier_mask’ CChw/virtio/dataplane/hostmem.o make: *** [hw/virtio/virtio-pci.o] Error 1 Regards, Anthony Liguori --- hw/virtio/virtio-pci.c | 4 1 file changed, 4 insertions(+) diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c index

Re: [Qemu-devel] [libvirt] [PATCH 3/3] gtk: add devices menu to allow changing removable block devices

2013-05-03 Thread Anthony Liguori
Daniel P. Berrange berra...@redhat.com writes: On Thu, May 02, 2013 at 10:40:06AM -0500, Anthony Liguori wrote: Kevin Wolf kw...@redhat.com writes: + +if (strcmp(type, ide-cd) == 0) { +disk_type = DT_CDROM; +} else if (strcmp(type, isa-fdc) == 0

Re: [Qemu-devel] [PATCH qom-cpu for-1.5 0/4] target-i386: X86CPU compatibility properties

2013-05-03 Thread Anthony Liguori
, Anthony Liguori For changing n270 CPUID flags we'll still need to resort to Eduardo's proposed helper functions for now. Regards, Andreas Cc: Eduardo Habkost ehabk...@redhat.com Cc: Igor Mammedov imamm...@redhat.com Cc: H. Peter Anvin h...@zytor.com Cc: Borislav Petkov b...@suse.de Cc

Re: [Qemu-devel] [PULL 1.5 v6 0/4] fix win32 compilation

2013-05-03 Thread Anthony Liguori
was already merged. commit b48df71c916478ff658d143d0742e85c78348fad Merge: 459 9adea5f Author: Anthony Liguori aligu...@us.ibm.com Date: Mon Apr 29 08:26:47 2013 -0500 Merge remote-tracking branch 'bonzini/migration-writev' into staging # By Paolo Bonzini # Via Paolo Bonzini

Re: [Qemu-devel] [PATCH for-1.5] libqos: Relocate I2C files

2013-05-03 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH for-1.5] qdev: skip bus check for bus-less devices in qdev_unplug()

2013-05-03 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PULL] Trivial patches for 2013-05-02

2013-05-03 Thread Anthony Liguori
Pulled. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH 1.5] win32: fix compilation again

2013-05-03 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH v2] TLS support for VNC Websockets

2013-05-03 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] audio: Enable all cards

2013-05-03 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH for-1.5 v2 0/5] virtio: fix bus command line compatibility.

2013-05-03 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH 1/3] ide: add drive-id property

2013-05-02 Thread Anthony Liguori
Andreas Färber afaer...@suse.de writes: Am 26.04.2013 21:43, schrieb Anthony Liguori: This returns a string similar to what the guest would display in something like Linux's /dev/disk/by-id/ path. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- hw/ide/qdev.c | 15

Re: [Qemu-devel] [PATCH 3/3] gtk: add devices menu to allow changing removable block devices

2013-05-02 Thread Anthony Liguori
Kevin Wolf kw...@redhat.com writes: Am 26.04.2013 um 21:43 hat Anthony Liguori geschrieben: To generate this menu, we first walk the composition tree to find any device with a 'drive' property. We then record these devices and the BlockDriverState that they are associated with. Then we

Re: [Qemu-devel] [PATCH 3/3] gtk: add devices menu to allow changing removable block devices

2013-05-02 Thread Anthony Liguori
Kevin Wolf kw...@redhat.com writes: Am 02.05.2013 um 15:41 hat Anthony Liguori geschrieben: Kevin Wolf kw...@redhat.com writes: Ugh. Comparing the device name to an incomplete set of strings here and then figuring out for each what the specific way for this device is to create a nice

Re: [Qemu-devel] [PATCH 3/3] gtk: add devices menu to allow changing removable block devices

2013-05-02 Thread Anthony Liguori
Kevin Wolf kw...@redhat.com writes: Am 02.05.2013 um 15:41 hat Anthony Liguori geschrieben: Kevin Wolf kw...@redhat.com writes: Am 26.04.2013 um 21:43 hat Anthony Liguori geschrieben: +static void gd_block_device_menu_update(BlockDeviceMenu *bdm, BlockInfo *info) +{ +bool value

Re: [Qemu-devel] posting patches in pull requests (was Re: [PATCH 08/29] cpu: Add qemu_for_each_cpu())

2013-05-02 Thread Anthony Liguori
\(.*\)].*/Subject: [PULL\1] '$BRANCHPFX' queue/;/^$/q' $COVERLETTER You can also just do git format-patch --subject-prefix=PULL and avoid any fixups... Regards, Anthony Liguori (I really must put my random scripts into git.) -- PMM

Re: [Qemu-devel] [PATCH] libqtest: only call fclose() on open files

2013-05-02 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH v21 0/8] Add pvpanic device to deal with guest panic event

2013-05-02 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] sysemu: drop register_devices from header

2013-05-02 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH v2] virtio-net: count VIRTIO_NET_F_MAC when calculating config_len

2013-05-02 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] posting patches in pull requests (was Re: [PATCH 08/29] cpu: Add qemu_for_each_cpu())

2013-05-02 Thread Anthony Liguori
don't think it's very likely that you'll get 100% consistency out of everybody though. Ack. Regards, Anthony Liguori -- PMM

Re: [Qemu-devel] posting patches in pull requests (was Re: [PATCH 08/29] cpu: Add qemu_for_each_cpu())

2013-05-02 Thread Anthony Liguori
Paolo Bonzini pbonz...@redhat.com writes: Il 02/05/2013 18:06, Michael S. Tsirkin ha scritto: On Thu, May 02, 2013 at 10:52:47AM -0500, Anthony Liguori wrote: Peter Maydell peter.mayd...@linaro.org writes: On 2 May 2013 16:30, Paolo Bonzini pbonz...@redhat.com wrote: /me changes his scripts

Re: [Qemu-devel] Michael Tokarev taking over trivial-patches queue

2013-05-01 Thread Anthony Liguori
on the trivial-patches queue, see: http://qemu-project.org/Contribute/TrivialPatches (This page will be updated when mjt chooses a public repo for his pull requests.) Thank you Michael! Thanks for maintaining trivial for so long Stefan! Regards, Anthony Liguori Stefan

Re: [Qemu-devel] [RFC][PATCH v2]Add timestamp to error message

2013-05-01 Thread Anthony Liguori
fork() in QEMU (it doesn't exist on Windows so it can't be used without protection). None of those places use the error reporting infrastructure. This code is also extremely naive. It doesn't take into account leap seconds and makes bad assumptions about leap years. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] softfloat: rebase to version 2a

2013-05-01 Thread Anthony Liguori
Aurelien Jarno aurel...@aurel32.net writes: On Mon, Apr 29, 2013 at 01:05:03PM -0500, Anthony Liguori wrote: 7) Checkout the latest master branch, apply the diff from (6) - There were a lot of comment rejects, confirmed this was only comments and then used an emacs macro to rewrite

Re: [Qemu-devel] [PATCH] pc_piix: remove undesired change in pc_init1

2013-04-30 Thread Anthony Liguori
. Regards, Anthony Liguori --- hw/i386/pc_piix.c | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c index c1113e0..2bda79e 100644 --- a/hw/i386/pc_piix.c +++ b/hw/i386/pc_piix.c @@ -88,6 +88,7 @@ static void pc_init1(MemoryRegion *system_memory, void

Re: [Qemu-devel] [PATCH 7/8] audio: look for the ISA and PCI buses

2013-04-30 Thread Anthony Liguori
the previous RFC version committed accidentally instead of this one? Your Reviewed-by is missing because I applied the series before you sent the Reviewed-by. Regards, Anthony Liguori No, the RFC only had 6 patches and patches 6-7-8 were completely different (and broken). Paolo

Re: [Qemu-devel] [PATCH] libqtest: only call fclose() on open files

2013-04-30 Thread Anthony Liguori
Jesse Larrew jlar...@linux.vnet.ibm.com writes: libqtest.c can segfault when calling fclose() if the pidfile wasn't opened successfully. This patch fixes the issue. Signed-off-by: Jesse Larrew jlar...@linux.vnet.ibm.com Reviewed-by: Anthony Liguori aligu...@us.ibm.com Regards, Anthony

Re: [Qemu-devel] [PATCH v2] TLS support for VNC Websockets

2013-04-30 Thread Anthony Liguori
split out a refactoring patch of the existing TLS code but it looks okay as-is. I'm not a TLS expert but: Reviewed-by: Anthony Liguori aligu...@us.ibm.com I'll give folks a couple more days to review and then I'll apply. Thanks. Regards, Anthony Liguori --- Changes v2 * a peek buffer of 4

Re: [Qemu-devel] [PATCH for-1.4 0/2] fix migration failure from 1.3 due to SeaBIOS size change

2013-04-30 Thread Anthony Liguori
Michael S. Tsirkin m...@redhat.com writes: On Tue, Feb 05, 2013 at 09:08:20PM -0600, Anthony Liguori wrote: Michael Roth mdr...@linux.vnet.ibm.com writes: Migration from 1.3 currently fails due to a mismatch between the expected size of 256KB and the received size of 128KB for seabios

[Qemu-devel] [RFC] Moving Hard Freeze to Monday, May 6th.

2013-04-30 Thread Anthony Liguori
|- | 2013-05-15 | Tag v1.5.0-rc2 |- | 2013-05-17 | Tag v1.5.0 Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] qdev: Report errors collected during device realization

2013-04-30 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH for-1.5 v2] rules.mk: Fix build breakage

2013-04-30 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] QOM: Fail casts for unknown types

2013-04-30 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH 1.5 0/8] make audio card configuration uniform

2013-04-30 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] pc_piix: remove undesired change in pc_init1

2013-04-30 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] SoftFloat licensing in Linux kernel

2013-04-29 Thread Anthony Liguori
and (b) QEMU's softfloat is based on 2b, not 2 (as the kernel's is.) The kernel code is quite different than the QEMU code too. Looks like it would be quite a lot of work to switch to the kernel implementation. That said, I think it's our best long term option... Regards, Anthony Liguori

Re: [Qemu-devel] [PULL for-1.5] QMP queue

2013-04-29 Thread Anthony Liguori
Pulled. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PULL] libcacard fix from Cole Robinson

2013-04-29 Thread Anthony Liguori
Pulled. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH v2] virtio-net: unbreak the minix guest

2013-04-29 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH qtestfix for-1.5] libqos: Convert fw_cfg values to host endianness

2013-04-29 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH for-1.5 v2 00/20] QOM realize for ISA, part 1

2013-04-29 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH 0/4 v4] Support for LED state extension to Qemu VNC server

2013-04-29 Thread Anthony Liguori
Applied. Thanks. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH 1/2] gtk: fix cursor unref

2013-04-26 Thread Anthony Liguori
Gerd Hoffmann kra...@redhat.com writes: Use correct unref function, cursors are not gobjects (at least in gtk2). Fixes crash, reproducer: qemu -vga qxl -display gtk. Signed-off-by: Gerd Hoffmann kra...@redhat.com Reviewed-by: Anthony Liguori aligu...@us.ibm.com Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH] virtio: abort on zero config length

2013-04-26 Thread Anthony Liguori
certainly do. QEMU 1.4 had virtio-rng and therefore had this bug so we need to allocate a CVE. Regards, Anthony Liguori -- MST

Re: [Qemu-devel] [PATCH 01/10] Common: Add a default bootindex for all applicable devices

2013-04-26 Thread Anthony Liguori
to not be tried on certain networks. Regards, Anthony Liguori diff --git a/vl.c b/vl.c index 6caa5f4..84d7031 100644 --- a/vl.c +++ b/vl.c @@ -248,7 +248,7 @@ struct FWBootEntry { char *suffix; }; -static QTAILQ_HEAD(, FWBootEntry) fw_boot_order = +static QTAILQ_HEAD(FWBootOrder

Re: [Qemu-devel] [PATCH 02/10] Common: Add quick access to first boot device

2013-04-26 Thread Anthony Liguori
Dominik Dingel din...@linux.vnet.ibm.com writes: Instead of manually parsing the boot_list as character stream, we can access the nth boot device, specified by the position in the boot order. Signed-off-by: Dominik Dingel din...@linux.vnet.ibm.com Reviewed-by: Anthony Liguori aligu

Re: [Qemu-devel] [PATCH 04/10] S390: check if BIOS is available and create links

2013-04-26 Thread Anthony Liguori
. It's not what users expect when they compile code inside of pc-bios. Please stick to whatever behavior other blobs that we compile on demand have. Ack. Regards, Anthony Liguori Alex

Re: [Qemu-devel] [PATCH 03/10] S390: Check Bootdevice Type

2013-04-26 Thread Anthony Liguori
fine with pulling that in. So I don't see a problem with the no-fallback behavior (nor with it changing down the road), but the bootindex change would cause a regression on x86. Regards, Anthony Liguori Alex

Re: [Qemu-devel] [PATCH 01/10] Common: Add a default bootindex for all applicable devices

2013-04-26 Thread Anthony Liguori
Dominik Dingel din...@linux.vnet.ibm.com writes: On Fri, 26 Apr 2013 11:36:11 -0500 Anthony Liguori anth...@codemonkey.ws wrote: Dominik Dingel din...@linux.vnet.ibm.com writes: Currently only devices with a positive boot index will be pushed in the fw_boot_order queue, so if no boot

[Qemu-devel] [PATCH 0/3] gtk: add Devices menu

2013-04-26 Thread Anthony Liguori
This small series adds a devices menu to the GTK UI allowing a user to change or eject a removable block device from the menus.

[Qemu-devel] [PATCH 2/3] monitor: add notifier list for monitor events

2013-04-26 Thread Anthony Liguori
This lets us register for events internally within QEMU. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- include/qapi/qmp/qevents.h | 21 + monitor.c | 15 +++ 2 files changed, 36 insertions(+) create mode 100644 include/qapi/qmp/qevents.h

[Qemu-devel] [PATCH 3/3] gtk: add devices menu to allow changing removable block devices

2013-04-26 Thread Anthony Liguori
hot-plug yet but it should deal nicely with someone using the human monitor. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- ui/gtk.c | 302 +++ 1 file changed, 302 insertions(+) diff --git a/ui/gtk.c b/ui/gtk.c index e12f228

[Qemu-devel] [PATCH 1/3] ide: add drive-id property

2013-04-26 Thread Anthony Liguori
This returns a string similar to what the guest would display in something like Linux's /dev/disk/by-id/ path. Signed-off-by: Anthony Liguori aligu...@us.ibm.com --- hw/ide/qdev.c | 15 +++ 1 file changed, 15 insertions(+) diff --git a/hw/ide/qdev.c b/hw/ide/qdev.c index 8a9a891

Re: [Qemu-devel] [PATCH v4 0/7] publish etc/acpi/APIC in fw_cfg

2013-04-25 Thread Anthony Liguori
/acpi.c Ping... When may I expect reviews for this? I'll take a look this afternoon. It helps to CC folks who could potentially review it. When it doubt, never hurts to CC me. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH v4 1/7] refer to FWCfgState explicitly

2013-04-25 Thread Anthony Liguori
Laszlo Ersek ler...@redhat.com writes: Currently some places use pointer-to-void even though they mean pointer-to-FWCfgState. Clean them up. Signed-off-by: Laszlo Ersek ler...@redhat.com Acked-by: Michael S. Tsirkin m...@redhat.com Reviewed-by: Anthony Liguori aligu...@us.ibm.com Regards

Re: [Qemu-devel] [PATCH v4 3/7] hw/acpi: extract standard table headers as a standalone structure

2013-04-25 Thread Anthony Liguori
asl_compiler_id[4]; /* ASL compiler vendor ID */ +uint32_t asl_compiler_revision; /* ASL compiler revision number */ +} QEMU_PACKED AcpiTableStdHdr; Since you're giving it a CamelCaseName why don't you do the same for the struct. After that: Reviewed-by: Anthony Liguori aligu...@us.ibm.com Regards

Re: [Qemu-devel] [PATCH v4 2/7] acpi_table_install(): fix funcparam formatting in leading comment

2013-04-25 Thread Anthony Liguori
Laszlo Ersek ler...@redhat.com writes: Signed-off-by: Laszlo Ersek ler...@redhat.com Acked-by: Michael S. Tsirkin m...@redhat.com Reviewed-by: Anthony Liguori aligu...@us.ibm.com Regards, Anthony Liguori --- hw/acpi/core.c |2 +- 1 files changed, 1 insertions(+), 1 deletions

Re: [Qemu-devel] [PATCH v4 4/7] hw/acpi: export default ACPI headers using the type just introduced

2013-04-25 Thread Anthony Liguori
as a pointer later on or something like that? Can we make a function that does that? Regards, Anthony Liguori #endif /* !QEMU_HW_ACPI_H */ diff --git a/hw/acpi/core.c b/hw/acpi/core.c index d348f81..36a4d03 100644 --- a/hw/acpi/core.c +++ b/hw/acpi/core.c @@ -37,11 +37,20 @@ struct acpi_table_header

Re: [Qemu-devel] [PATCH v4 5/7] hw/acpi: export acpi_checksum()

2013-04-25 Thread Anthony Liguori
Laszlo Ersek ler...@redhat.com writes: Again, this enables reuse when preparing per-table fw_cfg blobs later. Signed-off-by: Laszlo Ersek ler...@redhat.com Acked-by: Michael S. Tsirkin m...@redhat.com Reviewed-by: Anthony Liguori aligu...@us.ibm.com Regards, Anthony Liguori --- include

Re: [Qemu-devel] [PATCH v4 6/7] hw/i386/pc.c: move IO_APIC_DEFAULT_ADDRESS to include/hw/i386/apic.h

2013-04-25 Thread Anthony Liguori
Laszlo Ersek ler...@redhat.com writes: From: Michael S. Tsirkin m...@redhat.com Signed-off-by: Michael S. Tsirkin m...@redhat.com Signed-off-by: Laszlo Ersek ler...@redhat.com Acked-by: Michael S. Tsirkin m...@redhat.com Reviewed-by: Anthony Liguori aligu...@us.ibm.com Regards, Anthony

Re: [Qemu-devel] [PATCH v4 7/7] hw/i386: build ACPI MADT (APIC) for fw_cfg clients

2013-04-25 Thread Anthony Liguori
, the PCI interrupt assignments, the APIC ids, the number of available CPUs, etc. The commit message also doesn't provide any reason about why we would want this. The cover letter provides a reference at least but cover letters don't end up in git history. Regards, Anthony Liguori

Re: [Qemu-devel] [PATCH 0/4 v4] Support for LED state extension to Qemu VNC server

2013-04-25 Thread Anthony Liguori
: http://lists.nongnu.org/archive/html/qemu-devel/2013-04/msg04773.html Pleae let me know if there is anything else need be improved. Thanks! Reviewed-by: Anthony Liguori aligu...@us.ibm.com I'll give people some time to take a look before applying but it looks good to me. Regards, Anthony

Re: [Qemu-devel] [PATCH v6 10/11] rdma: core logic

2013-04-25 Thread Anthony Liguori
Michael R. Hines mrhi...@linux.vnet.ibm.com writes: On 04/25/2013 03:45 PM, Anthony Liguori wrote: mrhi...@linux.vnet.ibm.com writes: From: Michael R. Hines mrhi...@us.ibm.com Code that does need to be visible is kept well contained inside this file and this is the only new additional

Re: [Qemu-devel] [PATCH] virtio: abort on zero config length

2013-04-25 Thread Anthony Liguori
. Regards, Anthony Liguori Signed-off-by: Jason Wang jasow...@redhat.com --- hw/virtio/virtio.c |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/hw/virtio/virtio.c b/hw/virtio/virtio.c index 1c2282c..a6fa667 100644 --- a/hw/virtio/virtio.c +++ b/hw/virtio

Re: [Qemu-devel] [PATCH v4 7/7] hw/i386: build ACPI MADT (APIC) for fw_cfg clients

2013-04-25 Thread Anthony Liguori
Eduardo Habkost ehabk...@redhat.com writes: On Thu, Apr 25, 2013 at 02:03:05PM -0500, Anthony Liguori wrote: Laszlo Ersek ler...@redhat.com writes: --- /dev/null +++ b/hw/i386/acpi.h + +#include stddef.h QEMU style would normally be to use qemu-common.h here but honestly I prefer

Re: [Qemu-devel] [PULL v2 0/6] console: qom-ify consoles

2013-04-25 Thread Anthony Liguori
Pulled. Thanks. Regards, Anthony Liguori

<    4   5   6   7   8   9   10   11   12   13   >