Re: [Qemu-devel] [RESEND][PATCH 1/2] Fix USB mouse Set_Protocol behavior

2011-05-29 Thread Gerd Hoffmann
On 05/28/11 17:47, Kevin O'Connor wrote: The QEMU USB mouse claims to support the "boot" protocol (bInterfaceSubClass is 1). However, the mouse rejects the Set_Protocol command. The qemu mouse does support the "boot" protocol specification, so a simple fix is to enable the Set_Protocol request.

[Qemu-devel] Hello Would You Like To Earn

2011-05-29 Thread Sharon . Burns
Hello qemu-devel Would you like to earn an extra $200 everyday?, for just 45 minutes work? You could quit your job and make double the money at home working for yourself. visit->http:tinyurl.com/3brnlpx Regards, Sharon Burns Survey Human Resources Dept.

[Qemu-devel] [RFC]QEMU disk I/O limits

2011-05-29 Thread Zhi Yong Wu
Hello, all, I have prepared to work on a feature called "Disk I/O limits" for qemu-kvm projeect. This feature will enable the user to cap disk I/O amount performed by a VM.It is important for some storage resources to be shared among multi-VMs. As you've known, if some of VMs are doing

[Qemu-devel] Hello Would You Like To Earn

2011-05-29 Thread Sharon . Burns
Hello qemu-devel Would you like to earn an extra $200 everyday?, for just 45 minutes work? You could quit your job and make double the money at home working for yourself. visit->http:tinyurl.com/3brnlpx Regards, Sharon Burns Survey Human Resources Dept.

[Qemu-devel] Hello Would You Like To Earn

2011-05-29 Thread Sharon . Burns
Hello qemu-devel Would you like to earn an extra $200 everyday?, for just 45 minutes work? You could quit your job and make double the money at home working for yourself. visit->http:tinyurl.com/3brnlpx Regards, Sharon Burns Survey Human Resources Dept.

Re: [Qemu-devel] [PATCH uq/master V2] kvm: Add CPUID support for VIA CPU

2011-05-29 Thread BrillyWu
Hi, Jan > > > @@ -855,6 +870,8 @@ int cpu_x86_register (CPUX86State *env, > > env->cpuid_xlevel = def->xlevel; > > env->cpuid_kvm_features = def->kvm_features; > > env->cpuid_svm_features = def->svm_features; > > +env->cpuid_ext4_features = def->ext4_features; > > +env->cpui

Re: [Qemu-devel] [PATCH 1/3] spapr: allow creating devices with -device

2011-05-29 Thread David Gibson
On Wed, May 25, 2011 at 09:29:26AM +0200, Paolo Bonzini wrote: > On 05/25/2011 12:12 AM, David Gibson wrote: > >>@@ -602,6 +604,8 @@ static int spapr_vio_busdev_init(DeviceState *qdev, > >>DeviceInfo *qinfo) > >> } > >> > >> dev->qdev.id = id; > >>+dev->vio_irq_num = bus->irq++; > >>

Re: [Qemu-devel] [PATCH 3/3] spapr: make irq customizable via qdev

2011-05-29 Thread David Gibson
On Wed, May 25, 2011 at 05:13:40PM +0200, Markus Armbruster wrote: > David Gibson writes: > > > On Tue, May 24, 2011 at 01:45:07PM +0200, Paolo Bonzini wrote: > >> Signed-off-by: Paolo Bonzini > >> Cc: Alexander Graf > >> Cc: David Gibson > >> --- > >> hw/spapr_vio.c |8 +++- > >> 1 f

Re: [Qemu-devel] [PATCH 3/3] spapr: make irq customizable via qdev

2011-05-29 Thread David Gibson
On Wed, May 25, 2011 at 09:30:22AM +0200, Paolo Bonzini wrote: > On 05/25/2011 12:14 AM, David Gibson wrote: > >I don't see what the point of this is. Absolute irq numbers have no > >special meaning in the XICS context, and the guest kernel will remap > >them to virtual irqs anyway. > > It allows

Re: [Qemu-devel] [PATCH V2 1/3] Darwin: Fix incorrect check for fdatasync() in configure

