Re: [Qemu-devel] [PATCH v2] qxl: bump pci rev

2011-07-08 Thread Alon Levy
On Fri, Jul 08, 2011 at 09:19:10AM +0200, Gerd Hoffmann wrote: > Hi, > > >-DEFINE_PROP_UINT32("revision", PCIQXLDevice, revision, 2), > >+DEFINE_PROP_UINT32("revision", PCIQXLDevice, revision, 3), > > Can't be done unconditionally. With an older libspice we can't > support the

Re: [Qemu-devel] [PATCH v2] qxl: bump pci rev

2011-07-08 Thread Gerd Hoffmann
Hi, -DEFINE_PROP_UINT32("revision", PCIQXLDevice, revision, 2), +DEFINE_PROP_UINT32("revision", PCIQXLDevice, revision, 3), Can't be done unconditionally. With an older libspice we can't support the rev3 features. cheers, Gerd

[Qemu-devel] [PATCH v2] qxl: bump pci rev

2011-07-07 Thread Alon Levy
From: Gerd Hoffmann Inform guest drivers about the new features I/O commands we have now (async commands, S3 support). Signed-off-by: Gerd Hoffmann --- hw/qxl.c |9 ++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git a/hw/qxl.c b/hw/qxl.c index f72d5b8..395d994 100644 --