[Qemu-devel] current git master compile fails on Debian 4.0

2012-04-10 Thread Erik Rull
Hi all, on the current git master, I cannot compile any more. The error is: qapi/qmp-input-visitor.c: In function 'qmp_input_pop': qapi/qmp-input-visitor.c:92: error: 'GHashTableIter' undeclared (first use in this function) qapi/qmp-input-visitor.c:92: error: (Each undeclared identifier is repor

Re: [Qemu-devel] current git master compile fails on Debian 4.0

2012-04-10 Thread Erik Rull
On April 10, 2012 at 12:57 PM Michael Tokarev wrote: > 10.04.2012 14:32, Daniel P. Berrange wrote: > > On Tue, Apr 10, 2012 at 02:29:56PM +0400, Michael Tokarev wrote: > >> 10.04.2012 13:18, Erik Rull wrote: > >>> Hi all, > >>> > >>>

Re: [Qemu-devel] current git master compile fails on Debian 4.0

2012-04-10 Thread Erik Rull
On April 10, 2012 at 12:29 PM Paolo Bonzini wrote: > Il 10/04/2012 11:18, Erik Rull ha scritto: > > Hi all, > > > > on the current git master, I cannot compile any more. > > > > The error is: > > qapi/qmp-input-visitor.c: In function 'qmp_input_

[Qemu-devel] USB CD/DVD Drives on QEMU

2012-04-11 Thread Erik Rull
Hi all, I still have troubles using USB CD or DVD drives in QEMU. They get detected and work very often on Linux Guests, but Windows XP Guests seem not to be able to detect the drive completely. Now my question to all: Do you have a USB CD or DVD drive already attached to a Windows XP QEMU gu

Re: [Qemu-devel] [PATCH] qapi: g_hash_table_find() instead of GHashTableIter.

2012-04-17 Thread Erik Rull
key); > +} > +g_hash_table_unref(top_ht); > } > -g_hash_table_unref(qiv->stack[qiv->nb_stack - 1].h); > } > > -assert(qiv->nb_stack > 0); > qiv->nb_stack--; > } > > -- > 1.7.9.5 > > Acked-by: Erik Rull compiles on Debian 4.0 and starts on target system. Best regards, Erik

[Qemu-devel] [Bug 924943] Re: usb-host devices given by command line are routed incomplete to the guest

2012-02-20 Thread Erik Rull
Still present with the latest patch queue and update from the GIT master. -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/924943 Title: usb-host devices given by command line are routed incomplete to

[Qemu-devel] qemu assertion failed with usb on current git master!

2012-02-23 Thread Erik Rull
When running qemu with -device usb-host an assertion failed caused by attaching a new usb device to the host that gets routed to the guest. The assertion that fails is: qemu-system-x86_64: /home/erik/qemu/hw/usb.c:358 usb_packet_complete: Assertion 'p->state == USB_PACKET_QUEUED' failed. It was

[Qemu-devel] git bisect results was: qemu assertion failed with usb on current git master!

2012-02-23 Thread Erik Rull
Here the bisect results: db4be873d312576c6971da15a38e056017a406b8 is the first bad commit commit db4be873d312576c6971da15a38e056017a406b8 Author: Gerd Hoffmann Date: Thu Jan 12 14:26:13 2012 +0100 usb: maintain async packet list per endpoint Maintain a list of async packets per endp

Re: [Qemu-devel] qemu assertion failed with usb on current git master!

2012-02-23 Thread Erik Rull
Gerd Hoffmann wrote: On 02/23/12 12:38, Erik Rull wrote: When running qemu with -device usb-host an assertion failed caused by attaching a new usb device to the host that gets routed to the guest. The assertion that fails is: qemu-system-x86_64: /home/erik/qemu/hw/usb.c:358

Re: [Qemu-devel] qemu assertion failed with usb on current git master!

2012-02-27 Thread Erik Rull
On February 27, 2012 at 1:48 PM Gerd Hoffmann wrote: > >>> qemu-system-x86_64: /home/erik/qemu/hw/usb.c:358 usb_packet_complete: > >>> Assertion 'p->state == USB_PACKET_QUEUED' failed. > >> > >> Stacktrace? > >> What kind of device? > >> > > > Hi Gerd, > > > > attached the usb logger dump as r

Re: [Qemu-devel] qemu assertion failed with usb on current git master!

2012-02-27 Thread Erik Rull
Gerd Hoffmann wrote: Hi, I'm really sorry, but I don't understand what's happening - I copied the qemu executable on my target system before executing it, but gdb complains that the core file does not match the executable! But except the file paths they are identical. warning: core file m

Re: [Qemu-devel] qemu assertion failed with usb on current git master!

2012-02-28 Thread Erik Rull
On February 27, 2012 at 5:53 PM Erik Rull wrote: > Gerd Hoffmann wrote: > >Hi, > > > >> I'm really sorry, but I don't understand what's happening - I copied the > >> qemu executable on my target system before executing it, but gdb comp

Re: [Qemu-devel] [PATCH] usb: queue can have async packets too

