qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCHv3] qxl S3&S4 (suspend and hibernate) support
@ 2011-06-29 11:57 Alon Levy
  2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] async io: suggested fixes Alon Levy
                   ` (14 more replies)
  0 siblings, 15 replies; 38+ messages in thread
From: Alon Levy @ 2011-06-29 11:57 UTC (permalink / raw)
  To: qemu-devel; +Cc: yhalperi, kraxel

Based on Gerd's tree:
 git://anongit.freedesktop.org/spice/qemu bz700134^
 (i.e. without the last patch for latency measurement marked [debug])

Changes from v2:
 1: patch uses V10 instead of 3.
 2: handle EAGAIN/EINTR
 3: fixes a deadlock because of usage of wlock for surface tracking.
 4..end-2: The same as v2, but drop patch introducing primary_created.
 end-1: Instead of adding a new primary_created tracking driver state, just
  change to UNDEFINED when doing DESTROY_ALL_SURFACES.
 end: allow io in UNDEFINED
  

Alon Levy (14):
  async io: suggested fixes
  async thread fix - handle EAGAIN/EINTR, remove fprintf
  qxl: use track_lock instead of wlock for guest_surfaces
  qxl: add mode to debugprint on destroy primary
  qxl: allow QXL_IO_LOG also in vga
  qxl: abort on panic instead of exit
  qxl-logger: add timestamp to command log
  qxl: update and add debug prints
  qxl: add dev id to guest prints
  qxl: add io_port_to_string
  qxl: update revision to QXL_REVISION_STABLE_V10
  qxl: add QXL_IO_FLUSH_{SURFACES,RELEASE} for guest S3&S4 support
  qxl: move to UNDEFINED on DESTROY_ALL_SURFACES{,_ASYNC}
  qxl: only disallow specific io's in vga mode

 hw/qxl-logger.c |    4 +-
 hw/qxl.c        |  143 +++++++++++++++++++++++++++++++++++++++++++++++--------
 hw/qxl.h        |    4 +-
 3 files changed, 129 insertions(+), 22 deletions(-)

-- 
1.7.5.4

^ permalink raw reply	[flat|nested] 38+ messages in thread
* [Qemu-devel] [PATCHv3] async + suspend reworked
@ 2011-07-12 13:55 Alon Levy
  2011-07-12 13:55 ` [Qemu-devel] [PATCHv3] qxl: add QXL_IO_FLUSH_{SURFACES, RELEASE} for guest S3&S4 support Alon Levy
  0 siblings, 1 reply; 38+ messages in thread
From: Alon Levy @ 2011-07-12 13:55 UTC (permalink / raw)
  To: qemu-devel; +Cc: kraxel

v2->v3:
 builds correctly with older and newer spice, and runs with older and newer qxl driver.
 fixed update_area_async to not use QXLRect on stack
 qxl-render updated to work with update_area_async correctly
 reverted change to update_area api - update_area still returns dirty
  rects array

Git trees:
 git://anongit.freedesktop.org/~alon/qemu            async_and_s3.v3

 git://anongit.freedesktop.org/~alon/spice           async_and_s3.v4
 git://anongit.freedesktop.org/~alon/spice-protocol  s3.v2 (unchanged)
 git://anongit.freedesktop.org/~alon/qxl             s3.v3.async.v3 (unchanged)

Alon Levy (12):
  qxl: add io_port_to_string
  qxl: make qxl_guest_bug take variable arguments
  qxl: use QXL_REVISION_*
  qxl: QXL_IO_UPDATE_AREA: pass ram->update_area directly to
    update_area
  qxl: async io support using new spice api
  qxl-render/qxl: split out qxl_save_ppm
  qxl-render: split out qxl_render_update_dirty_rectangles
  qxl-render: qxl_render_update: nop if \!ssd.running
  qxl-render: use update_area_async and update_area_complete
  qxl: qxl_send_events: ignore if stopped (instead of abort)
  qxl: only disallow specific io's in vga mode
  qxl: add QXL_IO_FLUSH_{SURFACES,RELEASE} for guest S3&S4 support

Gerd Hoffmann (7):
  spice: add worker wrapper functions.
  spice: add qemu_spice_display_init_common
  qxl: remove qxl_destroy_primary()
  spice/qxl: move worker wrappers
  qxl: fix surface tracking & locking
  qxl: error handling fixes and cleanups.
  qxl: bump pci rev

 hw/qxl-render.c    |   97 +++++++++--
 hw/qxl.c           |  490 ++++++++++++++++++++++++++++++++++++++++++++--------
 hw/qxl.h           |   38 ++++-
 ui/spice-display.c |   94 +++++++++--
 ui/spice-display.h |   33 ++++
 5 files changed, 652 insertions(+), 100 deletions(-)

-- 
1.7.6

^ permalink raw reply	[flat|nested] 38+ messages in thread

end of thread, other threads:[~2011-07-12 13:56 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-29 11:57 [Qemu-devel] [PATCHv3] qxl S3&S4 (suspend and hibernate) support Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] async io: suggested fixes Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] async thread fix - handle EAGAIN/EINTR, remove fprintf Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: use track_lock instead of wlock for guest_surfaces Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: add mode to debugprint on destroy primary Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: allow QXL_IO_LOG also in vga Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: abort on panic instead of exit Alon Levy
2011-06-29 12:44   ` Gerd Hoffmann
2011-06-29 14:24     ` Alon Levy
2011-06-29 14:34       ` Gerd Hoffmann
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl-logger: add timestamp to command log Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: update and add debug prints Alon Levy
2011-06-29 13:01   ` Gerd Hoffmann
2011-06-29 14:24     ` Alon Levy
2011-06-29 14:36       ` Gerd Hoffmann
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: add dev id to guest prints Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: add io_port_to_string Alon Levy
2011-06-29 13:03   ` Gerd Hoffmann
2011-06-29 14:25     ` Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: update revision to QXL_REVISION_STABLE_V10 Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: add QXL_IO_FLUSH_{SURFACES, RELEASE} for guest S3&S4 support Alon Levy
2011-06-29 13:06   ` Gerd Hoffmann
2011-06-29 14:27     ` Alon Levy
2011-06-29 14:50       ` Gerd Hoffmann
2011-06-29 18:22         ` Alon Levy
2011-06-29 14:45     ` Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: move to UNDEFINED on DESTROY_ALL_SURFACES{, _ASYNC} Alon Levy
2011-06-29 13:09   ` Gerd Hoffmann
2011-06-29 14:29     ` Alon Levy
2011-06-29 15:00       ` Gerd Hoffmann
2011-06-29 18:28         ` Alon Levy
2011-06-30  7:16           ` Gerd Hoffmann
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] qxl: only disallow specific io's in vga mode Alon Levy
2011-06-29 11:57 ` [Qemu-devel] [PATCHv3] (alon-local) symlink bios out of tree Alon Levy
2011-06-29 13:11   ` Gerd Hoffmann
2011-06-29 14:31     ` Alon Levy
2011-06-29 15:01       ` Gerd Hoffmann
  -- strict thread matches above, loose matches on Subject: below --
2011-07-12 13:55 [Qemu-devel] [PATCHv3] async + suspend reworked Alon Levy
2011-07-12 13:55 ` [Qemu-devel] [PATCHv3] qxl: add QXL_IO_FLUSH_{SURFACES, RELEASE} for guest S3&S4 support Alon Levy

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).