[Qemu-devel] [PULL 0/5] Block layer patches

Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180703145915.32607-1-kwolf@redhat.com
Test checkpatch passed
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test s390x passed
There is a newer version of this series
qapi/block-core.json  |  33 ++++-
block/qcow2.h         |   3 +
include/block/block.h |   7 +
block.c               |   6 -
block/blklogwrites.c  | 392 ++++++++++++++++++++++++++++++++++++++++++++++++++
block/qcow2.c         | 136 ++++++++++++++----
qemu-img.c            |   5 -
MAINTAINERS           |   6 +
block/Makefile.objs   |   1 +
9 files changed, 545 insertions(+), 44 deletions(-)
create mode 100644 block/blklogwrites.c
[Qemu-devel] [PULL 0/5] Block layer patches
Posted by Kevin Wolf 6 years, 9 months ago
The following changes since commit a395717cbd26e7593d3c3fe81faca121ec6d13e8:

  Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2018-07-03 11:49:51 +0100)

are available in the git repository at:

  git://repo.or.cz/qemu/kevin.git tags/for-upstream

for you to fetch changes up to 59738025a1674bb7e07713c3c93ff4fb9c5079f5:

  block: Add blklogwrites (2018-07-03 16:09:48 +0200)

----------------------------------------------------------------
Block layer patches:

- qcow2: Use worker threads for compression to improve performance of
  'qemu-img convert -W' and compressed backup jobs
- blklogwrites: New filter driver to log write requests to an image in
  the dm-log-writes format

----------------------------------------------------------------
Aapo Vienamo (1):
      block: Add blklogwrites

Ari Sundholm (1):
      block: Move two block permission constants to the relevant enum

Vladimir Sementsov-Ogievskiy (3):
      qemu-img: allow compressed not-in-order writes
      qcow2: refactor data compression
      qcow2: add compress threads

 qapi/block-core.json  |  33 ++++-
 block/qcow2.h         |   3 +
 include/block/block.h |   7 +
 block.c               |   6 -
 block/blklogwrites.c  | 392 ++++++++++++++++++++++++++++++++++++++++++++++++++
 block/qcow2.c         | 136 ++++++++++++++----
 qemu-img.c            |   5 -
 MAINTAINERS           |   6 +
 block/Makefile.objs   |   1 +
 9 files changed, 545 insertions(+), 44 deletions(-)
 create mode 100644 block/blklogwrites.c

Re: [Qemu-devel] [PULL 0/5] Block layer patches
Posted by Peter Maydell 6 years, 9 months ago
On 3 July 2018 at 15:59, Kevin Wolf <kwolf@redhat.com> wrote:
> The following changes since commit a395717cbd26e7593d3c3fe81faca121ec6d13e8:
>
>   Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2018-07-03 11:49:51 +0100)
>
> are available in the git repository at:
>
>   git://repo.or.cz/qemu/kevin.git tags/for-upstream
>
> for you to fetch changes up to 59738025a1674bb7e07713c3c93ff4fb9c5079f5:
>
>   block: Add blklogwrites (2018-07-03 16:09:48 +0200)
>
> ----------------------------------------------------------------
> Block layer patches:
>
> - qcow2: Use worker threads for compression to improve performance of
>   'qemu-img convert -W' and compressed backup jobs
> - blklogwrites: New filter driver to log write requests to an image in
>   the dm-log-writes format
>
> ----------------------------------------------------------------

Hi; this gives some a warning on OpenBSD and NetBSD:

/home/qemu/block/qcow2.c: In function 'qcow2_compress':
/home/qemu/block/qcow2.c:3684:18: warning: assignment discards 'const'
qualifier from pointer target type
     strm.next_in = src;
                  ^

thanks
-- PMM

Re: [Qemu-devel] [PULL 0/5] Block layer patches
Posted by Kevin Wolf 6 years, 9 months ago
Am 04.07.2018 um 20:30 hat Peter Maydell geschrieben:
> On 3 July 2018 at 15:59, Kevin Wolf <kwolf@redhat.com> wrote:
> > The following changes since commit a395717cbd26e7593d3c3fe81faca121ec6d13e8:
> >
> >   Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2018-07-03 11:49:51 +0100)
> >
> > are available in the git repository at:
> >
> >   git://repo.or.cz/qemu/kevin.git tags/for-upstream
> >
> > for you to fetch changes up to 59738025a1674bb7e07713c3c93ff4fb9c5079f5:
> >
> >   block: Add blklogwrites (2018-07-03 16:09:48 +0200)
> >
> > ----------------------------------------------------------------
> > Block layer patches:
> >
> > - qcow2: Use worker threads for compression to improve performance of
> >   'qemu-img convert -W' and compressed backup jobs
> > - blklogwrites: New filter driver to log write requests to an image in
> >   the dm-log-writes format
> >
> > ----------------------------------------------------------------
> 
> Hi; this gives some a warning on OpenBSD and NetBSD:
> 
> /home/qemu/block/qcow2.c: In function 'qcow2_compress':
> /home/qemu/block/qcow2.c:3684:18: warning: assignment discards 'const'
> qualifier from pointer target type
>      strm.next_in = src;

Hm, looks like they use a really old version of the zlib header, which
doesn't care about const correctness. I'll add a cast to work around it.

Kevin