2012-03-02 Thread Erik Rull
On February 28, 2012 at 3:36 PM Gerd Hoffmann wrote: > Signed-off-by: Gerd Hoffmann > --- > hw/usb.c |3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/hw/usb.c b/hw/usb.c > index 57fc5e3..fc41d62 100644 > --- a/hw/usb.c > +++ b/hw/usb.c > @@ -356,6 +356,9 @@ voi

Re: [Qemu-devel] [PATCH] usb: queue can have async packets too

2012-03-05 Thread Erik Rull
On March 2, 2012 at 3:15 PM Gerd Hoffmann wrote: > > But: This + the latest GIT master causes again my problems with the > > With or without this one: > > commit 5ca2358ac895139e624881c5b3bf3095d3cc4515 > Date: Wed Feb 29 09:11:00 2012 -0600 > > Merge remote-tracking branch 'kraxel/usb.3

Re: [Qemu-devel] [PATCH] usb: queue can have async packets too

2012-03-06 Thread Erik Rull
On March 5, 2012 at 11:22 AM Erik Rull wrote: > > > > On March 2, 2012 at 3:15 PM Gerd Hoffmann wrote: > > > > But: This + the latest GIT master causes again my problems with the > > > > With or without this one: > > > > commit 5ca2358ac895139

[Qemu-devel] New assertion failed for USB

2012-03-07 Thread Erik Rull
Hi Gerd, there are new assertion failed when plugging in a USB security dongle at guest runtime. They occur on the current GIT master + your async patch. /home/erik/qemu/hw/usb.c:352 usb_packet_complete: Assertion '((&ep->queue)->tqh_first) == p' failed. I got this only once and I'm currently n

Re: [Qemu-devel] New assertion failed for USB

2012-03-07 Thread Erik Rull
On March 7, 2012 at 12:30 PM Gerd Hoffmann wrote: > On 03/07/12 10:46, Erik Rull wrote: > > Hi Gerd, > > > > there are new assertion failed when plugging in a USB security dongle at > > guest runtime. > > They occur on the current GIT master + your async

[Qemu-devel] CPU assignment possiblities?

2011-07-05 Thread Erik Rull
Hi all, I want to assign multiple host cores to a VM that are then exposed there as only one virtual processor core. I want to maximize there the available computation power and the guest OS cannot handle SMP. And: How can I enable qemu to run on multiple host cores? I have a i7 HT enabled linux

Re: [Qemu-devel] [PATCH 6/7] usb-host: claim port

2011-08-25 Thread Erik Rull
Hi Gerd, is this related / the fix to my question regarding the recurring claimed messages? (See my mail dated 2011-08-21) Best regards, Erik Gerd Hoffmann wrote: When configured to pass through a specific host port (using hostbus and hostport properties), try to claim the port if support

[Qemu-devel] Pause / Stop Notification on Guest display?

2014-03-25 Thread Erik Rull
Hi all, I would like to provide a possiblity to show the operator that his vm is currently not alive, but paused / stopped. Currently, I see this only when accessing the qemu monitor console. Is there a possibility to expose this information to the guest display so that the operator does not n

[Qemu-devel] Missing guest clock-sync on Host clock change