2011-05-29 Thread Alexandre Raymond
I didn't notice anything broken. I just stumbled upon this bug while reviewing the code. Alexandre On Sun, May 29, 2011 at 8:09 PM, Alexandre Raymond wrote: > Sure, I'm fine with that. I wasn't sure how much detail you actually > wanted in this commit message :) > > Alexandre > > On Sun, May 29,

Re: [Qemu-devel] [patch 1/7] add migration_active function

2011-05-29 Thread Jes Sorensen
On 05/24/11 06:31, Marcelo Tosatti wrote: > To query whether migration is active. > > Signed-off-by: Marcelo Tosatti ACK Jes

Re: [Qemu-devel] [PATCH V2 1/3] Darwin: Fix incorrect check for fdatasync() in configure

2011-05-29 Thread Alexandre Raymond
Sure, I'm fine with that. I wasn't sure how much detail you actually wanted in this commit message :) Alexandre On Sun, May 29, 2011 at 7:36 PM, Andreas Färber wrote: > Am 30.05.2011 um 00:22 schrieb Alexandre Raymond: > >> Under darwin (OS X 10.6.7), a symbol exists for the fdatasync() method >

Re: [Qemu-devel] [PATCH] cocoa: Provide central qemu_main() prototype

2011-05-29 Thread Alexandre Raymond
Hi Andreas, Just thinking out loud here : wouldn't it make more sense to put the main() of each gui framework directly in its corresponding file and select the right one in the makefile using the configure options? so you'd have -no gui -> ui/no_gui.c:main() -> qemu_main()=== compile with no_

Re: [Qemu-devel] [PATCH V2 1/3] Darwin: Fix incorrect check for fdatasync() in configure

2011-05-29 Thread Andreas Färber
Am 30.05.2011 um 00:22 schrieb Alexandre Raymond: Under darwin (OS X 10.6.7), a symbol exists for the fdatasync() method but it is not supported because _POSIX_SYNCHRONIZED_IO is set to '-1'. Question: How did you notice? Did anything break that we could mention, or did you just review the c

Re: [Qemu-devel] [PATCH V2 2/3] Cocoa: avoid displaying window when command-line contains '-h' or '-help'

2011-05-29 Thread Alexandre Raymond
I agree that this is not the best way to handle all cases not requiring a GUI. However, due to the current structure of the code, it was a simple way to cover a very common case without having to refactor the whole cocoa code. Alexandre On Sun, May 29, 2011 at 6:32 PM, Peter Maydell wrote: > On

[Qemu-devel] [PATCH] Cocoa: avoid warning related to multiple method definitions

2011-05-29 Thread Alexandre Raymond
This fix forces a message to be sent to the handleEvent method of the QemuCocoaView class instead of letting the system determine the right method. This is caused by the fact that the cocoaView variable is a generic 'id'. 8< ui/cocoa.m: In function ‘cocoa_refresh’: ui/cocoa.m:997: warning

Re: [Qemu-devel] [PATCH V2 2/3] Cocoa: avoid displaying window when command-line contains '-h' or '-help'

