diff options
author | Xie Yongji <xieyongji@bytedance.com> | 2022-05-23 16:46:06 +0800 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2022-06-24 17:07:06 +0200 |
commit | 5c368029703da5f16dd2bbc4308c4486e74c1aa3 (patch) | |
tree | 694819ff849e8086a10b1ccc5cb5d38594f46992 /block/export/meson.build | |
parent | 8e7fd6f623fb8f6c6eb9b456d9221d4c8226f3d5 (diff) | |
download | qemu-5c368029703da5f16dd2bbc4308c4486e74c1aa3.zip qemu-5c368029703da5f16dd2bbc4308c4486e74c1aa3.tar.gz qemu-5c368029703da5f16dd2bbc4308c4486e74c1aa3.tar.bz2 |
block/export: Abstract out the logic of virtio-blk I/O process
Abstract the common logic of virtio-blk I/O process to a function
named virtio_blk_process_req(). It's needed for the following commit.
Signed-off-by: Xie Yongji <xieyongji@bytedance.com>
Message-Id: <20220523084611.91-4-xieyongji@bytedance.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/export/meson.build')
-rw-r--r-- | block/export/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/export/meson.build b/block/export/meson.build index 0a08e38..431e47c 100644 --- a/block/export/meson.build +++ b/block/export/meson.build @@ -1,7 +1,7 @@ blockdev_ss.add(files('export.c')) if have_vhost_user_blk_server - blockdev_ss.add(files('vhost-user-blk-server.c')) + blockdev_ss.add(files('vhost-user-blk-server.c', 'virtio-blk-handler.c')) endif blockdev_ss.add(when: fuse, if_true: files('fuse.c')) |