Re: [Qemu-devel] [MASCOT CONTEST] Benoit Canet #2

2012-02-15 Thread Gleb Natapov
On Wed, Feb 15, 2012 at 08:34:29AM -0600, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. +1 -- Gleb.

Re: [Qemu-devel] [PATCH 2/2] slirp: fix packet requeue issue in batchq

2012-02-15 Thread Zhi Yong Wu
On Wed, Feb 15, 2012 at 4:30 PM, Jan Kiszka wrote: > On 2012-02-15 09:13, zwu.ker...@gmail.com wrote: >> From: Zhi Yong Wu >> >> This patch fixes the slirp crash in current QEMU upstream. >> >> Signed-off-by: Zhi Yong Wu >> --- >>  slirp/if.c   |   37 ++--- >>  sl

Re: [Qemu-devel] [PATCH] network: Added option to disable NIC option roms

2012-02-15 Thread Gerhard Wiesinger
On Mon, 13 Feb 2012, Gerhard Wiesinger wrote: On Fri, 27 Jan 2012, Gerhard Wiesinger wrote: On Thu, 26 Jan 2012, Markus Armbruster wrote: Gerd Hoffmann writes: On 01/26/12 08:45, Markus Armbruster wrote: Gerhard Wiesinger writes: Option ROM for network interface cards (NICs) can now ex

[Qemu-devel] [PATCH v16 01/10] ARM: exynos4210: IRQ subsystem support.

2012-02-15 Thread Evgeny Voevodin
Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- Makefile.target |1 + hw/exynos4210.h | 82 hw/exynos4210_combiner.c | 469 ++ hw/exynos4210_gic.c | 458

[Qemu-devel] [PATCH v16 07/10] hw/lan9118: Add basic 16-bit mode support.

2012-02-15 Thread Evgeny Voevodin
Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- hw/lan9118.c | 124 +++--- 1 files changed, 118 insertions(+), 6 deletions(-) diff --git a/hw/lan9118.c b/hw/lan9118.c index aeb0c39..7b4fe87 100644 --- a/hw/lan9118.c +++ b/hw/lan

[Qemu-devel] [PATCH v16 10/10] MAINTAINERS: Add maintainers for Exynos SOC.

2012-02-15 Thread Evgeny Voevodin
Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- MAINTAINERS |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 173e893..e55ea0f 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -183,6 +183,14 @@ F: *win32* ARM Machines

[Qemu-devel] [PATCH v16 03/10] ARM: exynos4210: UART support

2012-02-15 Thread Evgeny Voevodin
From: Maksim Kozlov Add basic support of exynos4210 UART Signed-off-by: Maksim Kozlov Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- Makefile.target |2 +- hw/exynos4210.c | 29 +++ hw/exynos4210.h |9 + hw/exynos4210_uart.c | 676

Re: [Qemu-devel] [PATCH v16 00/10] ARM: Samsung Exynos4210-based boards support.

2012-02-15 Thread Evgeny Voevodin
On 16.02.2012 08:40, Evgeny Voevodin wrote: This set of patches adds support for Samsung Exynos4210-based boards NURI and SMDKC210. Tested on Linux kernel v3.x series. Guys, I think that this is a time to apply this patch series. -- Kind regards, Evgeny Voevodin, Leading Software Engineer, AS

[Qemu-devel] [PATCH v16 06/10] ARM: exynos4210: MCT support.

2012-02-15 Thread Evgeny Voevodin
Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- Makefile.target |2 +- hw/exynos4210.c | 19 + hw/exynos4210_mct.c | 1488 +++ 3 files changed, 1508 insertions(+), 1 deletions(-) create mode 100644 hw/exynos4210_mct.c

[Qemu-devel] [PATCH v16 08/10] hw/exynos4210.c: Add LAN support for SMDKC210.

2012-02-15 Thread Evgeny Voevodin
SMDKC210 uses lan9215 chip, but lan9118 in 16-bit mode seems to be enough. Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- hw/exynos4_boards.c | 27 +-- 1 files changed, 25 insertions(+), 2 deletions(-) diff --git a/hw/exynos4_boards.c b/hw/exynos4_board

[Qemu-devel] [PATCH v16 05/10] ARM: exynos4210: basic Power Management Unit implementation

2012-02-15 Thread Evgeny Voevodin
From: Maksim Kozlov Patch adds basic model for Exynos4210 SoC PMU. This model implements PMU registers just as a bulk of memory. Currently, the only reason this device exists is that secondary CPU boot loader uses PMU INFORM5 register as a holding pen. Signed-off-by: Maksim Kozlov Signed-off-by

[Qemu-devel] [PATCH v16 04/10] ARM: exynos4210: PWM support.

