[Qemu-devel] [PULL 0/6] Qio next patches

Daniel P. Berrangé posted 6 patches 7 years, 11 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180307112532.24248-1-berrange@redhat.com
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppcbe passed
Test ppcle passed
Test s390x passed
There is a newer version of this series
chardev/char-socket.c          |  5 ++--
include/io/channel-socket.h    | 15 ++++++++---
include/io/channel-tls.h       |  5 +++-
include/io/channel.h           | 44 ++++++++++++++++++++++++++++++++
include/io/net-listener.h      | 22 ++++++++++++++--
include/io/task.h              |  7 +++--
io/channel-socket.c            | 18 ++++++++-----
io/channel-tls.c               | 45 ++++++++++++++++++++++++--------
io/channel.c                   | 40 ++++++++++++++++++++++++-----
io/dns-resolver.c              |  3 ++-
io/net-listener.c              | 58 ++++++++++++++++++++++++++----------------
io/task.c                      | 22 +++++++++++++---
migration/socket.c             |  3 ++-
migration/tls.c                |  2 ++
nbd/client.c                   |  1 +
nbd/server.c                   |  1 +
tests/test-io-channel-socket.c |  4 +--
tests/test-io-channel-tls.c    |  2 ++
tests/test-io-task.c           |  2 ++
ui/vnc-auth-vencrypt.c         |  1 +
ui/vnc-ws.c                    |  1 +
21 files changed, 239 insertions(+), 62 deletions(-)
[Qemu-devel] [PULL 0/6] Qio next patches
Posted by Daniel P. Berrangé 7 years, 11 months ago
The following changes since commit f2bb2d14c2958f3f5aef456bd2cdb1ff99f4a562:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2018-03-05 16:41:20 +0000)

are available in the Git repository at:

  https://github.com/berrange/qemu tags/qio-next-pull-request

for you to fetch changes up to 1939ccdaa61ce6a1f57d83277b3d41d3a9ad3c58:

  qio: non-default context for TLS handshake (2018-03-06 10:19:07 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Peter Xu (6):
  qio: rename qio_task_thread_result
  qio: introduce qio_channel_add_watch_{full|source}
  qio: store gsources for net listeners
  qio: non-default context for threaded qtask
  qio: non-default context for async conn
  qio: non-default context for TLS handshake

 chardev/char-socket.c          |  5 ++--
 include/io/channel-socket.h    | 15 ++++++++---
 include/io/channel-tls.h       |  5 +++-
 include/io/channel.h           | 44 ++++++++++++++++++++++++++++++++
 include/io/net-listener.h      | 22 ++++++++++++++--
 include/io/task.h              |  7 +++--
 io/channel-socket.c            | 18 ++++++++-----
 io/channel-tls.c               | 45 ++++++++++++++++++++++++--------
 io/channel.c                   | 40 ++++++++++++++++++++++++-----
 io/dns-resolver.c              |  3 ++-
 io/net-listener.c              | 58 ++++++++++++++++++++++++++----------------
 io/task.c                      | 22 +++++++++++++---
 migration/socket.c             |  3 ++-
 migration/tls.c                |  2 ++
 nbd/client.c                   |  1 +
 nbd/server.c                   |  1 +
 tests/test-io-channel-socket.c |  4 +--
 tests/test-io-channel-tls.c    |  2 ++
 tests/test-io-task.c           |  2 ++
 ui/vnc-auth-vencrypt.c         |  1 +
 ui/vnc-ws.c                    |  1 +
 21 files changed, 239 insertions(+), 62 deletions(-)

-- 
2.14.3


Re: [Qemu-devel] [PULL 0/6] Qio next patches
Posted by Peter Maydell 7 years, 11 months ago
On 7 March 2018 at 11:25, Daniel P. Berrangé <berrange@redhat.com> wrote:
> The following changes since commit f2bb2d14c2958f3f5aef456bd2cdb1ff99f4a562:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2018-03-05 16:41:20 +0000)
>
> are available in the Git repository at:
>
>   https://github.com/berrange/qemu tags/qio-next-pull-request
>
> for you to fetch changes up to 1939ccdaa61ce6a1f57d83277b3d41d3a9ad3c58:
>
>   qio: non-default context for TLS handshake (2018-03-06 10:19:07 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Peter Xu (6):
>   qio: rename qio_task_thread_result
>   qio: introduce qio_channel_add_watch_{full|source}
>   qio: store gsources for net listeners
>   qio: non-default context for threaded qtask
>   qio: non-default context for async conn
>   qio: non-default context for TLS handshake
>

Applied, thanks.

-- PMM