qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: Kevin Wolf <kwolf@redhat.com>, qemu-block@nongnu.org
Cc: qemu-devel@nongnu.org
Subject: Re: [PULL v2 00/20] Block layer patches
Date: Fri, 24 Jun 2022 13:38:27 -0700	[thread overview]
Message-ID: <fe0a1f7c-4b74-b02b-7b27-82428767bd30@linaro.org> (raw)
In-Reply-To: <20220624154103.185902-1-kwolf@redhat.com>

On 6/24/22 08:40, Kevin Wolf wrote:
> The following changes since commit 3a821c52e1a30ecd9a436f2c67cc66b5628c829f:
> 
>    Merge tag 'nvme-next-pull-request' of git://git.infradead.org/qemu-nvme into staging (2022-06-23 14:52:30 -0700)
> 
> are available in the Git repository at:
> 
>    git://repo.or.cz/qemu/kevin.git tags/for-upstream
> 
> for you to fetch changes up to 779d82e1d305f2a9cbd7f48cf6555ad58145e04a:
> 
>    vduse-blk: Add name option (2022-06-24 17:07:06 +0200)
> 
> ----------------------------------------------------------------
> Block layer patches
> 
> - Add vduse-blk export
> - Dirty bitmaps: Fix and improve bitmap merge
> - gluster: correctly set max_pdiscard
> - rbd: report a better error when namespace does not exist
> - aio_wait_kick: add missing memory barrier
> - Code cleanups

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~