2012-02-15 Thread Evgeny Voevodin
Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- Makefile.target |2 +- hw/exynos4210.c | 12 ++ hw/exynos4210_pwm.c | 422 +++ 3 files changed, 435 insertions(+), 1 deletions(-) create mode 100644 hw/exynos4210_pwm.c

[Qemu-devel] [PATCH v16 02/10] ARM: Samsung exynos4210-based boards emulation

2012-02-15 Thread Evgeny Voevodin
Add initial support of NURI and SMDKC210 boards Signed-off-by: Evgeny Voevodin Reviewed-by: Peter Maydell --- Makefile.target |3 +- hw/exynos4210.c | 191 +++ hw/exynos4210.h | 40 +++ hw/exynos4_boards.c | 153 +++

[Qemu-devel] [PATCH v16 00/10] ARM: Samsung Exynos4210-based boards support.

2012-02-15 Thread Evgeny Voevodin
This set of patches adds support for Samsung Exynos4210-based boards NURI and SMDKC210. Tested on Linux kernel v3.x series. Usage: Exynos4210 SOC boards are modelled to run two CPU cores.. Linux kernel v3.x configured with exynos4_defconfig can be used for boards models testing with rootfs on in

Re: [Qemu-devel] [MASCOT CONTEST] Clare Liguori #1

2012-02-15 Thread Evgeny Voevodin
15.02.2012 18:46, Anthony Liguori пишет: Please respond to this note with an '+1', or an Ack, to vote for this icon. +1 -- Kind regards, Evgeny Voevodin, Leading Software Engineer, ASWG, Moscow R&D center, Samsung Electronics e-mail: e.voevo...@samsung.com

[Qemu-devel] [PATCH v5 4/4] xilinx_zynq: machine model initial version

2012-02-15 Thread Peter A. G. Crosthwaite
Xilinx zynq-7000 machine model. Also includes device model for the zynq-specific system level control register (SLCR) module. Signed-off-by: Peter A. G. Crosthwaite --- changed from v4: fixed FSF addess changed device_init -> type_init changes since v2: removed 2 compile warnings from zynq_arm_sy

[Qemu-devel] [PATCH v5 3/4] cadence_gem: initial version of device model

2012-02-15 Thread Peter A. G. Crosthwaite
Device model for cadence gem ethernet controller. Signed-off-by: Peter A. G. Crosthwaite Signed-off-by: John Linn --- changed from v4: changed device_init -> type_init changes from v1: removed global init function marked vmsd as unmigratable cleaned up debug messages Makefile.target |1 +

[Qemu-devel] [PATCH v5 2/4] cadence_ttc: initial version of device model

2012-02-15 Thread Peter A. G. Crosthwaite
Implemented cadence Triple Timer Counter (TCC) Signed-off-by: Peter A. G. Crosthwaite Signed-off-by: John Linn --- changed from v4: fixed FSF addess changed device_init -> type_init changed from v3: Fixed race condition where timer could miss match events on wrap around changed from v2: changed

[Qemu-devel] [PATCH v5 1/4] cadence_uart: initial version of device model

2012-02-15 Thread Peter A. G. Crosthwaite
Implemented cadence UART serial controller Signed-off-by: Peter A. G. Crosthwaite Signed-off-by: John Linn --- changed from v4: fixed FSF addess changed device_init -> type_init changes from v1: converted register file to array added vmsd state save/load support removed read side effects from CI

[Qemu-devel] [PATCH v5 0/4] Zynq-7000 EPP platform model

2012-02-15 Thread Peter A. G. Crosthwaite
This is a suite of Device models and a machine model for the Xilinx Zynq-7000 Extensible Processing Platform: http://www.xilinx.com/products/silicon-devices/epp/zynq-7000/index.htm This is an ARM based platform featuring embedded SoC peripherals. This patch series includes a minimal set of devi

Re: [Qemu-devel] [MASCOT CONTEST] Benoit Canet #2

2012-02-15 Thread Zhi Yong Wu
On Wed, Feb 15, 2012 at 10:34 PM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. +1 -- Regards, Zhi Yong Wu

Re: [Qemu-devel] [RFC] Next gen kvm api

2012-02-15 Thread Rusty Russell
On Wed, 15 Feb 2012 15:39:41 +0200, Avi Kivity wrote: > On 02/07/2012 08:12 PM, Rusty Russell wrote: > > > I would really love to have this, but the problem is that we'd need a > > > general purpose bytecode VM with binding to some kernel APIs. The > > > bytecode VM, if made general enough to hos

Re: [Qemu-devel] [PULL] slirp: cleanups & fixes

