Patches applied successfully (
tree,
apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220624154103.185902-1-kwolf@redhat.com
Maintainers: John Snow <jsnow@redhat.com>, Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>, Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Eric Blake <eblake@redhat.com>, Xie Yongji <xieyongji@bytedance.com>, Coiby Xu <Coiby.Xu@gmail.com>, Stefan Hajnoczi <stefanha@redhat.com>, Fam Zheng <fam@euphon.net>, Ilya Dryomov <idryomov@gmail.com>, Peter Lieven <pl@kamp.de>, "Michael S. Tsirkin" <mst@redhat.com>, Stefano Stabellini <sstabellini@kernel.org>, Anthony Perard <anthony.perard@citrix.com>, Paul Durrant <paul@xen.org>, Paolo Bonzini <pbonzini@redhat.com>, Cornelia Huck <cohuck@redhat.com>, Markus Armbruster <armbru@redhat.com>
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