Re: [Qemu-devel] [PULL] QOM CPUState patch queue 2012-12-19

2012-12-22 Thread Andreas Färber
Am 22.12.2012 13:08, schrieb Blue Swirl: > On Wed, Dec 19, 2012 at 1:36 PM, Andreas Färber wrote: >> Hello, >> >> This is my current QOM CPU patch queue. Please pull. > > It conflicts with HEAD, please rebase. Merged on git://repo.or.cz/qemu/afaerber.git qom-cpu (501a7ce7270955be151c442c27620fa7

Re: [Qemu-devel] [RFC 3/3] virtio-balloon: add auto-ballooning support

2012-12-22 Thread Luiz Capitulino
On Thu, 20 Dec 2012 05:24:12 + Dietmar Maurer wrote: > > > Wow, you're fast! And I'm glad that it works for you, so we have two > > > full-featured mempressure cgroup users already. > > > > Thanks, although I think we need more testing to be sure this does what we > > want. I mean, the basic

Re: [Qemu-devel] [PATCH 2/3] HMP: pass in parameter for info sub command

2012-12-22 Thread Luiz Capitulino
On Thu, 20 Dec 2012 11:02:16 +0800 Wenchao Xia wrote: > > On Wed, 19 Dec 2012 18:17:09 +0800 > > Wenchao Xia wrote: > > > >>This patch enable sub info command handler getting meaningful > >> parameter. > >> > >> Signed-off-by: Wenchao Xia > >> --- > >> hmp-commands.hx |2 +- > >> mo

[Qemu-devel] [PATCH] arm: vexpress: Clear sysctl cfgctrl start bit

2012-12-22 Thread Christoffer Dall
The start bit should only be set to indicate that a function call is underway, right now. When done with function, clear it. Cc: Peter Maydell Signed-off-by: Christoffer Dall --- hw/arm_sysctl.c |1 + 1 file changed, 1 insertion(+) diff --git a/hw/arm_sysctl.c b/hw/arm_sysctl.c index 58eb

Re: [Qemu-devel] [PATCH] net: add missing include file

2012-12-22 Thread Blue Swirl
Thanks, applied. On Fri, Dec 21, 2012 at 8:56 AM, Liming Wang wrote: > To fix building error: > > CCnet/vde.o > net/vde.c: In function ‘vde_cleanup’: > net/vde.c:65:5: error: implicit declaration of function ‘qemu_set_fd_handler’ > [-Werror=implicit-function-declaration] > net/vde.c:65:5: er

Re: [Qemu-devel] [PATCH] net: Add missing include statement (fix compiler warnings for MinGW)

2012-12-22 Thread Blue Swirl
Thanks, applied. On Thu, Dec 20, 2012 at 10:09 PM, Stefan Weil wrote: > These and some more compiler warnings were caused by a recent commit: > > net/tap-win32.c:724: warning: no previous prototype for ‘tap_has_ufo’ > net/tap-win32.c:729: warning: no previous prototype for ‘tap_has_vnet_hdr’ > ..

Re: [Qemu-devel] [PATCH 0/2] Build fixes

2012-12-22 Thread Blue Swirl
Thanks, applied both. On Thu, Dec 20, 2012 at 11:29 AM, Paolo Bonzini wrote: > Two build fixes for configurations not covered by my and Anthony's testing. > > Paolo > > Paolo Bonzini (2): > build: fix includes for VNC > xen: add missing include > > Makefile.target | 5 - > configure

Re: [Qemu-devel] [PATCH v2] target-xtensa: fix search_pc for the last TB opcode

2012-12-22 Thread Blue Swirl
Thanks, applied. On Wed, Dec 19, 2012 at 8:04 PM, Max Filippov wrote: > Zero out tcg_ctx.gen_opc_instr_start for instructions representing the > last guest opcode in the TB. > > Cc: qemu-sta...@nongnu.org > Signed-off-by: Max Filippov > --- > Changes v1 -> v2: > - replace while loop with memset

Re: [Qemu-devel] [PATCH 00/27] More source reorganization and build system TLC

2012-12-22 Thread Paolo Bonzini
Il 21/12/2012 21:14, Lluís Vilanova ha scritto: > Paolo Bonzini writes: > [...] >> Finally, patches 25 to 27 affect tracing, which is also moved to >> libqemuutil.a. Patch 25 is Lluis's already posted patch to introduce >> trace/Makefile.objs. > > I just skimmed through the patches, but is there

Re: [Qemu-devel] [PATCH] target-mips: Remove semicolon from macro definition

2012-12-22 Thread Peter Maydell
On 22 December 2012 12:38, Stefan Weil wrote: > Macro RESTORE_FLUSH_MODE is similar to RESTORE_ROUNDING_MODE > but included a semicolon. > > The code which uses that macro also includes a semicolon, > so the result was an empty statement. > > Remove the superfluous semicolon from the macro definit

[Qemu-devel] [PATCH] hw/mcf5206: Reduce size of lookup table

2012-12-22 Thread Stefan Weil
This typically reduces the size from 512 bytes to 128 bytes. Signed-off-by: Stefan Weil --- hw/mcf5206.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/mcf5206.c b/hw/mcf5206.c index fe7a488..d8c0059 100644 --- a/hw/mcf5206.c +++ b/hw/mcf5206.c @@ -359,7 +359,7 @@ stat

[Qemu-devel] [PATCH] target-mips: Remove semicolon from macro definition

2012-12-22 Thread Stefan Weil
Macro RESTORE_FLUSH_MODE is similar to RESTORE_ROUNDING_MODE but included a semicolon. The code which uses that macro also includes a semicolon, so the result was an empty statement. Remove the superfluous semicolon from the macro definition. Signed-off-by: Stefan Weil --- Note: After the pat

Re: [Qemu-devel] [PULL] QOM CPUState patch queue 2012-12-19

2012-12-22 Thread Blue Swirl
On Wed, Dec 19, 2012 at 1:36 PM, Andreas Färber wrote: > Hello, > > This is my current QOM CPU patch queue. Please pull. It conflicts with HEAD, please rebase. > > It includes: > * CPU subclasses for target-alpha, > * CPUListState cleanup (basis for all subsequent subclasses series), > * more st

[Qemu-devel] [PATCH] fix bits 39:32 of the final physical address when using 4M page

2012-12-22 Thread Wen Congyang
((pde & 0x1fe000) << 19) is the bits 39:32 of the final physical address, and we shouldn't use unit32_t to calculate it. Convert the type to hwaddr to fix this problem. Signed-off-by: Wen Congyang --- target-i386/arch_memory_mapping.c | 11 --- 1 file changed, 8 insertions(+), 3 deletio