> 
> ----------------------------------------------------------------
> Emanuele Giuseppe Esposito (1):
>        aio_wait_kick: add missing memory barrier
> 
> Eric Blake (1):
>        nbd: Drop dead code spotted by Coverity
> 
> Fabian Ebner (1):
>        block/gluster: correctly set max_pdiscard
> 
> Stefan Hajnoczi (3):
>        block: drop unused bdrv_co_drain() API
>        block: get rid of blk->guest_block_size
>        qsd: document vduse-blk exports
> 
> Stefano Garzarella (1):
>        block/rbd: report a better error when namespace does not exist
> 
> Vladimir Sementsov-Ogievskiy (3):
>        block: block_dirty_bitmap_merge(): fix error path
>        block: improve block_dirty_bitmap_merge(): don't allocate extra bitmap
>        block: simplify handling of try to merge different sized bitmaps
> 
> Xie Yongji (10):
>        block: Support passing NULL ops to blk_set_dev_ops()
>        block/export: Fix incorrect length passed to vu_queue_push()
>        block/export: Abstract out the logic of virtio-blk I/O process
>        linux-headers: Add vduse.h
>        libvduse: Add VDUSE (vDPA Device in Userspace) library
>        vduse-blk: Implement vduse-blk export
>        vduse-blk: Add vduse-blk resize support
>        libvduse: Add support for reconnecting
>        vduse-blk: Add serial option
>        vduse-blk: Add name option
> 
>   qapi/block-export.json                      |   29 +-
>   docs/tools/qemu-storage-daemon.rst          |   22 +
>   meson_options.txt                           |    4 +
>   block/export/vduse-blk.h                    |   20 +
>   block/export/virtio-blk-handler.h           |   37 +
>   include/block/aio-wait.h                    |    2 +
>   include/block/block-io.h                    |    1 -
>   include/block/block_int-io.h                |    2 +-
>   include/qemu/hbitmap.h                      |   15 +-
>   include/sysemu/block-backend-io.h           |    1 -
>   linux-headers/linux/vduse.h                 |  306 ++++++
>   subprojects/libvduse/include/atomic.h       |    1 +
>   subprojects/libvduse/include/compiler.h     |    1 +
>   subprojects/libvduse/libvduse.h             |  247 +++++
>   block/backup.c                              |    6 +-
>   block/block-backend.c                       |   12 +-
>   block/dirty-bitmap.c                        |   26 +-
>   block/export/export.c                       |    6 +
>   block/export/vduse-blk.c                    |  374 ++++++++
>   block/export/vhost-user-blk-server.c        |  263 +----
>   block/export/virtio-blk-handler.c           |  240 +++++
>   block/gluster.c                             |    2 +-
>   block/io.c                                  |   15 -
>   block/monitor/bitmap-qmp-cmds.c             |   40 +-
>   block/nbd.c                                 |    8 +-
>   block/rbd.c                                 |   24 +
>   hw/block/virtio-blk.c                       |    1 -
>   hw/block/xen-block.c                        |    1 -
>   hw/ide/core.c                               |    1 -
>   hw/scsi/scsi-disk.c                         |    1 -
>   hw/scsi/scsi-generic.c                      |    1 -
>   storage-daemon/qemu-storage-daemon.c        |   10 +
>   subprojects/libvduse/libvduse.c             | 1375 +++++++++++++++++++++++++++
>   util/aio-wait.c                             |   16 +-
>   util/hbitmap.c                              |   25 +-
>   MAINTAINERS                                 |    9 +
>   block/export/meson.build                    |    7 +-
>   meson.build                                 |   34 +
>   scripts/meson-buildoptions.sh               |    7 +
>   scripts/update-linux-headers.sh             |    2 +-
>   subprojects/libvduse/linux-headers/linux    |    1 +
>   subprojects/libvduse/meson.build            |   10 +
>   subprojects/libvduse/standard-headers/linux |    1 +
>   43 files changed, 2852 insertions(+), 354 deletions(-)
>   create mode 100644 block/export/vduse-blk.h
>   create mode 100644 block/export/virtio-blk-handler.h
>   create mode 100644 linux-headers/linux/vduse.h
>   create mode 120000 subprojects/libvduse/include/atomic.h
>   create mode 120000 subprojects/libvduse/include/compiler.h
>   create mode 100644 subprojects/libvduse/libvduse.h
>   create mode 100644 block/export/vduse-blk.c
>   create mode 100644 block/export/virtio-blk-handler.c
>   create mode 100644 subprojects/libvduse/libvduse.c
>   create mode 120000 subprojects/libvduse/linux-headers/linux
>   create mode 100644 subprojects/libvduse/meson.build
>   create mode 120000 subprojects/libvduse/standard-headers/linux
> 
> 



      parent reply	other threads:[~2022-06-24 20:40 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-24 15:40 [PULL v2 00/20] Block layer patches Kevin Wolf
2022-06-24 15:40 ` [PULL v2 01/20] block: drop unused bdrv_co_drain() API Kevin Wolf
2022-06-24 15:40 ` [PULL v2 02/20] block: get rid of blk->guest_block_size Kevin Wolf
2022-06-24 15:40 ` [PULL v2 03/20] block: block_dirty_bitmap_merge(): fix error path Kevin Wolf
2022-06-24 15:40 ` [PULL v2 04/20] block: improve block_dirty_bitmap_merge(): don't allocate extra bitmap Kevin Wolf
2022-06-24 15:40 ` [PULL v2 05/20] block: simplify handling of try to merge different sized bitmaps Kevin Wolf
2022-06-24 15:40 ` [PULL v2 06/20] block: Support passing NULL ops to blk_set_dev_ops() Kevin Wolf
2022-06-24 15:40 ` [PULL v2 07/20] block/export: Fix incorrect length passed to vu_queue_push() Kevin Wolf
2022-06-24 15:40 ` [PULL v2 08/20] block/export: Abstract out the logic of virtio-blk I/O process Kevin Wolf
2022-06-24 15:40 ` [PULL v2 09/20] linux-headers: Add vduse.h Kevin Wolf
2022-06-24 15:40 ` [PULL v2 10/20] libvduse: Add VDUSE (vDPA Device in Userspace) library Kevin Wolf
2022-06-27  4:45   ` Markus Armbruster
2022-06-27  8:34     ` Yongji Xie
2022-06-24 15:40 ` [PULL v2 11/20] vduse-blk: Implement vduse-blk export Kevin Wolf
2022-06-24 15:40 ` [PULL v2 12/20] vduse-blk: Add vduse-blk resize support Kevin Wolf
2022-06-24 15:40 ` [PULL v2 13/20] libvduse: Add support for reconnecting Kevin Wolf
2022-06-24 15:40 ` [PULL v2 14/20] qsd: document vduse-blk exports Kevin Wolf
2022-06-24 15:40 ` [PULL v2 15/20] block/rbd: report a better error when namespace does not exist Kevin Wolf
2022-06-24 15:40 ` [PULL v2 16/20] block/gluster: correctly set max_pdiscard Kevin Wolf
2022-06-24 15:41 ` [PULL v2 17/20] aio_wait_kick: add missing memory barrier Kevin Wolf
2022-06-24 15:41 ` [PULL v2 18/20] nbd: Drop dead code spotted by Coverity Kevin Wolf
2022-06-24 15:41 ` [PULL v2 19/20] vduse-blk: Add serial option Kevin Wolf
2022-06-24 15:41 ` [PULL v2 20/20] vduse-blk: Add name option Kevin Wolf
2022-06-24 20:38 ` Richard Henderson [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=fe0a1f7c-4b74-b02b-7b27-82428767bd30@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=kwolf@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).