Re: [Qemu-devel] [PATCH] monitor: avoid moving cursor during "mouse_button" command

2011-05-01 Thread Gerd Hoffmann
Hi, The problem is that almost all input code (in absolute mode) keeps track of the position itself - monitor was the exception. So a sequence like the following: 1. Move cursor in SDL 2. Use mouse_move in monitor 3. Use mouse_button 2 in monitor 4. Click mouse in SDL works ok up to step 3, b

[Qemu-devel] Unsubscription Confirmation

2011-05-01 Thread RealEstateMalaysian.com
Thank you for subscribing. You have now unsubscribed and no more messages will be sent.

Re: [Qemu-devel] [PATCH 1/2] ppc64: Fix out-of-tree builds

2011-05-01 Thread David Gibson
On Sun, May 01, 2011 at 06:23:55PM +0200, Andreas Färber wrote: > On ppc64 host, recursion into pc-bios/spapr-rtas/ fails for > out-of-tree builds. Add missing dir and symlink. Ah, thank you. > Cc: David Gibson > Cc: Alexander Graf > Signed-off-by: Andreas Färber > --- > configure |2 ++ >

[Qemu-devel] implementing ARM926EJ-S support

2011-05-01 Thread Alessandro
Hi all! I am an experencied QEMU user. Although I am a good C/C++ programmer, I have only theoretic/basic knowledge about virtual machines programming. For study, I'm thinking to write a simple VM that can simulate an ARM SoC based on ARM926EJ-S core. I have basically two choice: 1- build all

[Qemu-devel] [PATCH] multiboot: Support commas in module parameters

2011-05-01 Thread Adam Lackorzynski
Support commas in the parameter list of multiboot modules, by using double commas (via get_opt_value()). Signed-off-by: Adam Lackorzynski --- hw/multiboot.c | 18 +- 1 files changed, 9 insertions(+), 9 deletions(-) diff --git a/hw/multiboot.c b/hw/multiboot.c index 394ed01..7d

Re: [Qemu-devel] Build breakage on OpenSolaris - softfloat

2011-05-01 Thread Andreas Färber
Andreas Färber schrieb: CCi386-softmmu/op_helper.o /export/home/andreas/QEMU/qemu/target-i386/op_helper.c:110: error: initializer element is not constant /export/home/andreas/QEMU/qemu/target-i386/op_helper.c:110: error: (near initialization for `f15rk[0]') /export/home/andreas/QEMU/qemu/ta

Re: [Qemu-devel] [PATCH 0/8] cpu interrupt cleanup

2011-05-01 Thread Jan Kiszka
On 2011-05-01 16:59, Richard Henderson wrote: > On 05/01/2011 01:18 AM, Jan Kiszka wrote: >> On 2011-05-01 00:36, Richard Henderson wrote: >>> Also, the i386 port defines a CPU_TARGET_MCE, checked by the kvm code, >>> but as far as I can tell that bit is never set. I've left that alone >>> for now

Re: [Qemu-devel] [PATCH] multiboot: set boot_device to first partition

2011-05-01 Thread Stefan Hajnoczi
On Thu, Apr 28, 2011 at 3:11 PM, Arun Thomas wrote: > The multiboot info struct's 'boot_device' field has 'part1' set to 0x01, which > maps to the second primary partition. To specify the first primary partition, > 'part1' should be set to 0x00, since partition numbers start from zero > according

[Qemu-devel] Reminder about your invitation from Zhai Edwin

2011-05-01 Thread Zhai Edwin (LinkedIn Invitations)
LinkedIn This invitation is awaiting your response: From Zhai Edwin -- (c) 2011, LinkedIn Corporation

Re: [Qemu-devel] [PATCH 1/2] ppc64: Fix out-of-tree builds

2011-05-01 Thread Andreas Färber
Someone on Linux should check if a similar patch is necessary for roms/ SLOF/: Am 01.05.2011 um 18:23 schrieb Andreas Färber: diff --git a/configure b/configure index 6f75e2e..491f77a 100755 --- a/configure +++ b/configure @@ -3457,11 +3457,13 @@ done # for target in $targets # build tree in

[Qemu-devel] [PATCH 1/2] ppc64: Fix out-of-tree builds

2011-05-01 Thread Andreas Färber
On ppc64 host, recursion into pc-bios/spapr-rtas/ fails for out-of-tree builds. Add missing dir and symlink. Cc: David Gibson Cc: Alexander Graf Signed-off-by: Andreas Färber --- configure |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 6f7

[Qemu-devel] [PATCH 2/2] ppc64: Don't try to build sPAPR RTAS on Darwin

2011-05-01 Thread Andreas Färber
The Darwin assembler fails to build it. Cc: David Gibson Cc: Alexander Graf Signed-off-by: Andreas Färber --- configure |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure b/configure index 491f77a..1f2485a 100755 --- a/configure +++ b/configure @@ -2540,7 +2540

[Qemu-devel] Build breakage on OpenSolaris - softfloat

2011-05-01 Thread Andreas Färber
Hello, On OpenSolaris amd64 I'm seeing the following build failure: CCi386-softmmu/op_helper.o /export/home/andreas/QEMU/qemu/target-i386/op_helper.c:110: error: initializer element is not constant /export/home/andreas/QEMU/qemu/target-i386/op_helper.c:110: error: (near initialization for

Re: [Qemu-devel] [PATCH 0/8] cpu interrupt cleanup

2011-05-01 Thread Richard Henderson
On 05/01/2011 01:18 AM, Jan Kiszka wrote: > On 2011-05-01 00:36, Richard Henderson wrote: >> Also, the i386 port defines a CPU_TARGET_MCE, checked by the kvm code, >> but as far as I can tell that bit is never set. I've left that alone >> for now. > > That rather looks like a ghost. Can you name

Re: [Qemu-devel] [PATCH] Fix phys memory client - pass guest physical address not region offset

2011-05-01 Thread Michael S. Tsirkin
On Fri, Apr 29, 2011 at 06:31:03PM +0200, Jan Kiszka wrote: > On 2011-04-29 18:20, Alex Williamson wrote: > > On Fri, 2011-04-29 at 18:07 +0200, Jan Kiszka wrote: > >> On 2011-04-29 17:55, Alex Williamson wrote: > >>> On Fri, 2011-04-29 at 17:45 +0200, Jan Kiszka wrote: > On 2011-04-29 17:38,

Re: [Qemu-devel] [PATCH 0/8] cpu interrupt cleanup

2011-05-01 Thread Jan Kiszka
On 2011-05-01 00:36, Richard Henderson wrote: > Also, the i386 port defines a CPU_TARGET_MCE, checked by the kvm code, > but as far as I can tell that bit is never set. I've left that alone > for now. That rather looks like a ghost. Can you name some hashes, files, and lines that should contain t

Re: [Qemu-devel] [PATCH] sparc64: fix wrpstate and wrtl on delay slot

2011-05-01 Thread Blue Swirl
On Sat, Apr 30, 2011 at 10:32 PM, Igor Kovalenko wrote: > On Sat, Apr 30, 2011 at 7:42 PM, Blue Swirl wrote: >> Use TCG local to work around TCG register flush due to a branch. >> >> Thanks to Artyom Tarasenko, Igor Kovalenko and Aurelien Jarno. >> >> Signed-off-by: Blue Swirl >> --- >> I analyz