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.
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.
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
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.
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.
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
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++;
> >>
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
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
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,
On 05/24/11 06:31, Marcelo Tosatti wrote:
> To query whether migration is active.
>
> Signed-off-by: Marcelo Tosatti
ACK
Jes
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
>
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_
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
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
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
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++;
> }
>
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.
>>>
>>>
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
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 ++-
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
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
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
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 |
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
@@ -
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 (
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
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<--
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
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
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
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
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
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
** 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
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
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
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
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
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
-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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
64 matches
Mail list logo