2012-02-15 Thread Anthony Liguori
On 02/10/2012 05:29 AM, Jan Kiszka wrote: The following changes since commit 57c83dacfe179bf061b8fa79d9553ebabe4d2ff4: make: Remove duplicate use of GLIB_CFLAGS (2012-02-09 20:44:38 +0400) are available in the git repository at: git://git.kiszka.org/qemu.git queues/slirp Pulled. Thanks

Re: [Qemu-devel] [PATCH 0/3] [PULL] qemu-kvm.git uq/master queue

2012-02-15 Thread Anthony Liguori
On 02/08/2012 02:01 PM, Marcelo Tosatti wrote: The following changes since commit cf4dc461a4cfc3e056ee24edb26154f4d34a6278: Restore consistent formatting (2012-02-07 22:11:04 +0400) are available in the git repository at: git://git.kernel.org/pub/scm/virt/kvm/qemu-kvm.git uq/master Pull

Re: [Qemu-devel] [PULL] vnc patch collection

2012-02-15 Thread Anthony Liguori
On 02/10/2012 04:09 AM, Gerd Hoffmann wrote: Hi, Here comes my vnc patch collection again. Rebased to latest master. gained one more patch. All patches have been on the list before, the last patch just once, the other ones multiple times. Seems nobody wants tp pick them up, MAINTAINERS has

Re: [Qemu-devel] [RFC][PATCH 01/16 v6] monitor: introduce qemu_suspend_monitor()/qemu_resume_monitor()

2012-02-15 Thread Wen Congyang
At 02/15/2012 09:01 PM, Luiz Capitulino Wrote: > On Wed, 15 Feb 2012 09:51:04 +0100 > Jan Kiszka wrote: > >> On 2012-02-15 03:54, Wen Congyang wrote: >>> At 02/15/2012 12:19 AM, Jan Kiszka Wrote: On 2012-02-09 04:19, Wen Congyang wrote: > Sync command needs these two APIs to suspend/resu

Re: [Qemu-devel] [RFC] Next gen kvm api

2012-02-15 Thread Michael Ellerman
On Wed, 2012-02-15 at 22:21 +, Arnd Bergmann wrote: > On Tuesday 07 February 2012, Alexander Graf wrote: > > On 07.02.2012, at 07:58, Michael Ellerman wrote: > > > > > On Mon, 2012-02-06 at 13:46 -0600, Scott Wood wrote: > > >> You're exposing a large, complex kernel subsystem that does very >

Re: [Qemu-devel] [PULL 00/28] usb patch queue

2012-02-15 Thread Anthony Liguori
On 02/10/2012 05:42 AM, Gerd Hoffmann wrote: Hi, Here comes the current usb patch queue. It brings some bugfixes. It also revamps the usb packet workflow to move the whole thing to a event-based workflow. xhci emulation needs this, and we also might be able to use this with the other host

Re: [Qemu-devel] [PULL 00/15] Block patches

2012-02-15 Thread Anthony Liguori
On 02/10/2012 06:47 AM, Kevin Wolf wrote: The following changes since commit 57c83dacfe179bf061b8fa79d9553ebabe4d2ff4: make: Remove duplicate use of GLIB_CFLAGS (2012-02-09 20:44:38 +0400) Pulled. Thanks. Regards, Anthony Liguori are available in the git repository at: git://repo.o

Re: [Qemu-devel] [MASCOT CONTEST] Clare Liguori #2

2012-02-15 Thread TeLeMan
+1 -- SUN OF A BEACH On Wed, Feb 15, 2012 at 22:46, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. >

