[Qemu-devel] [PULL v2 0/5] Merge QEMU I/O 2017/09/05 v2

Daniel P. Berrange posted 5 patches 6 years, 8 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170905123935.26645-1-berrange@redhat.com
Test checkpatch passed
Test docker passed
Test s390x passed
block/sheepdog.c            |   2 +-
block/ssh.c                 |   2 +-
include/io/channel.h        |  92 +++++++++++++++++++-
include/qemu/sockets.h      |  12 +--
io/channel-socket.c         |   2 +-
io/channel.c                |  94 ++++++++++++++++++++
tests/io-channel-helpers.c  | 102 ++--------------------
tests/test-io-channel-tls.c |   6 +-
util/qemu-sockets.c         | 205 +++++---------------------------------------
9 files changed, 225 insertions(+), 292 deletions(-)
[Qemu-devel] [PULL v2 0/5] Merge QEMU I/O 2017/09/05 v2
Posted by Daniel P. Berrange 6 years, 8 months ago
The following changes since commit 32f0f68bb77289b75a82925f712bb52e16eac3ba:

  Merge remote-tracking branch 'remotes/ehabkost/tags/x86-and-machine-pull-request' into staging (2017-09-01 17:28:54 +0100)

are available in the git repository at:

  git://github.com/berrange/qemu tags/pull-qio-20170905-2

for you to fetch changes up to 689ed13e73bdb5a5ca3366524475e3065fae854a:

  io: fix check for handshake completion in TLS test (2017-09-05 13:21:58 +0100)

----------------------------------------------------------------
Merge QEMU I/O 2017/09/05 v2

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

Changed in v2:

 - Drop socket listen refactoring which had broken test suite 

Cao jin (1):
  util: remove the obsolete non-blocking connect

Daniel P. Berrange (4):
  io: fix temp directory used by test-io-channel-tls test
  io: fix typo in docs comment for qio_channel_read
  io: add new qio_channel_{readv, writev, read, write}_all functions
  io: fix check for handshake completion in TLS test

 block/sheepdog.c            |   2 +-
 block/ssh.c                 |   2 +-
 include/io/channel.h        |  92 +++++++++++++++++++-
 include/qemu/sockets.h      |  12 +--
 io/channel-socket.c         |   2 +-
 io/channel.c                |  94 ++++++++++++++++++++
 tests/io-channel-helpers.c  | 102 ++--------------------
 tests/test-io-channel-tls.c |   6 +-
 util/qemu-sockets.c         | 205 +++++---------------------------------------
 9 files changed, 225 insertions(+), 292 deletions(-)

-- 
2.13.5


Re: [Qemu-devel] [PULL v2 0/5] Merge QEMU I/O 2017/09/05 v2
Posted by Peter Maydell 6 years, 8 months ago
On 5 September 2017 at 13:39, Daniel P. Berrange <berrange@redhat.com> wrote:
> The following changes since commit 32f0f68bb77289b75a82925f712bb52e16eac3ba:
>
>   Merge remote-tracking branch 'remotes/ehabkost/tags/x86-and-machine-pull-request' into staging (2017-09-01 17:28:54 +0100)
>
> are available in the git repository at:
>
>   git://github.com/berrange/qemu tags/pull-qio-20170905-2
>
> for you to fetch changes up to 689ed13e73bdb5a5ca3366524475e3065fae854a:
>
>   io: fix check for handshake completion in TLS test (2017-09-05 13:21:58 +0100)
>
> ----------------------------------------------------------------
> Merge QEMU I/O 2017/09/05 v2
>
> ----------------------------------------------------------------
>
> Changed in v2:
>
>  - Drop socket listen refactoring which had broken test suite
>
> Cao jin (1):
>   util: remove the obsolete non-blocking connect
>
> Daniel P. Berrange (4):
>   io: fix temp directory used by test-io-channel-tls test
>   io: fix typo in docs comment for qio_channel_read
>   io: add new qio_channel_{readv, writev, read, write}_all functions
>   io: fix check for handshake completion in TLS test
>

Applied, thanks.

-- PMM