[Spice-devel] does xorg-qxl driver support multihead ?

2010-11-10 Thread Paul Ionescu
Hi, I'm trying to setup a dualhead spice Fedora 14 guest on a Fedora 14 host with with the following command: qemu-kvm f14.img -m 2048 -usbdevice tablet -soundhw ac97 -vga qxl -spice port=5930,disable-ticketing -device qxl -device qxl Fedora 14 is already installed and uptodate in both guest an

[Spice-devel] [PATCH 0/3] usb-linux do not send unnecessary GET_CONFIGURATION (v2)

2010-11-10 Thread Hans de Goede
Hi All, This is version 2 of this patchset, it changes the first patch in the series to not use the devpath sysfs attribute as that is not available on kernels < 2.6.33 The other 2 patches are unchanged. For those just tuning in here is the summary of the patchset again: I've begun looking into

[Spice-devel] [PATCH 3/3] usb-linux: Get the active configuration from sysfs rather then asking the dev

2010-11-10 Thread Hans de Goede
Some devices seem to choke on receiving a USB_REQ_GET_CONFIGURATION ctrl msg (witnessed with a digital picture frame usb id 1908:1320). When usb_fs_type == USB_FS_SYS, the active configuration can be read directly from sysfs, which allows using this device through qemu's usb redirection. More in ge

[Spice-devel] [PATCH 2/3] usb-linux: introduce a usb_linux_get_configuration function

2010-11-10 Thread Hans de Goede
The next patch in this series introduces multiple ways to get the configuration dependent upon usb_fs_type, it is cleaner to put this into its own function. --- usb-linux.c | 30 ++ 1 files changed, 22 insertions(+), 8 deletions(-) diff --git a/usb-linux.c b/usb-linu

[Spice-devel] [PATCH 1/3] usb-linux: Store devpath into USBHostDevice when usb_fs_type == USB_FS_SYS

2010-11-10 Thread Hans de Goede
This allows us to recreate the sysfspath used during scanning later (which will be used in a later patch in this series). --- usb-linux.c | 26 +++--- 1 files changed, 15 insertions(+), 11 deletions(-) diff --git a/usb-linux.c b/usb-linux.c index c3c38ec..0b154c2 100644 ---