Re: [Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #5

2012-02-15 Thread TeLeMan
+1 -- SUN OF A BEACH On Wed, Feb 15, 2012 at 22:40, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. >

[Qemu-devel] [PATCH 1/7] Introduce a new bus "ICC" to connect APIC

2012-02-15 Thread Igor Mammedov
Introduce a new structure CPUS as the controller of ICC (INTERRUPT CONTROLLER COMMUNICATIONS), and new bus "ICC" to hold APIC,instead of sysbus. So we can support APIC hot-plug feature. This is repost of original patch for qemu-kvm rebased on current qemu: http://lists.nongnu.org/archive/html/qemu

[Qemu-devel] [PATCH 5/7] Set default 'model' property if it wasn't specified yet.

2012-02-15 Thread Igor Mammedov
If cpu model wasn't specified at startup or hot-plug set it to default value for the target. Signed-off-by: Igor Mammedov --- hw/pc.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/hw/pc.c b/hw/pc.c index 3d35d78..ec50f16 100644 --- a/hw/pc.c +++ b/hw/pc.c @@ -93

[Qemu-devel] [PATCH 2/7] Convert pc cpu to qdev

2012-02-15 Thread Igor Mammedov
Convert pc cpu to qdev device that is attached to icc bus, later hot-plug ability of icc bus will allow to implement cpu hot-plug. Signed-off-by: Igor Mammedov --- hw/pc.c | 62 +++-- target-i386/cpu.h|1 + target-i386/helper.c |

[Qemu-devel] [PATCH 4/7] cleanup: remove redundant pc_cpu_reset

2012-02-15 Thread Igor Mammedov
All cpus except of boot cpu should be halted after reset. So remove redundant pc_cpu_reset and use cpu_reset instead. Signed-off-by: Igor Mammedov --- hw/pc.c | 11 ++- target-i386/helper.c |1 + 2 files changed, 3 insertions(+), 9 deletions(-) diff --git a/hw/pc.c b/

[Qemu-devel] [PATCH 3/7] cleanup: get rid of pc_new_cpu

2012-02-15 Thread Igor Mammedov
Since pc_new_cpu is used only once and to simplify implementation of pc_cpus_init, pc_new_cpu body just moved into pc_cpus_init. Signed-off-by: Igor Mammedov --- hw/pc.c | 30 -- 1 files changed, 12 insertions(+), 18 deletions(-) diff --git a/hw/pc.c b/hw/pc.c inde

[Qemu-devel] [PATCH 6/7] Prepare ACPI infrastructure for cpu hot-plug in acpi_piix4

2012-02-15 Thread Igor Mammedov
It's backport of acpi related cpu-hotplug code from qemu-kvm. Provides means to communicate cpu hot-plug events to guest OS and that works with current seabios. Signed-off-by: Igor Mammedov --- hw/acpi_piix4.c | 65 +- hw/pc.h |1

[Qemu-devel] [PATCH 7/7] Implement cpu hot-add using device_add monitor command

2012-02-15 Thread Igor Mammedov
Adds ability to hot-add cpus if guest was started with options -smp X,maxcpus=Y where X < Y. For simplicity sake this implementation doesn't allow to add specific cpu but rather it adds the next not yet plugged cpu. For adding cpu just execute following command in monitor: device_add cpu-p

Re: [Qemu-devel] [MASCOT CONTEST] Alex Bradbury #1

2012-02-15 Thread Meador Inge
On Wed, Feb 15, 2012 at 8:31 AM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. +1 -- Meador

Re: [Qemu-devel] [PATCH 7/7] Implement cpu hot-add using device_add monitor command

2012-02-15 Thread Anthony Liguori
On 02/15/2012 05:16 PM, Igor Mammedov wrote: Adds ability to hot-add cpus if guest was started with options -smp X,maxcpus=Y where X< Y. For simplicity sake this implementation doesn't allow to add specific cpu but rather it adds the next not yet plugged cpu. For adding cpu just execute fo

Re: [Qemu-devel] [MASCOT CONTEST] Clare Liguori #1

2012-02-15 Thread Meador Inge
On Wed, Feb 15, 2012 at 8:46 AM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. +1

Re: [Qemu-devel] [PATCH 1/2] slirp: remove duplicate definition

2012-02-15 Thread Peter Maydell
On 15 February 2012 23:02, Andreas Färber wrote: > Am 15.02.2012 10:38, schrieb Michael S. Tsirkin: >> why does slirp have all these >> defines in the first place? >> >> slirp/mbuf.h:#define m_nextpkt  m_hdr.mh_nextpkt >> slirp/mbuf.h:#define ifs_next m_nextpkt >> >> Seriously, #define for a field

[Qemu-devel] [PATCH 0/7] Add CPU hot-plug to qemu (pc only). v2

2012-02-15 Thread Igor Mammedov
Previous version was titled "Make vcpu hotplug work for qemu" Why it is needed? Feature is implemented by many other solutions and seems to be in high demand from users. For example it's possible to do hot-plug with xen tool stack or with kvm using qemu-kvm+some voodoo (i.e. lost pat

Re: [Qemu-devel] [PATCH 1/2] slirp: remove duplicate definition

2012-02-15 Thread Andreas Färber
Am 15.02.2012 10:38, schrieb Michael S. Tsirkin: > why does slirp have all these > defines in the first place? > > slirp/mbuf.h:#define m_nextpkt m_hdr.mh_nextpkt > slirp/mbuf.h:#define ifs_next m_nextpkt > > Seriously, #define for a field name? We have some such #defines in ibm8514 graphics ca

[Qemu-devel] [Bug 591666] Re: broken "pci_add auto storage"

2012-02-15 Thread nutznboltz
Did you remember to load PCI hotplug modules into the guest? sudo modprobe acpiphp sudo modprobe pci_hotplug -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/591666 Title: broken "pci_add auto storage

[Qemu-devel] [RFC PATCH v4 14/14] simpletrace.py: Support for simpletrace v2 log format

2012-02-15 Thread Harsh Prateek Bora
Note: This patch is NOT FOR UPSTREAM, still under development. Use it for developer testing of the new v2 log format only. Signed-off-by: Harsh Prateek Bora --- scripts/simpletrace.py | 112 +++- 1 files changed, 101 insertions(+), 11 deletions(-) di

[Qemu-devel] [MASCOT CONTEST] Benoit Canet #2

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

[Qemu-devel] [RFC PATCH v4 00/14] Tracing Improvements, Simpletrace v2

2012-02-15 Thread Harsh Prateek Bora
This patchset introduces 2 major updates: 1) Tracetool Improvements (Conversion from shell script to python) 2) Simpletrace v2 log format (Support for variable args, strings) Existing simple trace can log upto 6 args per trace event and does not support strings in trace record format. Introducing

