All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/7] Spice / usb-redir chardev flowcontrol patches v3
@ 2013-03-28 13:28 Hans de Goede
  2013-03-28 13:28 ` [Qemu-devel] [PATCH 1/7] virtio-console: Also throttle when less was written then requested Hans de Goede
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Hans de Goede @ 2013-03-28 13:28 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: Amit Shah, Hans de Goede, qemu-devel

I think you may already have these in a local branch, but since I've not
yet seen a pull request for them, here is another resend.

Here is v3 of the series adding watch support to the spicevmc chardev backend
and flowcontrol support to the usb-redir device. It also includes a few
virtio-consoled bugfixes which were found during the development of this
series.

Changes in v2:
-Address Amit's review of "[PATCH 2/8] virtio-console: Remove any pending 
watches on close"
-Drop 2 spice-qemu-char cleanup patches as Gerd has added them to his v5 series
-Add a (forward ported) patch from Alon Levy to fix a long standing
 spice-qemu-char migration issue in a way which should be acceptable upstream

Changes in v3:
-Rebased on top of latest master (some trivial manual conflict resolution)
-Dropped Alon's patch for the spice-qemu-char migration issue, this is fixed
 differently in another series which is already par of the latest master
-Add a new patch:
  usb-serial: Remove double call to qemu_chr_add_handlers( NULL )
-Fixed a checkpatch issue in:
  usb-redir: Add flow control support

Regards,

Hans

Alon Levy (1):
  spice-qemu-char: Remove intermediate buffer

Hans de Goede (6):
  virtio-console: Also throttle when less was written then requested
  virtio-console: Remove any pending watches on close
  spice-qemu-char: Remove #ifdef-ed code for old spice-server compat
  spice-qemu-char: Add watch support
  usb-redir: Add flow control support
  usb-serial: Remove double call to qemu_chr_add_handlers( NULL )

 hw/usb/dev-serial.c |   9 -----
 hw/usb/redirect.c   |  33 +++++++++++++++-
 hw/virtio-console.c |  29 ++++++++++++--
 spice-qemu-char.c   | 106 +++++++++++++++++++++++++++++++++-------------------
 4 files changed, 124 insertions(+), 53 deletions(-)

-- 
1.8.1.4

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PATCH 0/7] usb-redir chardev flowcontrol patches v4
@ 2013-04-05  9:30 Hans de Goede
  2013-04-05  9:30 ` [Qemu-devel] [PATCH 1/7] virtio-console: Also throttle when less was written then requested Hans de Goede
  0 siblings, 1 reply; 14+ messages in thread
From: Hans de Goede @ 2013-04-05  9:30 UTC (permalink / raw)
  To: Gerd Hoffmann; +Cc: qemu-devel

Hi Gerd,

Here is v4 of the series adding watch support to the spicevmc chardev
backend. This version resolved all outstanding discussions about this
patch-set, can you please include these in your next spice pull-req to
Anthony?

Note this also includes a few virtio-consoled bugfixes which were found
during the development of this series.

Changes in v2:
-Address Amit's review of "[PATCH 2/8] virtio-console: Remove any pending
watches on close"
-Drop 2 spice-qemu-char cleanup patches as Gerd has added them to his v5
-series
-Add a (forward ported) patch from Alon Levy to fix a long standing
 spice-qemu-char migration issue in a way which should be acceptable
-upstream

Changes in v3:
-Rebased on top of latest master (some trivial manual conflict resolution)
-Dropped Alon's patch for the spice-qemu-char migration issue, this is fixed
 differently in another series which is already par of the latest master
-Add a new patch:
  usb-serial: Remove double call to qemu_chr_add_handlers( NULL )
-Fixed a checkpatch issue in:
  usb-redir: Add flow control support

Changes in v4:
-Rebased on top of latest master (some trivial manual conflict resolution)
-Address Amit's review of "[PATCH 1/7] virtio-console: Also throttle when
 less was written then requested"
-Drop patches included in the usb.79 pull-req
-Add a new patch: "[PATCH 6/7] spice-qemu-char: vmc_write: Don't write more
 bytes then requested"

Thanks & Regards,

Hans

^ permalink raw reply	[flat|nested] 14+ messages in thread
* [Qemu-devel] [PATCH 0/7] Spice / usb-redir chardev flowcontrol patches
@ 2013-03-13 13:59 Hans de Goede
  2013-03-13 13:59 ` [Qemu-devel] [PATCH 1/7] virtio-console: Also throttle when less was written then requested Hans de Goede
  0 siblings, 1 reply; 14+ messages in thread
From: Hans de Goede @ 2013-03-13 13:59 UTC (permalink / raw)
  To: qemu-devel; +Cc: Amit Shah, Marc-André Lureau, Gerd Hoffmann

Here is a series adding watch support to the spicevmc chardev backend
and flowcontrol support to the usb-redir device. It begins with a few
chardev related bugfixes which were found during the development of this
series.

Note that this series is based *on top of* Gerd Hoffmann's chardev.4 series
to avoid conflicts with that series.

Regards,

Hans

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

end of thread, other threads:[~2013-04-05  9:27 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-28 13:28 [Qemu-devel] [PATCH 0/7] Spice / usb-redir chardev flowcontrol patches v3 Hans de Goede
2013-03-28 13:28 ` [Qemu-devel] [PATCH 1/7] virtio-console: Also throttle when less was written then requested Hans de Goede
2013-03-29  9:31   ` Amit Shah
2013-04-01 16:00     ` Hans de Goede
2013-04-02 10:40       ` Amit Shah
2013-04-02 17:32         ` Hans de Goede
2013-03-28 13:28 ` [Qemu-devel] [PATCH 2/7] virtio-console: Remove any pending watches on close Hans de Goede
2013-03-28 13:28 ` [Qemu-devel] [PATCH 3/7] spice-qemu-char: Remove #ifdef-ed code for old spice-server compat Hans de Goede
2013-03-28 13:28 ` [Qemu-devel] [PATCH 4/7] spice-qemu-char: Add watch support Hans de Goede
2013-03-28 13:28 ` [Qemu-devel] [PATCH 5/7] spice-qemu-char: Remove intermediate buffer Hans de Goede
2013-03-28 13:28 ` [Qemu-devel] [PATCH 6/7] usb-redir: Add flow control support Hans de Goede
2013-03-28 13:28 ` [Qemu-devel] [PATCH 7/7] usb-serial: Remove double call to qemu_chr_add_handlers( NULL ) Hans de Goede
  -- strict thread matches above, loose matches on Subject: below --
2013-04-05  9:30 [Qemu-devel] [PATCH 0/7] usb-redir chardev flowcontrol patches v4 Hans de Goede
2013-04-05  9:30 ` [Qemu-devel] [PATCH 1/7] virtio-console: Also throttle when less was written then requested Hans de Goede
2013-03-13 13:59 [Qemu-devel] [PATCH 0/7] Spice / usb-redir chardev flowcontrol patches Hans de Goede
2013-03-13 13:59 ` [Qemu-devel] [PATCH 1/7] virtio-console: Also throttle when less was written then requested Hans de Goede

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.