2011-05-29 Thread Peter Maydell
On 29 May 2011 23:22, Alexandre Raymond wrote: > diff --git a/ui/cocoa.m b/ui/cocoa.m > index 1ff1ac6..e1312d3 100644 > --- a/ui/cocoa.m > +++ b/ui/cocoa.m > @@ -872,7 +872,8 @@ int main (int argc, const char * argv[]) { >             if (opt[1] == '-') { >                 opt++; >             } >

Re: [Qemu-devel] Add option to disable Cocoa on Mac OS X

2011-05-29 Thread Ben Leslie
On Mon, May 30, 2011 at 02:17, Andreas Färber wrote: > Am 16.05.2011 um 12:57 schrieb Ben Leslie: > >> On Wed, May 11, 2011 at 23:54, Peter Maydell >> wrote: >>> >>> On 7 May 2011 12:40, Alexander Graf wrote: So I suppose the only thing missing is a --disable-cocoa option, yup. >>> >>>

[Qemu-devel] [PATCH V2 0/3] Fix compilation issues under darwin

2011-05-29 Thread Alexandre Raymond
I have rebased this series on top of afaerber/cocoa-for-upstream, since Andreas will be handling it. Changes since V1: * reword commit message of patch 1 * add '-help' cli switch to patch 2 * remove patch 3; has already been taken into account by Andreas * remove patch 4; will be fixed by Andreas

[Qemu-devel] [PATCH V2 2/3] Cocoa: avoid displaying window when command-line contains '-h' or '-help'

2011-05-29 Thread Alexandre Raymond
There was already a check in place to avoid displaying a window in certain modes such as vnc, nographic or curses. Add a check for '-h' and '-help' to avoid displaying a window for a split- second before showing the usage information. Signed-off-by: Alexandre Raymond --- ui/cocoa.m |3 ++-

[Qemu-devel] [PATCH V2 3/3] Remove warning in printf due to type mismatch

2011-05-29 Thread Alexandre Raymond
8< qemu/target-lm32/translate.c: In function ‘gen_intermediate_code_internal’: qemu/target-lm32/translate.c:1135: warning: format ‘%zd’ expects type ‘signed size_t’, but argument 4 has type ‘int’ 8< Both gen_opc_ptr and gen_opc_buf are "uint16_t *". The difference between pointers

[Qemu-devel] [PATCH V2 1/3] Darwin: Fix incorrect check for fdatasync() in configure

2011-05-29 Thread Alexandre Raymond
Under darwin (OS X 10.6.7), a symbol exists for the fdatasync() method but it is not supported because _POSIX_SYNCHRONIZED_IO is set to '-1'. Enable fdatasync() only if _POSIX_SYNCHRONIZED_IO is '>0', as per The Open Group Base Specifications Issue 7. Signed-off-by: Alexandre Raymond --- config

Re: [Qemu-devel] [PATCH] host-pcc: enable building with -m32 or -m64

2011-05-29 Thread Stefan Berger
On 05/29/2011 05:09 PM, Andreas Färber wrote: Am 27.05.2011 um 00:25 schrieb Stefan Berger: On 05/26/2011 05:24 PM, Andreas Färber wrote: Am 26.05.2011 um 22:31 schrieb Stefan Berger: On 05/26/2011 04:20 PM, Andreas Färber wrote: Am 26.05.2011 um 21:00 schrieb Stefan Berger: With the below

Re: [Qemu-devel] [PATCH] #include cleanliness

2011-05-29 Thread Anthony Liguori
On 05/19/2011 09:17 AM, Avi Kivity wrote: My mother always told me to explicitly #include any headers need to compile a file, instead of relying on other #includes to bring them in. This patch fixes up targphys.h and cpu-common.h in this regard. Signed-off-by: Avi Kivity --- cpu-common.h |

[Qemu-devel] [PATCH] Use SIGIO with caution

2011-05-29 Thread Andreas Färber
BeOS and Haiku don't define SIGIO. When undefined, it won't arrive and doesn't need to be blocked. Signed-off-by: Andreas Färber --- cpus.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/cpus.c b/cpus.c index 1fc34b7..42af291 100644 --- a/cpus.c +++ b/cpus.c @@ -

Re: [Qemu-devel] [PATCH] host-pcc: enable building with -m32 or -m64

2011-05-29 Thread Andreas Färber
Am 27.05.2011 um 00:25 schrieb Stefan Berger: On 05/26/2011 05:24 PM, Andreas Färber wrote: Am 26.05.2011 um 22:31 schrieb Stefan Berger: On 05/26/2011 04:20 PM, Andreas Färber wrote: Am 26.05.2011 um 21:00 schrieb Stefan Berger: With the below patch I can build either ppc (-m32) or ppc64 (

[Qemu-devel] [PATCH] cocoa: Provide central qemu_main() prototype

2011-05-29 Thread Andreas Färber
This fixes a missing prototype warning in vl.c and obsoletes the prototype in cocoa.m. Adjust callers in cocoa.m to supply third argument, which is currently only used on Linux/ppc. The prototype is designed so that it could be shared with SDL and other frontends, if desired. Cc: Alexandre Raymon

Re: [Qemu-devel] [PATCH 1/6] Fix incorrect check for fdatasync() in configure

2011-05-29 Thread Andreas Färber
Hi Alexandre, Am 29.05.2011 um 17:46 schrieb Alexandre Raymond: According to this excerpt from The Open Group Base Specifications Issue 6 (http://pubs.opengroup.org/onlinepubs/009695399/basedefs/unistd.h.html ), '>0' indeed means that the functionality is implemented and can be used. 8<--

Re: [Qemu-devel] [PATCH 1/3] Add ppc_init_cacheline_sizes() function for OpenBSD.

2011-05-29 Thread Brad
On 26/05/11 8:20 PM, malc wrote: On Thu, 26 May 2011, Brad wrote: On 26/05/11 9:15 AM, malc wrote: On Thu, 26 May 2011, Brad wrote: - Original message - On Wed, 25 May 2011, Brad wrote: Add ppc_init_cacheline_sizes() function for OpenBSD to fix compilation of PowerPC host support

Re: [Qemu-devel] [RFC] darwin: work around sigfd

2011-05-29 Thread Andreas Färber
Am 08.05.2011 um 11:15 schrieb Andreas Färber: Am 05.05.2011 um 15:15 schrieb Alexander Graf: On 05.05.2011, at 14:56, Paolo Bonzini wrote: On 05/05/2011 11:36 AM, Alexander Graf wrote: When running qemu-system on Darwin, the vcpu processes guest code, but I don't get to see anything on t

Re: [Qemu-devel] [PATCH] #include cleanliness

2011-05-29 Thread Avi Kivity
On 05/19/2011 05:17 PM, Avi Kivity wrote: My mother always told me to explicitly #include any headers need to compile a file, instead of relying on other #includes to bring them in. This patch fixes up targphys.h and cpu-common.h in this regard. Can some qemu maintainer review this patch? Ste

Re: [Qemu-devel] Add option to disable Cocoa on Mac OS X

2011-05-29 Thread Andreas Färber
Am 16.05.2011 um 12:57 schrieb Ben Leslie: On Wed, May 11, 2011 at 23:54, Peter Maydell wrote: On 7 May 2011 12:40, Alexander Graf wrote: So I suppose the only thing missing is a --disable-cocoa option, yup. I've just noticed that some of the code in block/raw-posix.c uses the CONFIG_COC

Re: [Qemu-devel] [Bug 726962] Re: darwin user i386 no such directory

2011-05-29 Thread Andreas Färber
Am 28.05.2011 um 17:40 schrieb Karl-Michael Schindler: Am 28.05.2011 um 16:48 schrieb Andreas Färber: If you're willing to invest time on this, have a look at: http://repo.or.cz/w/qemu/afaerber.git/shortlog/refs/heads/darwin-user [...] Don't bother with 0.14.1, it'll need to be rebased again

Re: [Qemu-devel] [PATCH 1/6] Fix incorrect check for fdatasync() in configure

2011-05-29 Thread Alexandre Raymond
Hi Andreas, According to this excerpt from The Open Group Base Specifications Issue 6 (http://pubs.opengroup.org/onlinepubs/009695399/basedefs/unistd.h.html), '>0' indeed means that the functionality is implemented and can be used. 8< The following symbolic constants, if defined in , shall

[Qemu-devel] [Bug 788881] Re: i386-bsd-user and similar don't build on Mac OS X

2011-05-29 Thread Andreas Färber
** Summary changed: - i386-bsd-user and similar crash on Mac OS X + i386-bsd-user and similar don't build on Mac OS X -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/71 Title: i386-bsd-user and

Re: [Qemu-devel] [PATCH 4/6] Fix missing prototype under cocoa for qemu_main

2011-05-29 Thread Andreas Färber
Am 27.05.2011 um 19:22 schrieb Alexandre Raymond: The following error message was encountered when compiling with cocoa support because qemu_main did not have a prototype. -8<- qemu/vl.c:2037: warning: no previous prototype for ‘qemu_main’ -8<- Add its prototype in the COCOA if

Re: [Qemu-devel] [PATCH 3/6] Fix compilation warning due to incorrectly specified type

2011-05-29 Thread Andreas Färber
Am 27.05.2011 um 19:42 schrieb Stefan Weil: Am 27.05.2011 19:22, schrieb Alexandre Raymond: In audio/coreaudio.c, a variable named "str" was assigned "const char" values, which resulted in the following warnings: -8<- audio/coreaudio.c: In function ‘coreaudio_logstatus’: audio/coreau

Re: [Qemu-devel] [PATCH 1/6] Fix incorrect check for fdatasync() in configure

2011-05-29 Thread Andreas Färber
Am 27.05.2011 um 19:22 schrieb Alexandre Raymond: For some reason, darwin provides a symbol for fdatasync(), but doesn't officially support it. The manpage for fdatasync on Linux states the following: "On POSIX systems on which fdatasync() is available, _POSIX_SYNCHRONIZED_IO is defined in

Re: [Qemu-devel] Webcams under KVM and Linux

2011-05-29 Thread Peter Baitz
Hello Natalia and Andreas, Thank you for the replies and suggestions.  I will lookup V4L.  Natalia, So your patch creates a generic webcam under KVM/Qemu to allow many webcams to work? My only concern is the following:   I use specific Philips webcams, and one in particular has a long exposu

Re: [Qemu-devel] [Bug 789831] [NEW] kvm locks up when out of disk space

2011-05-29 Thread Michal Suchanek
On 29 May 2011 13:33, Stefan Hajnoczi wrote: > On Sun, May 29, 2011 at 11:48 AM, Michal Suchanek wrote: >> Public bug reported: >> >> Running a VM using raw sparse disk image on kvm 0.14 on Debian. >> >> When disk writes use up all disk space kvm locks up. >> >> if it cannot handle this situation

Re: [Qemu-devel] Webcams under KVM and Linux

2011-05-29 Thread Natalia Portillo
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 More concretely search for patches sent by me. Even when EHCI is finished still is the problem of isochronous transfer not working well because of timing issues on QEMU. My patches overcome the need for ISO transfer and EHCI controllers completely

Re: [Qemu-devel] Webcams under KVM and Linux

2011-05-29 Thread Andreas Färber
Hello, Am 29.05.2011 um 15:01 schrieb Peter Baitz: [...] You should notice that it is not just adding ISOC and USB 2.0 support, but also to prioritize the processing of isoc packets on a virtual environment, and to provide enough throughput for video streams [...] Please check the qemu

Re: [Qemu-devel] [PATCH] Fix libfdt warnings on Darwin

2011-05-29 Thread Andreas Färber
Am 28.05.2011 um 16:01 schrieb Andreas Färber: Building with libfdt results in the following warnings on Mac OS X: CCppc-softmmu/device_tree.o In file included from /Users/andreas/QEMU/latest64/include/libfdt.h: 54, from /Users/andreas/QEMU/qemu/device_tree.c:26: /Users/a

[Qemu-devel] [PATCH] Fixed BASEPRI, BASEPRI_MAX, and FAULTMASK access.

2011-05-29 Thread y
From: Sebastian Huber According to "ARMv7-M Architecture Reference Manual" issue D section "B5.2.3 MRS" and "B5.2.3 MSR". Signed-off-by: Sebastian Huber --- target-arm/helper.c | 24 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/target-arm/helper.c

[Qemu-devel] [ARM] Incomplete check for accept4

2011-05-29 Thread Andreas Färber
Hello, The configure test for accept4() fails on armv7l host. # check if accept4 is there accept4=no cat > $TMPC << EOF #include #include int main(void) { accept4(0, NULL, NULL, SOCK_CLOEXEC); return 0; } EOF if compile_prog "" "" ; then accept4=yes fi It succeeds and sets CONFIG_A

[Qemu-devel] VMDK development plan for Summer of Code 2011

2011-05-29 Thread Fam Zheng
Hi all, As a project of Google Summer of Code 2011, I'm now working on improving VMDK image support. There are many subformats of VMDK virtual disk, some of which have separate descriptor file and others don't, some allocate space at once and some others grow dynamically, some have optional data c

[Qemu-devel] Webcams under KVM and Linux

2011-05-29 Thread Peter Baitz
Hello, I had asked a question of some of your Sourceforge contacts for KVM - Qemu on addition of webcam support, specifically the following - and was given the following interesting answer.   I would indeed like to hear more about what the project is adding to KVM - Qemu to allow video to work

Re: [Qemu-devel] [PATCH] s390x: free tmp explicitly in every opcode for disas_a5()

2011-05-29 Thread Andreas Färber
Am 26.05.2011 um 21:53 schrieb Alexander Graf: The disas_a5() function provided a TCG tmp variable which was populated by the respective opcode implementations, but freed at the end of the function in generic code. That makes it really hard for code review, so let's move the freeing to the sa

Re: [Qemu-devel] [Bug 739785] Re: qemu-i386 user mode on ARMv5 host fails (bash: fork: Invalid argument)

2011-05-29 Thread Peter Maydell
On 29 May 2011 11:19, Andreas Färber wrote: > Am 29.03.2011 um 00:09 schrieb Peter Maydell: >> Short answer: looks like QEMU doesn't currently work on ARMv5 hosts >> (although ARMv7 are fine). I'll look into this if I can manage to >> scare up some suitable hardware. > > I noticed that configure p

Re: [Qemu-devel] [PATCH 06/11] target-i386: use floatx80 constants in helper_fld*_ST0()

2011-05-29 Thread Andreas Färber
Am 21.05.11 11:35, schrieb Andreas Färber: Am 20.05.2011 um 12:32 schrieb Peter Maydell: On 15 May 2011 15:13, Aurelien Jarno wrote: Instead of using a table which doesn't correspond to anything from physical in the CPU, use directly the constants in helper_fld*_ST0(). Actually I rather sus

[Qemu-devel] [PATCH 2/2] Fix spelling in comment (additon -> addition)

2011-05-29 Thread Stefan Hajnoczi
From: Stefan Weil Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- tcg/tcg.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tcg/tcg.h b/tcg/tcg.h index 2b985ac..746378a 100644 --- a/tcg/tcg.h +++ b/tcg/tcg.h @@ -129,7 +129,7 @@ typedef tcg_target_ulong T

[Qemu-devel] [PATCH 1/2] pflash_cfi02: Fix a typo in debug code (TARGET_FMT_pld -> TARGET_FMT_plx)

2011-05-29 Thread Stefan Hajnoczi
From: Stefan Weil Thanks to Tobias Hoffmann for this patch. Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- hw/pflash_cfi02.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/hw/pflash_cfi02.c b/hw/pflash_cfi02.c index 8fdafe6..725cd1e 100644 --- a/hw/p

[Qemu-devel] [PULL] Trivial patches for May 22 to May 29 2011

2011-05-29 Thread Stefan Hajnoczi
The following changes since commit 2eb9f241824d000fcd90bd7f4b49e40b88e62975: bitbang_i2c: Fix spurious slave read after NACK (2011-05-28 16:20:43 +0200) are available in the git repository at: ssh://repo.or.cz/srv/git/qemu/stefanha.git trivial-patches Stefan Weil (2): pflash_cfi02: Fix

[Qemu-devel] [Bug 789831] Re: kvm locks up when out of disk space

2011-05-29 Thread Michael Tokarev
I already replied to the OP in the Debian bug tracking system, and closed his bug there, see http://bugs.debian.org/628152 . ** Bug watch added: Debian Bug tracker #628152 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628152 ** Also affects: qemu-kvm (Debian) via http://bugs.debian.org/c

Re: [Qemu-devel] [Bug 789831] [NEW] kvm locks up when out of disk space

2011-05-29 Thread Stefan Hajnoczi
On Sun, May 29, 2011 at 11:48 AM, Michal Suchanek wrote: > Public bug reported: > > Running a VM using raw sparse disk image on kvm 0.14 on Debian. > > When disk writes use up all disk space kvm locks up. > > if it cannot handle this situation gracefully (eg suspend the VM until > space becomes av

Re: [Qemu-devel] [PATCH v2 2/9] target-mips/gdbstub: remove old CONFIG_SOFTFLOAT #ifndef

2011-05-29 Thread Andreas Färber
Am 23.05.2011 um 23:42 schrieb Aurelien Jarno: target-mips has been switched to softfloat only long ago, but a #ifndef CONFIG_SOFTFLOAT has been forgotten. Remove it. Signed-off-by: Aurelien Jarno Reviewed-by: Andreas Färber --- gdbstub.c |4 1 files changed, 0 insertions(+), 4 de

Re: [Qemu-devel] [PATCH v2 1/9] target-ppc: remove old CONFIG_SOFTFLOAT #ifdef

2011-05-29 Thread Andreas Färber
Am 23.05.2011 um 23:42 schrieb Aurelien Jarno: target-ppc has been switched to softfloat only long ago, but a few #ifdef CONFIG_SOFTFLOAT have been forgotten. Remove them. Cc: Alexander Graf Reviewed-by: Peter Maydell Signed-off-by: Aurelien Jarno Only removes now-useless #ifdefs and dead

[Qemu-devel] [Bug 789831] [NEW] kvm locks up when out of disk space

2011-05-29 Thread Michal Suchanek
Public bug reported: Running a VM using raw sparse disk image on kvm 0.14 on Debian. When disk writes use up all disk space kvm locks up. if it cannot handle this situation gracefully (eg suspend the VM until space becomes available) it should at the very least report an error and exit, not keep

Re: [Qemu-devel] [PATCH v2 6/9] target-i386: use floatx80 constants in helper_fld*_ST0()

2011-05-29 Thread Andreas Färber
Am 23.05.2011 um 23:42 schrieb Aurelien Jarno: Instead of using a table which doesn't correspond to anything from physical in the CPU, use directly the constants in helper_fld*_ST0(). Cc: Andreas Färber Signed-off-by: Aurelien Jarno Tested-by: Andreas Färber I'm still wondering *why* the

Re: [Qemu-devel] [Bug 739785] Re: qemu-i386 user mode on ARMv5 host fails (bash: fork: Invalid argument)

2011-05-29 Thread Andreas Färber
Peter, Am 29.03.2011 um 00:09 schrieb Peter Maydell: Short answer: looks like QEMU doesn't currently work on ARMv5 hosts (although ARMv7 are fine). I'll look into this if I can manage to scare up some suitable hardware. I noticed that configure prints any ARM host as "armv4l". As an interim

Re: [Qemu-devel] Booting custom kernel in qemu

2011-05-29 Thread Andreas Färber
Am 28.05.2011 um 22:05 schrieb Apelete Seketeli: On 27-May-11, Amit Shah wrote: On (Thu) 26 May 2011 [21:59:01], Apelete Seketeli wrote: I wanted to launch the kernel in a terminal for practical purposes, so I tried: qemu -kernel bzImage -append console=ttyS0 Add -serial stdio to get thos

Re: [Qemu-devel] [patch 7/7] do not allow migration if block copy in progress

2011-05-29 Thread Avi Kivity
On 05/24/2011 12:31 AM, Marcelo Tosatti wrote: Signed-off-by: Marcelo Tosatti Index: qemu-block-copy/migration.c === --- qemu-block-copy.orig/migration.c +++ qemu-block-copy/migration.c @@ -19,6 +19,7 @@ #include "block.h" #incl

Re: [Qemu-devel] [patch 6/7] QEMU live block copy

2011-05-29 Thread Avi Kivity
On 05/24/2011 12:31 AM, Marcelo Tosatti wrote: Support live image copy + switch. That is, copy an image backing a guest hard disk to a destination image (destination image must be created separately), and switch to this copy. Command syntax: block_copy device filename [-i] -- live block copy de

Re: [Qemu-devel] [patch 2/7] Add blkmirror block driver

2011-05-29 Thread Avi Kivity
On 05/24/2011 12:31 AM, Marcelo Tosatti wrote: Mirrored writes are used by live block copy. + +typedef struct { +BlockDriverState *bs[2]; +} BdrvMirrorState; Can be generalized one day to N. + +/* Valid blkmirror filenames look like blkmirror:path/to/image1:path/to/image2 */ +static in