Re: [Qemu-devel] [RFC] Next gen kvm api

2012-02-15 Thread Anthony Liguori
On 02/15/2012 07:39 AM, Avi Kivity wrote: On 02/07/2012 08:12 PM, Rusty Russell wrote: I would really love to have this, but the problem is that we'd need a general purpose bytecode VM with binding to some kernel APIs. The bytecode VM, if made general enough to host more complicated devices, wo

Re: [Qemu-devel] [PATCH v2] MAINTAINERS: Add hw/highbank.c maintainer

2012-02-15 Thread Peter Maydell
I've taken this into arm-devs.next (fixing up the trivial conflict with the Exynos new entry in the process). thanks -- PMM On 6 February 2012 14:05, Mark Langsdorf wrote: > Signed-off-by: Mark Langsdorf > --- > Changes from v1 >        Put entry in alphabetical order >        Added maintainers

[Qemu-devel] [MASCOT CONTEST] Benoit Canet #1

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

Re: [Qemu-devel] [MASCOT CONTEST] Clare Liguori #1

2012-02-15 Thread Bruce Rogers
>>> On 2/15/2012 at 07:46 AM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. ACK

Re: [Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #4

2012-02-15 Thread Bruce Rogers
>>> On 2/15/2012 at 07:39 AM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. ACK

Re: [Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #5

2012-02-15 Thread Yaniv Kaul
- Original Message - > Please respond to this note with an '+1', or an Ack, to vote for this > icon. > +1. Y.

[Qemu-devel] [PATCH 1/4] block: Rename bdrv_mon_event() & BlockMonEventAction

2012-02-15 Thread Luiz Capitulino
They are QMP events, not monitor events. Rename them accordingly. Also, move bdrv_emit_qmp_error_event() up in the file. A new event will be added soon and it's good to have them next each other. Signed-off-by: Luiz Capitulino --- block.c | 58 +++--

[Qemu-devel] [MASCOT CONTEST] Stefan Weil #6

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

[Qemu-devel] [MASCOT CONTEST] Stefan Weil #2

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

[Qemu-devel] [RFC PATCH v4 06/14] trace: [tracetool] Process the "disable" event property

2012-02-15 Thread Harsh Prateek Bora
From: Lluís Vilanova Signed-off-by: Lluís Vilanova Signed-off-by: Harsh Prateek Bora --- scripts/tracetool.py | 20 +++- 1 files changed, 11 insertions(+), 9 deletions(-) diff --git a/scripts/tracetool.py b/scripts/tracetool.py index 3502524..1cf5c8f 100755 --- a/scripts/tra

[Qemu-devel] [RFC PATCH v4 10/14] trace: Provide a per-event status define for conditional compilation

2012-02-15 Thread Harsh Prateek Bora
From: Lluís Vilanova NOTE: This is a port of a patch in Stefanha's tracing tree to the new pythonic tracetool version. Adds a 'TRACE_${NAME}_ENABLED' preprocessor define for each tracing event in "trace.h". This lets the user conditionally compile code with a relatively high execution cost that

[Qemu-devel] [PATCH v5 5/7] hw/vexpress.c: Instantiate the motherboard CLCD

2012-02-15 Thread Peter Maydell
Instantiate the CLCD on the vexpress motherboard as well as one on the daughterboard -- the A15 daughterboard does not have a CLCD and so relies on the motherboard one. At the moment QEMU doesn't provide infrastructure for selecting which display device gets to actually show graphics -- the first

Re: [Qemu-devel] [MASCOT CONTEST] Clare Liguori #1

2012-02-15 Thread Erik Rull
Anthony Liguori wrote: Please respond to this note with an '+1', or an Ack, to vote for this icon. +1

Re: [Qemu-devel] [MASCOT CONTEST] Alex Bradbury #1

2012-02-15 Thread Erik Rull
Anthony Liguori wrote: Please respond to this note with an '+1', or an Ack, to vote for this icon. +1

Re: [Qemu-devel] [RFC][PATCH 05/16 v6] Add API to get memory mapping

2012-02-15 Thread HATAYAMA Daisuke
From: Wen Congyang Subject: Re: [RFC][PATCH 05/16 v6] Add API to get memory mapping Date: Wed, 15 Feb 2012 17:41:15 +0800 > At 02/15/2012 05:17 PM, Jan Kiszka Wrote: >> On 2012-02-15 05:07, Wen Congyang wrote: >>> At 02/15/2012 01:21 AM, Jan Kiszka Wrote: On 2012-02-09 04:22, Wen Congyang wr

Re: [Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #1

2012-02-15 Thread Eric Blake
On 02/15/2012 07:38 AM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. ACK -- Eric Blake ebl...@redhat.com+1-919-301-3266 Libvirt virtualization library http://libvirt.org signature.asc Description: OpenPGP digital signature

Re: [Qemu-devel] [PATCH v1] ./configure: use -lole32 when building with mingw32

2012-02-15 Thread Meador Inge
On 02/15/2012 10:49 AM, Peter Maydell wrote: > On 15 February 2012 16:41, Meador Inge wrote: >> glib calls 'CoTaskMemFree' which is defined by ole32.dll. >> Therefore when building with mingw32 -lole32 should be in >> 'LIBS'. > > Not that I'm objecting to the patch, but isn't this technically >

Re: [Qemu-devel] [MASCOT CONTEST] Alex Bradbury #2

2012-02-15 Thread Michael Roth
On Wed, Feb 15, 2012 at 11:04 AM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. ACK ...more specifically: for site/wiki logo.

[Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #4

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

[Qemu-devel] [RFC PATCH v4 01/14] Converting tracetool.sh to tracetool.py

2012-02-15 Thread Harsh Prateek Bora
Signed-off-by: Harsh Prateek Bora --- Makefile.objs|6 +- Makefile.target | 10 +- configure|7 +- scripts/tracetool| 643 -- scripts/tracetool.py | 534 + 5 files chan

Re: [Qemu-devel] [MASCOT CONTEST] Benoit Canet #2

2012-02-15 Thread Artyom Tarasenko
On Wed, Feb 15, 2012 at 3:34 PM, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. +1

[Qemu-devel] [PATCH 3/4] block: bdrv_eject(): Add tray_changed parameter

2012-02-15 Thread Luiz Capitulino
It's true if the tray has changed its state. This is going to be used by the next commit. Signed-off-by: Luiz Capitulino --- block.c|2 +- block.h|2 +- block/raw.c|2 +- hw/ide/atapi.c |2 +- hw/ide/core.c |2 +- hw/scsi-disk.c |2 +- 6 files changed

[Qemu-devel] [PATCH 2/4] block: bdrv_eject(): Make eject_flag a real bool

2012-02-15 Thread Luiz Capitulino
Signed-off-by: Luiz Capitulino --- block.c |2 +- block.h |2 +- block/raw-posix.c |6 +++--- block/raw.c |2 +- block_int.h |2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/block.c b/block.c index d867d0f..b5710e1 100644 --

[Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #1

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

[Qemu-devel] [MASCOT CONTEST] Stefan Weil #3

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

Re: [Qemu-devel] [MASCOT CONTEST] Benoit Canet #2

2012-02-15 Thread Stefan Weil
Am 15.02.2012 15:34, schrieb Anthony Liguori: Please respond to this note with an '+1', or an Ack, to vote for this icon. +1 (if the license for this logo is compatible with QEMU)

Re: [Qemu-devel] [PATCH v3 0/1] Allow the building of VirtFS to be disabled

2012-02-15 Thread Meador Inge
Ping... Any comments on the v3 patch? http://lists.nongnu.org/archive/html/qemu-devel/2012-02/msg01236.html On Thu, Feb 9, 2012 at 8:31 PM, Meador Inge wrote: > There have been reports [1, 2] where folks have had issues building > VirtFS and the virtio backend on older systems.  I personally saw

Re: [Qemu-devel] [MASCOT CONTEST] Benoit Canet #2

2012-02-15 Thread Blue Swirl
On Wed, Feb 15, 2012 at 14:34, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. +1

Re: [Qemu-devel] [MASCOT CONTEST] Clare Liguori #1

2012-02-15 Thread Blue Swirl
On Wed, Feb 15, 2012 at 14:46, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. +1

Re: [Qemu-devel] [PATCH v1 0/1] Fix GDB semihosting

2012-02-15 Thread Peter Maydell
I wrote: > This patch works (in that it fixes this problem with a test case I have > coincidentally received from another reporter this week), although I > notice that doing read/write syscalls via gdb is dreadfully slow > because there seems to be ~1second delay between gdb sending its response >

[Qemu-devel] [PATCH 4/4] qmp: add BLOCK_MEDIUM_EJECT event

2012-02-15 Thread Luiz Capitulino
It's emitted whenever the tray is moved by the guest or by HMP/QMP commands. Signed-off-by: Luiz Capitulino --- QMP/qmp-events.txt | 17 + block.c| 24 monitor.c |3 +++ monitor.h |1 + 4 files changed, 45 inserti

Re: [Qemu-devel] [PATCH] i386: Remove REGPARM

2012-02-15 Thread Blue Swirl
On Wed, Feb 15, 2012 at 19:36, Richard Henderson wrote: > On 02/15/2012 10:11 AM, Blue Swirl wrote: >>  #if defined(CONFIG_SOFTMMU) >> -    int mem_index, s_bits, arg_idx; >> +    int mem_index, s_bits; >> +#if TCG_TARGET_REG_BITS == 64 >> +    int arg_idx; >> +#else >> +    int stack_adjust; >> +

[Qemu-devel] [MASCOT CONTEST] Stefan Weil #1

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

[Qemu-devel] [RFC PATCH v4 04/14] trace: [tracetool] Do not precompute the event number

2012-02-15 Thread Harsh Prateek Bora
From: Lluís Vilanova Signed-off-by: Lluís Vilanova Signed-off-by: Harsh Prateek Bora --- scripts/tracetool.py | 21 + 1 files changed, 9 insertions(+), 12 deletions(-) diff --git a/scripts/tracetool.py b/scripts/tracetool.py index 84003f5..1085fc4 100755 --- a/scripts/tr

Re: [Qemu-devel] [MASCOT CONTEST] Alex Bradbury #1

2012-02-15 Thread Alex Bradbury
On 15 February 2012 14:31, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. At the request of Andreas Färber, I also created a version with QEMU in all caps (as it should be): http://lists.gnu.org/archive/html/qemu-devel/2011-12/msg00229.html h

[Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #2

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

[Qemu-devel] [RFC PATCH v4 13/14] Simpletrace v2: Handle var num of args, strings.

2012-02-15 Thread Harsh Prateek Bora
Advantages over existing simpletrace backend: - More than 6 elements (vitually unlimited) arguments can be traced. - This allows to trace strings (variable size element) as well. Signed-off-by: Harsh Prateek Bora --- scripts/tracetool.py | 82 ++- trace/simple.c | 226 ++

Re: [Qemu-devel] [PATCH v1] ./configure: use -lole32 when building with mingw32

2012-02-15 Thread Stefan Weil
Am 15.02.2012 17:41, schrieb Meador Inge: glib calls 'CoTaskMemFree' which is defined by ole32.dll. Therefore when building with mingw32 -lole32 should be in 'LIBS'. Signed-off-by: Meador Inge --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/config

Re: [Qemu-devel] [PATCH] i386: Remove REGPARM

2012-02-15 Thread Richard Henderson
On 02/15/2012 10:11 AM, Blue Swirl wrote: > #if defined(CONFIG_SOFTMMU) > -int mem_index, s_bits, arg_idx; > +int mem_index, s_bits; > +#if TCG_TARGET_REG_BITS == 64 > +int arg_idx; > +#else > +int stack_adjust; > +#endif ... > -if (TCG_TARGET_REG_BITS == 64) { > -tcg

[Qemu-devel] [PATCH 2/2] slirp: M_dat -> m_dat

2012-02-15 Thread Michael S. Tsirkin
Drop upper case from field name. Generated by: s#\bM_dat\b#m_dat#g; Signed-off-by: Michael S. Tsirkin --- slirp/ip_input.c |6 +++--- slirp/mbuf.c | 28 ++-- slirp/mbuf.h | 10 +- slirp/socket.c |2 +- 4 files changed, 23 insertions(+), 23 d

[Qemu-devel] [PATCH 1/2] slirp: remove unused type name

2012-02-15 Thread Michael S. Tsirkin
M_dat union has an ugly name. We never use it so just make it unnamed. Signed-off-by: Michael S. Tsirkin --- slirp/mbuf.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/slirp/mbuf.h b/slirp/mbuf.h index 292cbb3..57f6551 100644 --- a/slirp/mbuf.h +++ b/slirp/mbuf.h @@ -

[Qemu-devel] [PATCH 0/2] slirp: misc cleanups

2012-02-15 Thread Michael S. Tsirkin
This is on top of my previous field renaming patch Michael S. Tsirkin (2): slirp: remove unused type name slirp: M_dat -> m_dat slirp/ip_input.c |6 +++--- slirp/mbuf.c | 28 ++-- slirp/mbuf.h | 12 ++-- slirp/socket.c |2 +- 4 files chan

[Qemu-devel] [RFC PATCH v4 09/14] trace: [tracetool] Automatically establish available backends and formats

2012-02-15 Thread Harsh Prateek Bora
From: Lluís Vilanova Signed-off-by: Lluís Vilanova Signed-off-by: Harsh Prateek Bora --- Makefile.objs|6 +- Makefile.target |3 +- scripts/tracetool.py | 321 -- 3 files changed, 211 insertions(+), 119 deletions(-) diff --

Re: [Qemu-devel] [RFC] Next gen kvm api

2012-02-15 Thread Scott Wood
On 02/15/2012 05:57 AM, Alexander Graf wrote: > > On 15.02.2012, at 12:18, Avi Kivity wrote: > >> Well the real reason is we have an extra bit reported by page faults >> that we can control. Can't you set up a hashed pte that is configured >> in a way that it will fault, no matter what type of a

Re: [Qemu-devel] [MASCOT CONTEST] Andreas Faerber #1

2012-02-15 Thread Daniel P. Berrange
On Wed, Feb 15, 2012 at 08:33:35AM -0600, Anthony Liguori wrote: > Please respond to this note with an '+1', or an Ack, to vote for this icon. ACK Daniel -- |: http://berrange.com -o-http://www.flickr.com/photos/dberrange/ :| |: http://libvirt.org -o- http://vi

[Qemu-devel] [PATCH v5 3/7] hw/vexpress.c: Move secondary CPU boot code to SRAM

2012-02-15 Thread Peter Maydell
On real Versatile Express hardware, the boot ROM puts the secondary CPU bootcode/holding pen in SRAM. We can therefore rely on Linux not trashing this memory until secondary CPUs have booted up, and can put our QEMU-specific pen code in the same place. This allows us to drop the odd "hack" RAM page

Re: [Qemu-devel] [PATCH] slirp: kill ugly macros

2012-02-15 Thread Jan Kiszka
On 2012-02-15 19:45, Michael S. Tsirkin wrote: > Remove ugly macros for field names, > change done by the following script: > > s#\bifq_prev\b#m_prev#g; > s#\bifq_next\b#m_next#g; > s#\bifs_prev\b#m_prevpkt#g; > s#\bifs_next\b#m_nextpkt#g; > s#\bifq_so\b#m_so#g; > s#\bm_next\b#m_hdr.mh_next#g; > s

[Qemu-devel] [RFC PATCH v4 08/14] trace: [tracetool] Make format-specific code optional with access to events

2012-02-15 Thread Harsh Prateek Bora
From: Lluís Vilanova Signed-off-by: Lluís Vilanova Signed-off-by: Harsh Prateek Bora --- scripts/tracetool.py | 32 ++-- 1 files changed, 10 insertions(+), 22 deletions(-) diff --git a/scripts/tracetool.py b/scripts/tracetool.py index 986dc4d..2d6f9ee 100755 ---

Re: [Qemu-devel] QEMU Mascot Contest

2012-02-15 Thread Benoît Canet
This logo does even contains an emu. It's a quick draft it could be refined. http://files.nodalink.com/qemu/black_and_orange_qemu.svg Best regards Benoît On Thu, Nov 10, 2011 at 11:10 PM, Anthony Liguori wrote: > Hi > > We're long over due for a mascot for QEMU. Our wiki is nice, but is > mi

[Qemu-devel] [PATCH] slirp: kill ugly macros

2012-02-15 Thread Michael S. Tsirkin
Remove ugly macros for field names, change done by the following script: s#\bifq_prev\b#m_prev#g; s#\bifq_next\b#m_next#g; s#\bifs_prev\b#m_prevpkt#g; s#\bifs_next\b#m_nextpkt#g; s#\bifq_so\b#m_so#g; s#\bm_next\b#m_hdr.mh_next#g; s#\bm_prev\b#m_hdr.mh_prev#g; s#\bm_nextpkt\b#m_hdr.mh_nextpkt#g; s#

[Qemu-devel] [PATCH v2 0/4]: QMP: add BLOCK_MEDIUM_EJECT event

2012-02-15 Thread Luiz Capitulino
There's been one non-rfc patch and one or two rfc ones. This is v2 of the non-rfc one. I think this version does what Kevin and Markus were asking: the event is emitted whenever the tray moves, be it the guest or HMP/QMP commands. In a previous email I said that I'd be reviving an old series that

[Qemu-devel] [MASCOT CONTEST] Wei-Ren Chen #3

2012-02-15 Thread Anthony Liguori
Please respond to this note with an '+1', or an Ack, to vote for this icon. <>

  1   2   3   >