2014-03-27 Thread Erik Rull
Hi all, I would like to have the guest "drifting" to a new set clock on the host. My problem is the following: - Host System (Linux) starts up, hwclock and kernel time are synced, guest starts up with -rtc clock=host,driftfix=slew (which I assume should fix any drift issue on ACPI compatible

Re: [Qemu-devel] Missing guest clock-sync on Host clock change

2014-03-27 Thread Erik Rull
Laszlo Ersek wrote: On 03/27/14 09:41, Erik Rull wrote: Hi all, I would like to have the guest "drifting" to a new set clock on the host. My problem is the following: - Host System (Linux) starts up, hwclock and kernel time are synced, guest starts up with -rtc clock=host,dri

[Qemu-devel] Replacing display contents on paused VMs causes only a short flicker

2014-04-15 Thread Erik Rull
Hi all, I try to replace the display content of a paused VM (to show the operator that it is actually paused and not usable), but it causes only a short flicker on the display instead of staying permanent. By routing an HMP based command to console.c I want to replace the display contents. I star

Re: [Qemu-devel] [ANNOUNCE] QEMU 1.7.0-rc2 is now available

2013-12-03 Thread Erik Rull
Anthony Liguori wrote: Hi, On behalf of the QEMU Team, I'd like to announce the availability of the third release candidate for the QEMU 1.7 release. This release is meant for testing purposes and should not be used in a production environment. http://wiki.qemu.org/download/qemu-1.7.0-rc2.tar.

[Qemu-devel] Windows 8 installation fails with qemu-1.6.1

2013-11-07 Thread Erik Rull
Hi all, when starting qemu (with or without kvm active) I get the following error code after having a few minutes a blue windows logo on a black background: Your PC needs to restart. Please hold down the power button. Error Code: 0x005C Parameters: 0x0110 0xFFD09BC8 0x0019 0xC0

Re: [Qemu-devel] Windows 8 installation fails with qemu-1.6.1

2013-11-11 Thread Erik Rull
Erik Rull wrote: Hi all, when starting qemu (with or without kvm active) I get the following error code after having a few minutes a blue windows logo on a black background: Your PC needs to restart. Please hold down the power button. Error Code: 0x005C Parameters: 0x0110 0xFFD09BC8

[Qemu-devel] Git Master does not allow ./configure => python error

2013-11-15 Thread Erik Rull
Hi all, the current git master of qemu fails on configure: (I did a fresh clone to prevent any side effects) erik@debian:~/tmp/qemu-test/qemu$ ./configure --prefix= --target-list=x86_64-softmmu --disable-vnc-png --disable-vnc-jpeg --disable-vnc-tls --disable-vnc-sasl  --audio-drv-list= --enable-s

Re: [Qemu-devel] Git Master does not allow ./configure => python error

2013-11-15 Thread Erik Rull
> On November 15, 2013 at 1:14 PM Stefan Hajnoczi wrote: > > > On Fri, Nov 15, 2013 at 11:16:17AM +0100, Erik Rull wrote: > > Hi all, > > > > the current git master of qemu fails on configure: (I did a fresh clone to > > prevent any side effects) >

[Qemu-devel] GIT master fails compilation for ACPI

2013-11-21 Thread Erik Rull
Hi all, when doing a git clone on the latest master, it fails compiling:   CC    x86_64-softmmu/memory_mapping.o   CC    x86_64-softmmu/dump.o   CC    x86_64-softmmu/xen-stub.o   CC    x86_64-softmmu/hw/i386/multiboot.o   CC    x86_64-softmmu/hw/i386/smbios.o   CC    x86_64-softmmu/hw/i386/pc.o  

Re: [Qemu-devel] [PATCH for-1.7 0/5] acpi unit-test: added tests

2013-11-21 Thread Erik Rull
Marcel Apfelbaum wrote: Added 2 tests: 1. Basic check of FACS table (missed on prev submission) 2. Compare DSDT and SSDT tables against expected values Test 2: - runs only if iasl is installed on the host machine. - the test plan: 1. Dumps the ACPI tables as AML on the disk. 2. R

Re: [Qemu-devel] [PATCH for-1.7 0/5] acpi unit-test: added tests

2013-11-21 Thread Erik Rull
Marcel Apfelbaum wrote: On Thu, 2013-11-21 at 22:20 +0100, Erik Rull wrote: Marcel Apfelbaum wrote: Added 2 tests: 1. Basic check of FACS table (missed on prev submission) 2. Compare DSDT and SSDT tables against expected values Test 2: - runs only if iasl is installed on the host

Re: [Qemu-devel] GIT master fails compilation for ACPI

2013-11-21 Thread Erik Rull
Hu Tao wrote: On Thu, Nov 21, 2013 at 09:06:43AM +0100, Erik Rull wrote: Hi all, when doing a git clone on the latest master, it fails compiling: CCx86_64-softmmu/memory_mapping.o CCx86_64-softmmu/dump.o CCx86_64-softmmu/xen-stub.o CCx86_64-softmmu/hw/i386

Re: [Qemu-devel] GIT master fails compilation for ACPI

2013-11-22 Thread Erik Rull
> On November 22, 2013 at 11:56 AM Stefan Hajnoczi wrote: > > > On Thu, Nov 21, 2013 at 09:44:29PM +0100, Erik Rull wrote: > > Hu Tao wrote: > > >On Thu, Nov 21, 2013 at 09:06:43AM +0100, Erik Rull wrote: > > >>Hi all, > > >> > > >>

Re: [Qemu-devel] GIT master fails compilation for ACPI

2013-11-22 Thread Erik Rull
Paolo Bonzini wrote: Il 22/11/2013 12:16, Erik Rull ha scritto: It's getting more and more complex to build qemu, is there a reason why everyone needs to build the acpi stuff by himself? It is only attempted if iasl is installed but as you said below, your version is too old. Pleas

Re: [Qemu-devel] GIT master fails compilation for ACPI

2013-11-25 Thread Erik Rull
Michael S. Tsirkin wrote: On Fri, Nov 22, 2013 at 09:19:49PM +0100, Erik Rull wrote: Paolo Bonzini wrote: Il 22/11/2013 12:16, Erik Rull ha scritto: It's getting more and more complex to build qemu, is there a reason why everyone needs to build the acpi stuff by himself? It is

Re: [Qemu-devel] [PULL for-1.7 v2 4/6] acpi-build: fix build on glib < 2.14

2013-11-25 Thread Erik Rull
Michael S. Tsirkin wrote: g_array_get_element_size was only added in glib 2.14, there's no way to find element size in with an older glib. Fortunately we only use a single table (linker) where element size > 1. Switch element size to 1 everywhere, then we can just look at len field to get table

Re: [Qemu-devel] [PULL for-1.7 v2 4/6] acpi-build: fix build on glib < 2.14

2013-11-25 Thread Erik Rull
Richard Henderson wrote: On 11/26/2013 07:01 AM, Michael S. Tsirkin wrote: Can you confirm this works? I can confirm that with this follow-on I can once again build on RHEL 5.3. r~ Sorry, a bit late, but yes, it compiles on my Debian 4.0. My test target is down at the moment, I try to ge

[Qemu-devel] git master: usb-host needs additional parameters - no documentation which

2013-11-26 Thread Erik Rull
Hi all, when using the latest GIT master qemu fails with the following error: qemu-system-x86_64: -device usb-host,bus=ehci.0: Parameter 'driver' expects device type I haven't changed anything in the call parameters since 1.2.0 and the documentation that is provided in the GIT repository doesn't

Re: [Qemu-devel] git master: usb-host needs additional parameters - no documentation which

2013-11-26 Thread Erik Rull
emu should run there. I'm really interested getting qemu running again, but I'm running from trouble to trouble now for more than 4 weeks - python, ACPI, USB,... Thanks. Best regards, Erik Gerd Hoffmann wrote: On Di, 2013-11-26 at 15:52 +0100, Erik Rull wrote: Hi all, when

Re: [Qemu-devel] git master: usb-host needs additional parameters - no documentation which

2013-11-26 Thread Erik Rull
Erik Rull wrote: Hi Gerd, I only have libusb (0.1 and 1.0) installed. Is there a chance to get an error message a bit earlier - or a warning that the usb-host support was disabled? configure doesn't print out a libusb - disabled message when not passing the libusb-parameter. I trie

[Qemu-devel] [RFC] allow special paths for libusbx

2013-11-27 Thread Erik Rull
Hi all, I don't have libusbx installed on my system but the source package is available and compiled for development. This may also help other users to enable the libusbx support without having it actually installed on the compile machine. It's a first attempt, feel free to optimize it. I would b

Re: [Qemu-devel] [RFC] allow special paths for libusbx

2013-11-27 Thread Erik Rull
> On November 27, 2013 at 11:14 AM Paolo Bonzini wrote: > > > Il 27/11/2013 11:09, Erik Rull ha scritto: > > I don't have libusbx installed on my system but the source package is > > available > > and compiled for development. > > This may also help

Re: [Qemu-devel] [RFC] allow special paths for libusbx

2013-11-27 Thread Erik Rull
> On November 27, 2013 at 11:38 AM Paolo Bonzini wrote: > > > Il 27/11/2013 11:24, Erik Rull ha scritto: > > no I have no libusbx installed. I just downloaded the tar.bz2, unpacked it, > > configure'd it and called make. > > I think your patch wouldn't be

[Qemu-devel] Win 8 Driver for QEMU USB Hub?

2013-11-27 Thread Erik Rull
Hi all, is there a Windows driver for the QEMU USB Hub that gets created automagically when exposing more than 5 USB host ports to QEMU? I didn't find something that fits my needs. The device is listed with an exclamation mark in Windows 8. Thanks. Best regards, Erik

Re: [Qemu-devel] [RFC] allow special paths for libusbx

2013-11-27 Thread Erik Rull
> On November 27, 2013 at 11:38 AM Paolo Bonzini wrote: > > > Il 27/11/2013 11:24, Erik Rull ha scritto: > > no I have no libusbx installed. I just downloaded the tar.bz2, unpacked it, > > configure'd it and called make. > > I think your patch wouldn't be

[Qemu-devel] Changed host CPU from Core2Duo to Core i3 or i5 => Windows 8 reboots infinitely

2013-11-27 Thread Erik Rull
Hi all, I have the following qemu commandline on an i3 or i5 CPU (both behave the same), Windows XP (Standard PC installation) runs fine, Windows 7 and Windows 8 reboot in an infinite loop either shortly before the logo is displayed (Windows 7) or after the boot logo is displayed (Windows 8). On a

Re: [Qemu-devel] Changed host CPU from Core2Duo to Core i3 or i5 => Windows 8 reboots infinitely

2013-11-28 Thread Erik Rull
Erik Rull wrote: Hi all, I have the following qemu commandline on an i3 or i5 CPU (both behave the same), Windows XP (Standard PC installation) runs fine, Windows 7 and Windows 8 reboot in an infinite loop either shortly before the logo is displayed (Windows 7) or after the boot logo is

[Qemu-devel] CPU Benchmark qemu-kvm 1.2.0 Win XP vs. Win 7

2013-10-04 Thread Erik Rull
Hi all, when testing my first Windows 7 guest, I noticed, that the IRQ load / kernel time within the guest is quite high when having network access. I use the virtio drivers - the same version as in the Windows XP guests. There the kernel load is nearly only 50% of the Win7 load. Why? The pro

[Qemu-devel] Shutdown-Screen?

2014-03-07 Thread Erik Rull
Hi all, I'm using QEMU with ACPI enabled and the "no-shutdown"-option which does not close the QEMU process after the shutdown is completed. I would like to show to the user on the guest display that the guest system is actually shut off - currently I just see the stalled "shutting down" scree

[Qemu-devel] Getting VM state from outside QEMU?

2015-04-07 Thread Erik Rull
Hi all, I need a pretty simple way to get the current state of the VM running in QEMU - I only need the VM state (e.g. running, paused,...). Since my environment does not have any perl, python or other high level scripting capabilities, a simple way e.g. via a shell script would be nice. QEMU is r

Re: [Qemu-devel] Getting VM state from outside QEMU?

2015-04-08 Thread Erik Rull
Hello Paulo, > On April 7, 2015 at 3:42 PM Paulo Ricardo Paz Vital > wrote: > > > On Tue, 2015-04-07 at 15:31 +0200, Erik Rull wrote: > > Hi all, > > > > I need a pretty simple way to get the current state of the VM running in > > QEMU - > > I

Re: [Qemu-devel] Getting VM state from outside QEMU?

2015-04-08 Thread Erik Rull
Hi Eric, > On April 8, 2015 at 6:16 PM Eric Blake wrote: > > > On 04/08/2015 10:10 AM, Erik Rull wrote: > >> > >> My suggestion is to create a script that sends the QMP command > >> "query-status" an then parse the result. The syntax and o

[Qemu-devel] [Bug 1446179] [NEW] QEMU 2.2.1 fails to build due to pixman libpng dependency

2015-04-20 Thread Erik Rull
Public bug reported: QEMU 2.2.1 does not compile properly when having set --disable-vnc-png due to the missing libpng support on the compile system. The worked great in QEMU 2.1.0 but 2.2.1 seems to have a missing dependency propagation to pixman which now requires libpng anyway. There seems to no

[Qemu-devel] [Bug 1446179] Re: QEMU 2.2.1 fails to build due to pixman libpng dependency

2015-04-20 Thread Erik Rull
sorry, my fault --disable-libpng fixed it in the configure option ** Changed in: qemu Status: New => Invalid -- You received this bug notification because you are a member of qemu- devel-ml, which is subscribed to QEMU. https://bugs.launchpad.net/bugs/1446179 Title: QEMU 2.2.1 fails to

[Qemu-devel] [Bug 1440843] Re: Guest WinXP crashes when trying to use a USB spectrometer

2015-04-21 Thread Erik Rull
Which version is used? Try the latest QEMU or at least QEMU 2.0. The behavior sounds like a pretty old QEMU version. Additionally, enable the EHCI controller (see example in the docs subdirectory). It it working on a native Windows XP? -- You received this bug notification because you are a membe

[Qemu-devel] [Bug 1440843] Re: Guest WinXP crashes when trying to use a USB spectrometer

2015-04-21 Thread Erik Rull
Please check that the devices get added to the EHCI bus and not to the UHCI. As far as I know the -usb* commands are deprecated. The functions behind the -device usb* and -usb* should behave the same. -- You received this bug notification because you are a member of qemu- devel-ml, which is subs

[Qemu-devel] Trouble with numlock and SDL

2015-04-22 Thread Erik Rull
Hi all, I'm struggling a bit with the numlock state when using SDL. On SDL 1.2.13 I have the problem that the numlock state is inverted for QEMU - but it is switchable. On SDL 1.2.14 and 1.2.15 I can't enable the number input in any state of the numlock key. With VNC everything is fine. I read al

Re: [Qemu-devel] Trouble with numlock and SDL

2015-04-26 Thread Erik Rull
nd an update when the results are available. Best regards, Erik Gerd Hoffmann wrote: On Mi, 2015-04-22 at 18:20 +0200, Erik Rull wrote: Hi all, I'm struggling a bit with the numlock state when using SDL. On SDL 1.2.13 I have the problem that the numlock state is inverted for QEMU -

Re: [Qemu-devel] Trouble with numlock and SDL

2015-04-27 Thread Erik Rull
> On April 26, 2015 at 2:12 PM Erik Rull wrote: > > > Hi Gerd, > > it seems to be a bug sitting in front of the computer :-) > I just recompiled the new SDL and didn't recompile QEMU against the new SDL > - I recognized later that there are version dependent pieces o

