[Qemu-devel] [PULL v2 0/6] Block patches

Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180122160048.29571-1-stefanha@redhat.com
Test checkpatch passed
Test docker-build@min-glib passed
Test docker-mingw@fedora passed
Test docker-quick@centos6 passed
Test ppc passed
Test s390x passed
There is a newer version of this series
docs/interop/prl-xml.txt | 158 +++++++++++++++++++++++++++++++++++++++++++++++
qapi/block-core.json     |  18 ++++++
configure                |  27 ++++++++
block/Makefile.objs      |   2 +
block/parallels.h        |  88 ++++++++++++++++++++++++++
block/parallels.c        | 108 ++++++++++++++------------------
scripts/checkpatch.pl    |   1 +
7 files changed, 342 insertions(+), 60 deletions(-)
create mode 100644 docs/interop/prl-xml.txt
create mode 100644 block/parallels.h
[Qemu-devel] [PULL v2 0/6] Block patches
Posted by Stefan Hajnoczi 6 years, 2 months ago
The following changes since commit b384cd95eb9c6f73ad84ed1bb0717a26e29cc78f:

  Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging (2018-01-19 16:35:25 +0000)

are available in the Git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to bcbb3866da19cce4360c828b6ec1c2a137757927:

  block/parallels: add backing support to readv/writev (2018-01-22 14:02:33 +0000)

----------------------------------------------------------------
Pull request

v2:
 * Drop merge failure from a previous pull request that broke virtio-blk on ARM
   guests
 * Add Parallels XML patch series

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

Edgar Kaziakhmedov (1):
  block/parallels: add backing support to readv/writev

Klim Kireev (4):
  docs/interop/prl-xml: description of Parallels Disk format
  configure: add dependency
  block/parallels: move some structures into header
  block/parallels: replace some magic numbers

Stefan Hajnoczi (1):
  block: add block_set_io_throttle virtio-blk-pci QMP example

 docs/interop/prl-xml.txt | 158 +++++++++++++++++++++++++++++++++++++++++++++++
 qapi/block-core.json     |  18 ++++++
 configure                |  27 ++++++++
 block/Makefile.objs      |   2 +
 block/parallels.h        |  88 ++++++++++++++++++++++++++
 block/parallels.c        | 108 ++++++++++++++------------------
 scripts/checkpatch.pl    |   1 +
 7 files changed, 342 insertions(+), 60 deletions(-)
 create mode 100644 docs/interop/prl-xml.txt
 create mode 100644 block/parallels.h

-- 
2.14.3


Re: [Qemu-devel] [PULL v2 0/6] Block patches
Posted by Peter Maydell 6 years, 2 months ago
On 22 January 2018 at 16:00, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit b384cd95eb9c6f73ad84ed1bb0717a26e29cc78f:
>
>   Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging (2018-01-19 16:35:25 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to bcbb3866da19cce4360c828b6ec1c2a137757927:
>
>   block/parallels: add backing support to readv/writev (2018-01-22 14:02:33 +0000)
>
> ----------------------------------------------------------------
> Pull request
>
> v2:
>  * Drop merge failure from a previous pull request that broke virtio-blk on ARM
>    guests
>  * Add Parallels XML patch series
>

Applied, thanks.

-- PMM