[Qemu-devel] How to enable more than 2047 MB RAM on 32 bit host systems for 32 bit guests?

2014-05-27 Thread Erik Rull
Hi all, I would like to provide 3GB of RAM to my guest - I use kvm and don't see a real reason why this should not work. Currently, qemu-1.7.0 with kvm is in use. Any hints or solutions are welcome. Thanks. Best regards, Erik

Re: [Qemu-devel] How to enable more than 2047 MB RAM on 32 bit host systems for 32 bit guests?

2014-05-27 Thread Erik Rull
Hi Gerd, okay, that makes sense. What is the theoretical max. amount that can be assigned? QEMU with KVM has less than 200MB overhead, so 2.5GB should be possible, right? Best regards, Erik > On May 27, 2014 at 1:28 PM Gerd Hoffmann wrote: > > > On Di, 2014-05-27 at 09:33 +020

[Qemu-devel] Spice File Drag + Drop from / to guest does not work

2016-02-19 Thread Erik Rull
Hi all, I got a Windows 8.1 guest running on ubuntu 14.04 / qemu-kvm 2.0.0 including spice support. I can connect the spice client to the guest and the copy / paste of text from / to the client works (virtio serial port is running and the agent is running on Windows. But what I cannot get runnin

[Qemu-devel] QEMU 2.1.2 w/ libvirt - USB host assignment doesn't work

2016-02-25 Thread Erik Rull
Hi all,I started with QEMU emulator version 2.1.2 backport on ubuntu 14.04 (I also tried the QEMU 2.0.0 that is provided natively with this version) and I can't get the USB device redirection working properly.No idea what actually goes wrong. I have the 32 bit version running properly without any

[Qemu-devel] Best HMI Performance

2015-06-29 Thread Erik Rull
Hi all, which SDL(2) / XWindows Performance is the best at which graphics card type (e.g. Cirrus or Std VGA) on the guest? Is there a table with some reference benchmarks? Thanks a lot. Best regards, Erik

Re: [Qemu-devel] [PATCH] tracetool: use Python 2.5-compatible exception handling syntax

2012-04-26 Thread Erik Rull
On April 25, 2012 at 11:42 AM Stefan Hajnoczi wrote: > The newer "except as :" syntax is not > supported by Python 2.5, we need to use "except , > :". > > Tested all trace backends with Python 2.5.6. > > Reported-by: Andreas Färber > Signed-off-by: Stefan Hajnoczi > --- > scripts/tracetool

Re: [Qemu-devel] [PATCH] tracetool: use Python 2.5-compatible exception handling syntax

2012-04-27 Thread Erik Rull
On April 26, 2012 at 7:02 PM Erik Rull wrote: > > > > On April 25, 2012 at 11:42 AM Stefan Hajnoczi > wrote: > > > The newer "except as :" syntax is not > > supported by Python 2.5, we need to use "except , > > :". > > > &

Re: [Qemu-devel] [PATCH] tracetool: use Python 2.5-compatible exception handling syntax

2012-04-27 Thread Erik Rull
On April 27, 2012 at 12:08 PM Stefan Hajnoczi wrote: > On Fri, Apr 27, 2012 at 09:27:35AM +0200, Erik Rull wrote: > > On April 26, 2012 at 7:02 PM Erik Rull wrote: > > Finally I managed installing python 2.5 on my debian box - but it's not > > better: > > >

Re: [Qemu-devel] [PATCH] tracetool: use Python 2.5-compatible exception handling syntax

2012-04-27 Thread Erik Rull
On April 27, 2012 at 1:02 PM Peter Maydell wrote: > 2012/4/27 Stefan Hajnoczi : > > Yes, it's the same issue. This patch will solve this particular problem > > but you will hit others with Python 2.4.4. You need Python 2.5 or > > later. > > ...perhaps we should update the configure python vers

Re: [Qemu-devel] [PATCH 0/4] tracetool: Python 2.4 compatibility fixes

2012-04-29 Thread Erik Rull
Stefan Hajnoczi wrote: The new Python tracetool implementation works great but does not run on older Python installations. This series takes us back to the happy days of Python 2.4, which was released in 2004. As a result tracetool should now work again on Mac OS X v10.5.8, OpenIndiana oi_151a,

Re: [Qemu-devel] [PATCH] usb-host: handle guest-issued clear halt

2012-05-09 Thread Erik Rull
Looks VERY good, ACK! The DVD drive works now! On May 8, 2012 at 2:06 PM Gerd Hoffmann wrote: > Most important here is to update our internal endpoint state so we know > the endpoint isn't in halted state any more. Without this usb-host > tries to clear halt again with the next data transfer

[Qemu-devel] Posting a patch?

2012-05-14 Thread Erik Rull
Hi all, is there a guideline or manual how to send a patch to the qemu mailing list? It seems as if this can be done somehow automagically using the local git repository, but I didn't find a tool to do that. Thanks! Best regards, Erik

Re: [Qemu-devel] Posting a patch?

2012-05-14 Thread Erik Rull
Eric Blake wrote: On 05/14/2012 02:58 PM, Anthony Liguori wrote: You can also do: git send-email --to=qemu-devel@nongnu.org HEAD~1 Which avoids any clutter. I also like to do: git config sendemail.to=qemu-devel@nongnu.org so I don't have to remember to use --to every time. 'git send-email

Re: [Qemu-devel] Posting a patch?

2012-05-14 Thread Erik Rull
Stefan Weil wrote: Am 14.05.2012 23:10, schrieb Erik Rull: Eric Blake wrote: On 05/14/2012 02:58 PM, Anthony Liguori wrote: You can also do: git send-email --to=qemu-devel@nongnu.org HEAD~1 Which avoids any clutter. I also like to do: git config sendemail.to=qemu-devel@nongnu.org so I

[Qemu-devel] [PATCH] Added keycodes for MS-Windows Keyboards

2012-05-14 Thread Erik Rull
Keys for MS-Windows Keyboards (left / right Win Key, Context Key) were not working in SDL / VNC environments, this patch fixes it. Signed-off-by: Erik Rull --- ui/x_keymap.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/x_keymap.c b/ui/x_keymap.c index

Re: [Qemu-devel] Posting a patch?

2012-05-14 Thread Erik Rull
Stefan Weil wrote: Am 14.05.2012 22:12, schrieb Erik Rull: Hi all, is there a guideline or manual how to send a patch to the qemu mailing list? It seems as if this can be done somehow automagically using the local git repository, but I didn't find a tool to do that. Thanks! Best re

Re: [Qemu-devel] [PATCH] Added keycodes for MS-Windows Keyboards

2012-05-15 Thread Erik Rull
Sorry, I forgot to CC the maintainer. Erik Rull wrote: Keys for MS-Windows Keyboards (left / right Win Key, Context Key) were not working in SDL / VNC environments, this patch fixes it. Signed-off-by: Erik Rull --- ui/x_keymap.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions

[Qemu-devel] Current differences between qemu --enable-kvm and qemu-kvm?

2012-05-21 Thread Erik Rull
Hi all, is there a summary existing that shows up the rough or actual differences between qemu --enable-kvm and qemu-kvm? I tested both versions with the same compile and start options, the CPU performance results are identical, only the bootup time of my guest system with qemu-kvm seemed to b

[Qemu-devel] Current differences between qemu --enable-kvm and qemu-kvm?

2012-05-21 Thread Erik Rull
Hi all, is there a summary existing that shows up the rough or actual differences between qemu --enable-kvm and qemu-kvm? I tested both versions with the same compile and start options, the CPU performance results are identical, only the bootup time of my guest system with qemu-kvm seemed to b

Re: [Qemu-devel] Current differences between qemu --enable-kvm and qemu-kvm?

2012-05-22 Thread Erik Rull
Jan Kiszka wrote: On 2012-05-22 07:34, Jan Kiszka wrote: On 2012-05-22 07:04, Stefan Hajnoczi wrote: On Mon, May 21, 2012 at 5:54 PM, Erik Rull wrote: is there a summary existing that shows up the rough or actual differences between qemu --enable-kvm and qemu-kvm? I tested both versions with

Re: [Qemu-devel] Keysymbol interpretation missing in QEMU's VNC server?

2012-05-23 Thread Erik Rull
On March 8, 2012 at 11:01 PM Fabian Holler wrote: > Hello Anthony, > > > On Thu, Mar 08, 2012 at 03:30:18PM -0600, Anthony Liguori wrote: > > On 03/07/2012 04:53 AM, Fabian Holler wrote: > > >Hello, > > > > > >I'm not sure if I found a bug in QEMU's VNC keyboard layout mapping or > > >if it's a

Re: [Qemu-devel] Keysymbol interpretation missing in QEMU's VNC server?

2012-05-23 Thread Erik Rull
On May 23, 2012 at 10:16 AM Erik Rull wrote: > > On March 8, 2012 at 11:01 PM Fabian Holler > wrote: > > > Hello Anthony, > > > > > > On Thu, Mar 08, 2012 at 03:30:18PM -0600, Anthony Liguori wrote: > > > On 03/07/2012 04:53 AM, Fabian Holler wrote:

[Qemu-devel] ACPI enabled => qemu process exits when guest shuts down

2013-09-14 Thread Erik Rull
Hi all, I tried a guest OS that is ACPI capable with enabled ACPI in qemu (+kvm) and qemu quits when the guest OS was shut down (and the "guest PC" should be powered off). Well, from the guest point of view, this behavior seems to be okay, but I would like to keep qemu running to have e.g. a q

Re: [Qemu-devel] ACPI enabled => qemu process exits when guest shuts down

2013-09-21 Thread Erik Rull
Paolo Bonzini wrote: Il 14/09/2013 11:24, Erik Rull ha scritto: Hi all, I tried a guest OS that is ACPI capable with enabled ACPI in qemu (+kvm) and qemu quits when the guest OS was shut down (and the "guest PC" should be powered off). Well, from the guest point of view, this behavio

[Qemu-devel] Enabling Hyperthreading for Guest

2011-09-21 Thread erik . rull
Hi all, I'm searching for a switch to enable hyperthreading for my Windows XP Guest. Currently I only get 2 cores available in the taskmanager but listed 4 or 8 (depending on the smp-switch). After having read that XP supports only up to 2 cores but also with HT this should show me 4 cores. What

Re: [Qemu-devel] Enabling Hyperthreading for Guest

2011-09-22 Thread Erik Rull
Alex Williamson wrote: See the extended -smp options: -smp n[,maxcpus=cpus][,cores=cores][,threads=threads][,sockets=sockets] set the number of CPUs to 'n' [default=1] maxcpus= maximum number of total cpus, including offline CPUs for hotplug, et

Re: [Qemu-devel] Enabling Hyperthreading for Guest

2011-09-23 Thread Erik Rull
Alex Williamson wrote: On Thu, 2011-09-22 at 18:43 +0200, Erik Rull wrote: Alex Williamson wrote: See the extended -smp options: -smp n[,maxcpus=cpus][,cores=cores][,threads=threads][,sockets=sockets] set the number of CPUs to 'n' [default=1]

Re: [Qemu-devel] BUG: 0.14.0 -device usb-host supports only one device

2011-04-27 Thread Erik Rull
Hi all, does nobody else struggle with this bug? I would like to help, but don't know where to start! Best regards, Erik Erik Rull wrote: No idea how to start here? If someone could assist me where to start and what information to collect, I could help debugging and finding a solutio

Re: [Qemu-devel] BUG: 0.14.0 -device usb-host supports only one device

2011-05-06 Thread erik . rull
Hi Gerd, sorry, but that parameter causes a non-complete boot of my Windows VM (I have removed that) when using the ehci-patch. Additionally, the ehci patch does not support that parameter type, there you must add it via -usbdevice host:auto:*.* Any ideas how to proceed? I need the ehci patch be

[Qemu-devel] Compile Error 1.0-rc2

2011-11-18 Thread erik . rull
Hi all, when compiling the 1.0-rc2, I get the following error: CClibhw64/9pfs/virtio-9p.o /home/erik/qemu-1.0-rc2/hw/9pfs/virtio-9p.c: In function 'dotl_to_at_flags': /home/erik/qemu-1.0-rc2/hw/9pfs/virtio-9p.c:81: error: 'AT_REMOVEDIR' undeclared (first use in this function) /home/erik/qem

Re: [Qemu-devel] Compile Error 1.0-rc2

2011-11-18 Thread Erik Rull
Paolo Bonzini wrote: On 11/18/2011 04:28 PM, erik.r...@rdsoftware.de wrote: Hi all, when compiling the 1.0-rc2, I get the following error: CC libhw64/9pfs/virtio-9p.o /home/erik/qemu-1.0-rc2/hw/9pfs/virtio-9p.c: In function 'dotl_to_at_flags': /home/erik/qemu-1.0-rc2/hw/9pfs/virtio-9p.c:81: er

[Qemu-devel] virtio-9p compiling error

2011-11-29 Thread erik . rull
Hi all, when compiling the 1.0-rc4 I get the following error. 0.14.0-kvm and 0.15.0-kvm were fine, I found no configure switch possibility to disable this code part. I really don't need it. Please help here: CClibhw64/9pfs/virtio-9p.o CClibhw64/9pfs/virtio-9p-local.o /home/erik/qemu

Re: [Qemu-devel] virtio-9p compiling error

2011-11-29 Thread erik . rull
My host system is Debian 4.0 My compiler is gcc (GCC) 4.1.2 20061115 (prerelease) (Debian 4.1.1-21) Due to other hardware constraints I'm forced to this version as build machine. If you need more information, just let me know. Best regards, Erik

Re: [Qemu-devel] [PATCH 1.0] 9pfs: improve portability to older systems

2011-11-30 Thread Erik Rull
Paolo Bonzini wrote: On 11/28/2011 11:36 PM, Anthony Liguori wrote: Hrm, I may have messed this up. My mailbox processing script seems to have found Aneesh's patch instead of Paolo's. Can ya'll take a look at 2507718baf311ea78156c6777d38410a9f89ce89 and tell me if I need to revert it? No,

[Qemu-devel] Still build failure for qemu-1.0

2011-12-02 Thread erik . rull
Hi all, there was the promise to test the build failure from rc4 with the released version and that it should work. Its still present :-( please assist me here: CClibhw64/9pfs/coxattr.o CClibhw64/9pfs/virtio-9p-handle.o /home/erik/qemu-1.0/hw/9pfs/virtio-9p-handle.c: In function 'han

Re: [Qemu-devel] [PATCH 1.0] 9pfs: improve portability to older systems

2011-12-03 Thread Erik Rull
Paolo Bonzini wrote: On 11/30/2011 10:27 PM, Erik Rull wrote: Erik, if you can test on your Debian 4.0 installation, that would be nice. Thanks! I will do so. Can you provide me a snapshot (.tgz) of the git? I have heard that there are possibilities to create the tgz over some web interfaces

Re: [Qemu-devel] [PATCH 1.0] 9pfs: improve portability to older systems

2011-12-03 Thread Erik Rull
Paolo Bonzini wrote: On 11/30/2011 10:27 PM, Erik Rull wrote: Erik, if you can test on your Debian 4.0 installation, that would be nice. Thanks! I will do so. Can you provide me a snapshot (.tgz) of the git? I have heard that there are possibilities to create the tgz over some web interfaces

Re: [Qemu-devel] Still build failure for qemu-1.0

2011-12-08 Thread Erik Rull
Aneesh Kumar K.V wrote: On Fri, 02 Dec 2011 14:22:03 +0100, erik.r...@rdsoftware.de wrote: Hi all, there was the promise to test the build failure from rc4 with the released version and that it should work. Its still present :-( please assist me here: CClibhw64/9pfs/coxattr.o CC

[Qemu-devel] USB device assignment in qemu-1.0

2011-12-09 Thread erik . rull
Hi all, coming from 0.14 and older versions, I'm a bit confused using usb in qemu. My scenario is: - Linux box as host with USB devices that are used by the host - Windows guest that needs e.g. access to some dedicated usb-ports and needs to get ALL devices that are connected there What I do: I

[Qemu-devel] USB continuous reset / unplug cleanup not done properly

2011-12-14 Thread erik . rull
Hi all, I experience several problems using the usb-host USB routing feature to the guest. 1) Devices get resetted again and again on the host side and do not work properly on the guest side - they work fine on the host side outside qemu. 2) Unplugged devices remain in the "info usb" list I star

[Qemu-devel] [Bug 904617] [NEW] device_add usb-hub causes segfault in qemu-1.0

2011-12-15 Thread Erik Rull
Public bug reported: When calling the command (qemu) device_add usb-hub,bus=usb.0,port=4 qemu replies Error: usb port 4 (bus usb.0) not found (in use?) Then qemu crashes with a segfault: [ 1546.177627] qemu-system-x86[1710]: segfault at 0 ip b75d3f8b sp bfddb0b0 error 6 in qemu-system-x86_64[

<    1   2   3   >