1 | The following changes since commit a395717cbd26e7593d3c3fe81faca121ec6d13e8: | 1 | The following changes since commit 825b96dbcee23d134b691fc75618b59c5f53da32: |
---|---|---|---|
2 | 2 | ||
3 | Merge remote-tracking branch 'remotes/cody/tags/block-pull-request' into staging (2018-07-03 11:49:51 +0100) | 3 | Merge tag 'migration-20250310-pull-request' of https://gitlab.com/farosas/qemu into staging (2025-03-11 09:32:07 +0800) |
4 | 4 | ||
5 | are available in the git repository at: | 5 | are available in the Git repository at: |
6 | 6 | ||
7 | git://repo.or.cz/qemu/kevin.git tags/for-upstream | 7 | https://repo.or.cz/qemu/kevin.git tags/for-upstream |
8 | 8 | ||
9 | for you to fetch changes up to 59738025a1674bb7e07713c3c93ff4fb9c5079f5: | 9 | for you to fetch changes up to a93c04f3cbe690877b3297a9df4767aa811fcd97: |
10 | 10 | ||
11 | block: Add blklogwrites (2018-07-03 16:09:48 +0200) | 11 | virtio-scsi: only expose cmd vqs via iothread-vq-mapping (2025-03-11 15:49:22 +0100) |
12 | 12 | ||
13 | ---------------------------------------------------------------- | 13 | ---------------------------------------------------------------- |
14 | Block layer patches: | 14 | Block layer patches |
15 | 15 | ||
16 | - qcow2: Use worker threads for compression to improve performance of | 16 | - virtio-scsi: add iothread-vq-mapping parameter |
17 | 'qemu-img convert -W' and compressed backup jobs | 17 | - Improve writethrough performance |
18 | - blklogwrites: New filter driver to log write requests to an image in | 18 | - Fix missing zero init in bdrv_snapshot_goto() |
19 | the dm-log-writes format | 19 | - Code cleanup and iotests fixes |
20 | 20 | ||
21 | ---------------------------------------------------------------- | 21 | ---------------------------------------------------------------- |
22 | Aapo Vienamo (1): | 22 | Kevin Wolf (8): |
23 | block: Add blklogwrites | 23 | block: Remove unused blk_op_is_blocked() |
24 | block: Zero block driver state before reopening | ||
25 | file-posix: Support FUA writes | ||
26 | block/io: Ignore FUA with cache.no-flush=on | ||
27 | aio: Create AioPolledEvent | ||
28 | aio-posix: Factor out adjust_polling_time() | ||
29 | aio-posix: Separate AioPolledEvent per AioHandler | ||
30 | aio-posix: Adjust polling time also for new handlers | ||
24 | 31 | ||
25 | Ari Sundholm (1): | 32 | Stefan Hajnoczi (13): |
26 | block: Move two block permission constants to the relevant enum | 33 | scsi-disk: drop unused SCSIDiskState->bh field |
34 | dma: use current AioContext for dma_blk_io() | ||
35 | scsi: track per-SCSIRequest AioContext | ||
36 | scsi: introduce requests_lock | ||
37 | virtio-scsi: introduce event and ctrl virtqueue locks | ||
38 | virtio-scsi: protect events_dropped field | ||
39 | virtio-scsi: perform TMFs in appropriate AioContexts | ||
40 | virtio-blk: extract cleanup_iothread_vq_mapping() function | ||
41 | virtio-blk: tidy up iothread_vq_mapping functions | ||
42 | virtio: extract iothread-vq-mapping.h API | ||
43 | virtio-scsi: add iothread-vq-mapping parameter | ||
44 | virtio-scsi: handle ctrl virtqueue in main loop | ||
45 | virtio-scsi: only expose cmd vqs via iothread-vq-mapping | ||
27 | 46 | ||
28 | Vladimir Sementsov-Ogievskiy (3): | 47 | Thomas Huth (1): |
29 | qemu-img: allow compressed not-in-order writes | 48 | iotests: Limit qsd-migrate to working formats |
30 | qcow2: refactor data compression | ||
31 | qcow2: add compress threads | ||
32 | 49 | ||
33 | qapi/block-core.json | 33 ++++- | 50 | include/block/aio.h | 5 +- |
34 | block/qcow2.h | 3 + | 51 | include/block/raw-aio.h | 8 +- |
35 | include/block/block.h | 7 + | 52 | include/hw/scsi/scsi.h | 8 +- |
36 | block.c | 6 - | 53 | include/hw/virtio/iothread-vq-mapping.h | 45 +++ |
37 | block/blklogwrites.c | 392 ++++++++++++++++++++++++++++++++++++++++++++++++++ | 54 | include/hw/virtio/virtio-scsi.h | 15 +- |
38 | block/qcow2.c | 136 ++++++++++++++---- | 55 | include/system/block-backend-global-state.h | 1 - |
39 | qemu-img.c | 5 - | 56 | include/system/dma.h | 3 +- |
40 | MAINTAINERS | 6 + | 57 | util/aio-posix.h | 1 + |
41 | block/Makefile.objs | 1 + | 58 | block/block-backend.c | 12 - |
42 | 9 files changed, 545 insertions(+), 44 deletions(-) | 59 | block/file-posix.c | 26 +- |
43 | create mode 100644 block/blklogwrites.c | 60 | block/io.c | 4 + |
44 | 61 | block/io_uring.c | 13 +- | |
62 | block/linux-aio.c | 24 +- | ||
63 | block/snapshot.c | 1 + | ||
64 | hw/block/virtio-blk.c | 132 +------- | ||
65 | hw/ide/core.c | 3 +- | ||
66 | hw/ide/macio.c | 3 +- | ||
67 | hw/scsi/scsi-bus.c | 121 +++++-- | ||
68 | hw/scsi/scsi-disk.c | 24 +- | ||
69 | hw/scsi/virtio-scsi-dataplane.c | 103 ++++-- | ||
70 | hw/scsi/virtio-scsi.c | 502 ++++++++++++++++------------ | ||
71 | hw/virtio/iothread-vq-mapping.c | 131 ++++++++ | ||
72 | system/dma-helpers.c | 8 +- | ||
73 | util/aio-posix.c | 114 ++++--- | ||
74 | util/async.c | 1 - | ||
75 | hw/virtio/meson.build | 1 + | ||
76 | meson.build | 4 + | ||
77 | tests/qemu-iotests/tests/qsd-migrate | 2 +- | ||
78 | 28 files changed, 803 insertions(+), 512 deletions(-) | ||
79 | create mode 100644 include/hw/virtio/iothread-vq-mapping.h | ||
80 | create mode 100644 hw/virtio/iothread-vq-mapping.c | diff view generated by jsdifflib |
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 1 | Commit fc4e394b28 removed the last caller of blk_op_is_blocked(). Remove |
---|---|---|---|
2 | the now unused function. | ||
2 | 3 | ||
3 | Make a separate function for compression to be parallelized later. | 4 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
4 | - use .avail_out field instead of .next_out to calculate size of | 5 | Message-ID: <20250206165331.379033-1-kwolf@redhat.com> |
5 | compressed data. It looks more natural and it allows to keep dest to | 6 | Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> |
6 | be void pointer | 7 | Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> |
7 | - set avail_out to be at least one byte less than input, to be sure | ||
8 | avoid inefficient compression earlier | ||
9 | |||
10 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | ||
11 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | 8 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
12 | --- | 9 | --- |
13 | block/qcow2.c | 76 ++++++++++++++++++++++++++++++++++++++--------------------- | 10 | include/system/block-backend-global-state.h | 1 - |
14 | 1 file changed, 49 insertions(+), 27 deletions(-) | 11 | block/block-backend.c | 12 ------------ |
12 | 2 files changed, 13 deletions(-) | ||
15 | 13 | ||
16 | diff --git a/block/qcow2.c b/block/qcow2.c | 14 | diff --git a/include/system/block-backend-global-state.h b/include/system/block-backend-global-state.h |
17 | index XXXXXXX..XXXXXXX 100644 | 15 | index XXXXXXX..XXXXXXX 100644 |
18 | --- a/block/qcow2.c | 16 | --- a/include/system/block-backend-global-state.h |
19 | +++ b/block/qcow2.c | 17 | +++ b/include/system/block-backend-global-state.h |
20 | @@ -XXX,XX +XXX,XX @@ | 18 | @@ -XXX,XX +XXX,XX @@ bool blk_supports_write_perm(BlockBackend *blk); |
21 | */ | 19 | bool blk_is_sg(BlockBackend *blk); |
22 | 20 | void blk_set_enable_write_cache(BlockBackend *blk, bool wce); | |
23 | #include "qemu/osdep.h" | 21 | int blk_get_flags(BlockBackend *blk); |
24 | + | 22 | -bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp); |
25 | +#define ZLIB_CONST | 23 | int blk_set_aio_context(BlockBackend *blk, AioContext *new_context, |
26 | +#include <zlib.h> | 24 | Error **errp); |
27 | + | 25 | void blk_add_aio_context_notifier(BlockBackend *blk, |
28 | #include "block/block_int.h" | 26 | diff --git a/block/block-backend.c b/block/block-backend.c |
29 | #include "block/qdict.h" | 27 | index XXXXXXX..XXXXXXX 100644 |
30 | #include "sysemu/block-backend.h" | 28 | --- a/block/block-backend.c |
31 | #include "qemu/module.h" | 29 | +++ b/block/block-backend.c |
32 | -#include <zlib.h> | 30 | @@ -XXX,XX +XXX,XX @@ void *blk_blockalign(BlockBackend *blk, size_t size) |
33 | #include "qcow2.h" | 31 | return qemu_blockalign(blk ? blk_bs(blk) : NULL, size); |
34 | #include "qemu/error-report.h" | ||
35 | #include "qapi/error.h" | ||
36 | @@ -XXX,XX +XXX,XX @@ fail: | ||
37 | return ret; | ||
38 | } | 32 | } |
39 | 33 | ||
40 | +/* | 34 | -bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp) |
41 | + * qcow2_compress() | 35 | -{ |
42 | + * | 36 | - BlockDriverState *bs = blk_bs(blk); |
43 | + * @dest - destination buffer, at least of @size-1 bytes | 37 | - GLOBAL_STATE_CODE(); |
44 | + * @src - source buffer, @size bytes | 38 | - GRAPH_RDLOCK_GUARD_MAINLOOP(); |
45 | + * | 39 | - |
46 | + * Returns: compressed size on success | 40 | - if (!bs) { |
47 | + * -1 if compression is inefficient | 41 | - return false; |
48 | + * -2 on any other error | ||
49 | + */ | ||
50 | +static ssize_t qcow2_compress(void *dest, const void *src, size_t size) | ||
51 | +{ | ||
52 | + ssize_t ret; | ||
53 | + z_stream strm; | ||
54 | + | ||
55 | + /* best compression, small window, no zlib header */ | ||
56 | + memset(&strm, 0, sizeof(strm)); | ||
57 | + ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION, Z_DEFLATED, | ||
58 | + -12, 9, Z_DEFAULT_STRATEGY); | ||
59 | + if (ret != 0) { | ||
60 | + return -2; | ||
61 | + } | ||
62 | + | ||
63 | + strm.avail_in = size; | ||
64 | + strm.next_in = src; | ||
65 | + strm.avail_out = size - 1; | ||
66 | + strm.next_out = dest; | ||
67 | + | ||
68 | + ret = deflate(&strm, Z_FINISH); | ||
69 | + if (ret == Z_STREAM_END) { | ||
70 | + ret = size - 1 - strm.avail_out; | ||
71 | + } else { | ||
72 | + ret = (ret == Z_OK ? -1 : -2); | ||
73 | + } | ||
74 | + | ||
75 | + deflateEnd(&strm); | ||
76 | + | ||
77 | + return ret; | ||
78 | +} | ||
79 | + | ||
80 | /* XXX: put compressed sectors first, then all the cluster aligned | ||
81 | tables to avoid losing bytes in alignment */ | ||
82 | static coroutine_fn int | ||
83 | @@ -XXX,XX +XXX,XX @@ qcow2_co_pwritev_compressed(BlockDriverState *bs, uint64_t offset, | ||
84 | BDRVQcow2State *s = bs->opaque; | ||
85 | QEMUIOVector hd_qiov; | ||
86 | struct iovec iov; | ||
87 | - z_stream strm; | ||
88 | - int ret, out_len; | ||
89 | + int ret; | ||
90 | + size_t out_len; | ||
91 | uint8_t *buf, *out_buf; | ||
92 | int64_t cluster_offset; | ||
93 | |||
94 | @@ -XXX,XX +XXX,XX @@ qcow2_co_pwritev_compressed(BlockDriverState *bs, uint64_t offset, | ||
95 | |||
96 | out_buf = g_malloc(s->cluster_size); | ||
97 | |||
98 | - /* best compression, small window, no zlib header */ | ||
99 | - memset(&strm, 0, sizeof(strm)); | ||
100 | - ret = deflateInit2(&strm, Z_DEFAULT_COMPRESSION, | ||
101 | - Z_DEFLATED, -12, | ||
102 | - 9, Z_DEFAULT_STRATEGY); | ||
103 | - if (ret != 0) { | ||
104 | + out_len = qcow2_compress(out_buf, buf, s->cluster_size); | ||
105 | + if (out_len == -2) { | ||
106 | ret = -EINVAL; | ||
107 | goto fail; | ||
108 | - } | 42 | - } |
109 | - | 43 | - |
110 | - strm.avail_in = s->cluster_size; | 44 | - return bdrv_op_is_blocked(bs, op, errp); |
111 | - strm.next_in = (uint8_t *)buf; | 45 | -} |
112 | - strm.avail_out = s->cluster_size; | 46 | |
113 | - strm.next_out = out_buf; | 47 | /** |
114 | - | 48 | * Return BB's current AioContext. Note that this context may change |
115 | - ret = deflate(&strm, Z_FINISH); | ||
116 | - if (ret != Z_STREAM_END && ret != Z_OK) { | ||
117 | - deflateEnd(&strm); | ||
118 | - ret = -EINVAL; | ||
119 | - goto fail; | ||
120 | - } | ||
121 | - out_len = strm.next_out - out_buf; | ||
122 | - | ||
123 | - deflateEnd(&strm); | ||
124 | - | ||
125 | - if (ret != Z_STREAM_END || out_len >= s->cluster_size) { | ||
126 | + } else if (out_len == -1) { | ||
127 | /* could not compress: write normal cluster */ | ||
128 | ret = qcow2_co_pwritev(bs, offset, bytes, qiov, 0); | ||
129 | if (ret < 0) { | ||
130 | -- | 49 | -- |
131 | 2.13.6 | 50 | 2.48.1 |
132 | 51 | ||
133 | 52 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | Block drivers assume in their .bdrv_open() implementation that their | ||
2 | state in bs->opaque has been zeroed; it is initially allocated with | ||
3 | g_malloc0() in bdrv_open_driver(). | ||
1 | 4 | ||
5 | bdrv_snapshot_goto() needs to make sure that it is zeroed again before | ||
6 | calling drv->bdrv_open() to avoid that block drivers use stale values. | ||
7 | |||
8 | One symptom of this bug is VMDK running into a double free when the user | ||
9 | tries to apply an internal snapshot like 'qemu-img snapshot -a test | ||
10 | test.vmdk'. This should be a graceful error because VMDK doesn't support | ||
11 | internal snapshots. | ||
12 | |||
13 | ==25507== Invalid free() / delete / delete[] / realloc() | ||
14 | ==25507== at 0x484B347: realloc (vg_replace_malloc.c:1801) | ||
15 | ==25507== by 0x54B592A: g_realloc (gmem.c:171) | ||
16 | ==25507== by 0x1B221D: vmdk_add_extent (../block/vmdk.c:570) | ||
17 | ==25507== by 0x1B1084: vmdk_open_sparse (../block/vmdk.c:1059) | ||
18 | ==25507== by 0x1AF3D8: vmdk_open (../block/vmdk.c:1371) | ||
19 | ==25507== by 0x1A2AE0: bdrv_snapshot_goto (../block/snapshot.c:299) | ||
20 | ==25507== by 0x205C77: img_snapshot (../qemu-img.c:3500) | ||
21 | ==25507== by 0x58FA087: (below main) (libc_start_call_main.h:58) | ||
22 | ==25507== Address 0x832f3e0 is 0 bytes inside a block of size 272 free'd | ||
23 | ==25507== at 0x4846B83: free (vg_replace_malloc.c:989) | ||
24 | ==25507== by 0x54AEAC4: g_free (gmem.c:208) | ||
25 | ==25507== by 0x1AF629: vmdk_close (../block/vmdk.c:2889) | ||
26 | ==25507== by 0x1A2A9C: bdrv_snapshot_goto (../block/snapshot.c:290) | ||
27 | ==25507== by 0x205C77: img_snapshot (../qemu-img.c:3500) | ||
28 | ==25507== by 0x58FA087: (below main) (libc_start_call_main.h:58) | ||
29 | |||
30 | This error was discovered by fuzzing qemu-img. | ||
31 | |||
32 | Cc: qemu-stable@nongnu.org | ||
33 | Closes: https://gitlab.com/qemu-project/qemu/-/issues/2853 | ||
34 | Closes: https://gitlab.com/qemu-project/qemu/-/issues/2851 | ||
35 | Reported-by: Denis Rastyogin <gerben@altlinux.org> | ||
36 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
37 | Message-ID: <20250310104858.28221-1-kwolf@redhat.com> | ||
38 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
39 | --- | ||
40 | block/snapshot.c | 1 + | ||
41 | 1 file changed, 1 insertion(+) | ||
42 | |||
43 | diff --git a/block/snapshot.c b/block/snapshot.c | ||
44 | index XXXXXXX..XXXXXXX 100644 | ||
45 | --- a/block/snapshot.c | ||
46 | +++ b/block/snapshot.c | ||
47 | @@ -XXX,XX +XXX,XX @@ int bdrv_snapshot_goto(BlockDriverState *bs, | ||
48 | bdrv_graph_wrunlock(); | ||
49 | |||
50 | ret = bdrv_snapshot_goto(fallback_bs, snapshot_id, errp); | ||
51 | + memset(bs->opaque, 0, drv->instance_size); | ||
52 | open_ret = drv->bdrv_open(bs, options, bs->open_flags, &local_err); | ||
53 | qobject_unref(options); | ||
54 | if (open_ret < 0) { | ||
55 | -- | ||
56 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | 1 | Until now, FUA was always emulated with a separate flush after the write | |
2 | for file-posix. The overhead of processing a second request can reduce | ||
3 | performance significantly for a guest disk that has disabled the write | ||
4 | cache, especially if the host disk is already write through, too, and | ||
5 | the flush isn't actually doing anything. | ||
6 | |||
7 | Advertise support for REQ_FUA in write requests and implement it for | ||
8 | Linux AIO and io_uring using the RWF_DSYNC flag for write requests. The | ||
9 | thread pool still performs a separate fdatasync() call. This can be | ||
10 | improved later by using the pwritev2() syscall if available. | ||
11 | |||
12 | As an example, this is how fio numbers can be improved in some scenarios | ||
13 | with this patch (all using virtio-blk with cache=directsync on an nvme | ||
14 | block device for the VM, fio with ioengine=libaio,direct=1,sync=1): | ||
15 | |||
16 | | old | with FUA support | ||
17 | ------------------------------+---------------+------------------- | ||
18 | bs=4k, iodepth=1, numjobs=1 | 45.6k iops | 56.1k iops | ||
19 | bs=4k, iodepth=1, numjobs=16 | 183.3k iops | 236.0k iops | ||
20 | bs=4k, iodepth=16, numjobs=1 | 258.4k iops | 311.1k iops | ||
21 | |||
22 | However, not all scenarios are clear wins. On another slower disk I saw | ||
23 | little to no improvment. In fact, in two corner case scenarios, I even | ||
24 | observed a regression, which I however consider acceptable: | ||
25 | |||
26 | 1. On slow host disks in a write through cache mode, when the guest is | ||
27 | using virtio-blk in a separate iothread so that polling can be | ||
28 | enabled, and each completion is quickly followed up with a new | ||
29 | request (so that polling gets it), it can happen that enabling FUA | ||
30 | makes things slower - the additional very fast no-op flush we used to | ||
31 | have gave the adaptive polling algorithm a success so that it kept | ||
32 | polling. Without it, we only have the slow write request, which | ||
33 | disables polling. This is a problem in the polling algorithm that | ||
34 | will be fixed later in this series. | ||
35 | |||
36 | 2. With a high queue depth, it can be beneficial to have flush requests | ||
37 | for another reason: The optimisation in bdrv_co_flush() that flushes | ||
38 | only once per write generation acts as a synchronisation mechanism | ||
39 | that lets all requests complete at the same time. This can result in | ||
40 | better batching and if the disk is very fast (I only saw this with a | ||
41 | null_blk backend), this can make up for the overhead of the flush and | ||
42 | improve throughput. In theory, we could optionally introduce a | ||
43 | similar artificial latency in the normal completion path to achieve | ||
44 | the same kind of completion batching. This is not implemented in this | ||
45 | series. | ||
46 | |||
47 | Compatibility is not a concern for io_uring, it has supported RWF_DSYNC | ||
48 | from the start. Linux AIO started supporting it in Linux 4.13 and libaio | ||
49 | 0.3.111. The kernel is not a problem for any supported build platform, | ||
50 | so it's not necessary to add runtime checks. However, openSUSE is still | ||
51 | stuck with an older libaio version that would break the build. We must | ||
52 | detect this at build time to avoid build failures. | ||
53 | |||
54 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
55 | Message-ID: <20250307221634.71951-2-kwolf@redhat.com> | ||
56 | Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
57 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
58 | --- | ||
59 | include/block/raw-aio.h | 8 ++++++-- | ||
60 | block/file-posix.c | 26 ++++++++++++++++++-------- | ||
61 | block/io_uring.c | 13 ++++++++----- | ||
62 | block/linux-aio.c | 24 +++++++++++++++++++++--- | ||
63 | meson.build | 4 ++++ | ||
64 | 5 files changed, 57 insertions(+), 18 deletions(-) | ||
65 | |||
66 | diff --git a/include/block/raw-aio.h b/include/block/raw-aio.h | ||
67 | index XXXXXXX..XXXXXXX 100644 | ||
68 | --- a/include/block/raw-aio.h | ||
69 | +++ b/include/block/raw-aio.h | ||
70 | @@ -XXX,XX +XXX,XX @@ | ||
71 | #define QEMU_RAW_AIO_H | ||
72 | |||
73 | #include "block/aio.h" | ||
74 | +#include "block/block-common.h" | ||
75 | #include "qemu/iov.h" | ||
76 | |||
77 | /* AIO request types */ | ||
78 | @@ -XXX,XX +XXX,XX @@ void laio_cleanup(LinuxAioState *s); | ||
79 | |||
80 | /* laio_co_submit: submit I/O requests in the thread's current AioContext. */ | ||
81 | int coroutine_fn laio_co_submit(int fd, uint64_t offset, QEMUIOVector *qiov, | ||
82 | - int type, uint64_t dev_max_batch); | ||
83 | + int type, BdrvRequestFlags flags, | ||
84 | + uint64_t dev_max_batch); | ||
85 | |||
86 | bool laio_has_fdsync(int); | ||
87 | +bool laio_has_fua(void); | ||
88 | void laio_detach_aio_context(LinuxAioState *s, AioContext *old_context); | ||
89 | void laio_attach_aio_context(LinuxAioState *s, AioContext *new_context); | ||
90 | #endif | ||
91 | @@ -XXX,XX +XXX,XX @@ void luring_cleanup(LuringState *s); | ||
92 | |||
93 | /* luring_co_submit: submit I/O requests in the thread's current AioContext. */ | ||
94 | int coroutine_fn luring_co_submit(BlockDriverState *bs, int fd, uint64_t offset, | ||
95 | - QEMUIOVector *qiov, int type); | ||
96 | + QEMUIOVector *qiov, int type, | ||
97 | + BdrvRequestFlags flags); | ||
98 | void luring_detach_aio_context(LuringState *s, AioContext *old_context); | ||
99 | void luring_attach_aio_context(LuringState *s, AioContext *new_context); | ||
100 | #endif | ||
101 | diff --git a/block/file-posix.c b/block/file-posix.c | ||
102 | index XXXXXXX..XXXXXXX 100644 | ||
103 | --- a/block/file-posix.c | ||
104 | +++ b/block/file-posix.c | ||
105 | @@ -XXX,XX +XXX,XX @@ static int fd_open(BlockDriverState *bs) | ||
106 | } | ||
107 | |||
108 | static int64_t raw_getlength(BlockDriverState *bs); | ||
109 | +static int coroutine_fn raw_co_flush_to_disk(BlockDriverState *bs); | ||
110 | |||
111 | typedef struct RawPosixAIOData { | ||
112 | BlockDriverState *bs; | ||
113 | @@ -XXX,XX +XXX,XX @@ static int raw_open_common(BlockDriverState *bs, QDict *options, | ||
114 | #endif | ||
115 | s->needs_alignment = raw_needs_alignment(bs); | ||
116 | |||
117 | + if (!s->use_linux_aio || laio_has_fua()) { | ||
118 | + bs->supported_write_flags = BDRV_REQ_FUA; | ||
119 | + } | ||
120 | + | ||
121 | bs->supported_zero_flags = BDRV_REQ_MAY_UNMAP | BDRV_REQ_NO_FALLBACK; | ||
122 | if (S_ISREG(st.st_mode)) { | ||
123 | /* When extending regular files, we get zeros from the OS */ | ||
124 | @@ -XXX,XX +XXX,XX @@ static inline bool raw_check_linux_aio(BDRVRawState *s) | ||
125 | #endif | ||
126 | |||
127 | static int coroutine_fn raw_co_prw(BlockDriverState *bs, int64_t *offset_ptr, | ||
128 | - uint64_t bytes, QEMUIOVector *qiov, int type) | ||
129 | + uint64_t bytes, QEMUIOVector *qiov, int type, | ||
130 | + int flags) | ||
131 | { | ||
132 | BDRVRawState *s = bs->opaque; | ||
133 | RawPosixAIOData acb; | ||
134 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn raw_co_prw(BlockDriverState *bs, int64_t *offset_ptr, | ||
135 | #ifdef CONFIG_LINUX_IO_URING | ||
136 | } else if (raw_check_linux_io_uring(s)) { | ||
137 | assert(qiov->size == bytes); | ||
138 | - ret = luring_co_submit(bs, s->fd, offset, qiov, type); | ||
139 | + ret = luring_co_submit(bs, s->fd, offset, qiov, type, flags); | ||
140 | goto out; | ||
141 | #endif | ||
142 | #ifdef CONFIG_LINUX_AIO | ||
143 | } else if (raw_check_linux_aio(s)) { | ||
144 | assert(qiov->size == bytes); | ||
145 | - ret = laio_co_submit(s->fd, offset, qiov, type, | ||
146 | + ret = laio_co_submit(s->fd, offset, qiov, type, flags, | ||
147 | s->aio_max_batch); | ||
148 | goto out; | ||
149 | #endif | ||
150 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn raw_co_prw(BlockDriverState *bs, int64_t *offset_ptr, | ||
151 | |||
152 | assert(qiov->size == bytes); | ||
153 | ret = raw_thread_pool_submit(handle_aiocb_rw, &acb); | ||
154 | + if (ret == 0 && (flags & BDRV_REQ_FUA)) { | ||
155 | + /* TODO Use pwritev2() instead if it's available */ | ||
156 | + ret = raw_co_flush_to_disk(bs); | ||
157 | + } | ||
158 | goto out; /* Avoid the compiler err of unused label */ | ||
159 | |||
160 | out: | ||
161 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn raw_co_preadv(BlockDriverState *bs, int64_t offset, | ||
162 | int64_t bytes, QEMUIOVector *qiov, | ||
163 | BdrvRequestFlags flags) | ||
164 | { | ||
165 | - return raw_co_prw(bs, &offset, bytes, qiov, QEMU_AIO_READ); | ||
166 | + return raw_co_prw(bs, &offset, bytes, qiov, QEMU_AIO_READ, flags); | ||
167 | } | ||
168 | |||
169 | static int coroutine_fn raw_co_pwritev(BlockDriverState *bs, int64_t offset, | ||
170 | int64_t bytes, QEMUIOVector *qiov, | ||
171 | BdrvRequestFlags flags) | ||
172 | { | ||
173 | - return raw_co_prw(bs, &offset, bytes, qiov, QEMU_AIO_WRITE); | ||
174 | + return raw_co_prw(bs, &offset, bytes, qiov, QEMU_AIO_WRITE, flags); | ||
175 | } | ||
176 | |||
177 | static int coroutine_fn raw_co_flush_to_disk(BlockDriverState *bs) | ||
178 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn raw_co_flush_to_disk(BlockDriverState *bs) | ||
179 | |||
180 | #ifdef CONFIG_LINUX_IO_URING | ||
181 | if (raw_check_linux_io_uring(s)) { | ||
182 | - return luring_co_submit(bs, s->fd, 0, NULL, QEMU_AIO_FLUSH); | ||
183 | + return luring_co_submit(bs, s->fd, 0, NULL, QEMU_AIO_FLUSH, 0); | ||
184 | } | ||
185 | #endif | ||
186 | #ifdef CONFIG_LINUX_AIO | ||
187 | if (s->has_laio_fdsync && raw_check_linux_aio(s)) { | ||
188 | - return laio_co_submit(s->fd, 0, NULL, QEMU_AIO_FLUSH, 0); | ||
189 | + return laio_co_submit(s->fd, 0, NULL, QEMU_AIO_FLUSH, 0, 0); | ||
190 | } | ||
191 | #endif | ||
192 | return raw_thread_pool_submit(handle_aiocb_flush, &acb); | ||
193 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn raw_co_zone_append(BlockDriverState *bs, | ||
194 | } | ||
195 | |||
196 | trace_zbd_zone_append(bs, *offset >> BDRV_SECTOR_BITS); | ||
197 | - return raw_co_prw(bs, offset, len, qiov, QEMU_AIO_ZONE_APPEND); | ||
198 | + return raw_co_prw(bs, offset, len, qiov, QEMU_AIO_ZONE_APPEND, 0); | ||
199 | } | ||
200 | #endif | ||
201 | |||
202 | diff --git a/block/io_uring.c b/block/io_uring.c | ||
203 | index XXXXXXX..XXXXXXX 100644 | ||
204 | --- a/block/io_uring.c | ||
205 | +++ b/block/io_uring.c | ||
206 | @@ -XXX,XX +XXX,XX @@ static void luring_deferred_fn(void *opaque) | ||
207 | * | ||
208 | */ | ||
209 | static int luring_do_submit(int fd, LuringAIOCB *luringcb, LuringState *s, | ||
210 | - uint64_t offset, int type) | ||
211 | + uint64_t offset, int type, BdrvRequestFlags flags) | ||
212 | { | ||
213 | int ret; | ||
214 | struct io_uring_sqe *sqes = &luringcb->sqeq; | ||
215 | + int luring_flags; | ||
216 | |||
217 | switch (type) { | ||
218 | case QEMU_AIO_WRITE: | ||
219 | - io_uring_prep_writev(sqes, fd, luringcb->qiov->iov, | ||
220 | - luringcb->qiov->niov, offset); | ||
221 | + luring_flags = (flags & BDRV_REQ_FUA) ? RWF_DSYNC : 0; | ||
222 | + io_uring_prep_writev2(sqes, fd, luringcb->qiov->iov, | ||
223 | + luringcb->qiov->niov, offset, luring_flags); | ||
224 | break; | ||
225 | case QEMU_AIO_ZONE_APPEND: | ||
226 | io_uring_prep_writev(sqes, fd, luringcb->qiov->iov, | ||
227 | @@ -XXX,XX +XXX,XX @@ static int luring_do_submit(int fd, LuringAIOCB *luringcb, LuringState *s, | ||
228 | } | ||
229 | |||
230 | int coroutine_fn luring_co_submit(BlockDriverState *bs, int fd, uint64_t offset, | ||
231 | - QEMUIOVector *qiov, int type) | ||
232 | + QEMUIOVector *qiov, int type, | ||
233 | + BdrvRequestFlags flags) | ||
234 | { | ||
235 | int ret; | ||
236 | AioContext *ctx = qemu_get_current_aio_context(); | ||
237 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn luring_co_submit(BlockDriverState *bs, int fd, uint64_t offset, | ||
238 | }; | ||
239 | trace_luring_co_submit(bs, s, &luringcb, fd, offset, qiov ? qiov->size : 0, | ||
240 | type); | ||
241 | - ret = luring_do_submit(fd, &luringcb, s, offset, type); | ||
242 | + ret = luring_do_submit(fd, &luringcb, s, offset, type, flags); | ||
243 | |||
244 | if (ret < 0) { | ||
245 | return ret; | ||
246 | diff --git a/block/linux-aio.c b/block/linux-aio.c | ||
247 | index XXXXXXX..XXXXXXX 100644 | ||
248 | --- a/block/linux-aio.c | ||
249 | +++ b/block/linux-aio.c | ||
250 | @@ -XXX,XX +XXX,XX @@ static void laio_deferred_fn(void *opaque) | ||
251 | } | ||
252 | |||
253 | static int laio_do_submit(int fd, struct qemu_laiocb *laiocb, off_t offset, | ||
254 | - int type, uint64_t dev_max_batch) | ||
255 | + int type, BdrvRequestFlags flags, | ||
256 | + uint64_t dev_max_batch) | ||
257 | { | ||
258 | LinuxAioState *s = laiocb->ctx; | ||
259 | struct iocb *iocbs = &laiocb->iocb; | ||
260 | QEMUIOVector *qiov = laiocb->qiov; | ||
261 | + int laio_flags; | ||
262 | |||
263 | switch (type) { | ||
264 | case QEMU_AIO_WRITE: | ||
265 | +#ifdef HAVE_IO_PREP_PWRITEV2 | ||
266 | + laio_flags = (flags & BDRV_REQ_FUA) ? RWF_DSYNC : 0; | ||
267 | + io_prep_pwritev2(iocbs, fd, qiov->iov, qiov->niov, offset, laio_flags); | ||
268 | +#else | ||
269 | + assert(flags == 0); | ||
270 | io_prep_pwritev(iocbs, fd, qiov->iov, qiov->niov, offset); | ||
271 | +#endif | ||
272 | break; | ||
273 | case QEMU_AIO_ZONE_APPEND: | ||
274 | io_prep_pwritev(iocbs, fd, qiov->iov, qiov->niov, offset); | ||
275 | @@ -XXX,XX +XXX,XX @@ static int laio_do_submit(int fd, struct qemu_laiocb *laiocb, off_t offset, | ||
276 | } | ||
277 | |||
278 | int coroutine_fn laio_co_submit(int fd, uint64_t offset, QEMUIOVector *qiov, | ||
279 | - int type, uint64_t dev_max_batch) | ||
280 | + int type, BdrvRequestFlags flags, | ||
281 | + uint64_t dev_max_batch) | ||
282 | { | ||
283 | int ret; | ||
284 | AioContext *ctx = qemu_get_current_aio_context(); | ||
285 | @@ -XXX,XX +XXX,XX @@ int coroutine_fn laio_co_submit(int fd, uint64_t offset, QEMUIOVector *qiov, | ||
286 | .qiov = qiov, | ||
287 | }; | ||
288 | |||
289 | - ret = laio_do_submit(fd, &laiocb, offset, type, dev_max_batch); | ||
290 | + ret = laio_do_submit(fd, &laiocb, offset, type, flags, dev_max_batch); | ||
291 | if (ret < 0) { | ||
292 | return ret; | ||
293 | } | ||
294 | @@ -XXX,XX +XXX,XX @@ bool laio_has_fdsync(int fd) | ||
295 | io_destroy(ctx); | ||
296 | return (ret == -EINVAL) ? false : true; | ||
297 | } | ||
298 | + | ||
299 | +bool laio_has_fua(void) | ||
300 | +{ | ||
301 | +#ifdef HAVE_IO_PREP_PWRITEV2 | ||
302 | + return true; | ||
303 | +#else | ||
304 | + return false; | ||
305 | +#endif | ||
306 | +} | ||
307 | diff --git a/meson.build b/meson.build | ||
308 | index XXXXXXX..XXXXXXX 100644 | ||
309 | --- a/meson.build | ||
310 | +++ b/meson.build | ||
311 | @@ -XXX,XX +XXX,XX @@ config_host_data.set('HAVE_OPTRESET', | ||
312 | cc.has_header_symbol('getopt.h', 'optreset')) | ||
313 | config_host_data.set('HAVE_IPPROTO_MPTCP', | ||
314 | cc.has_header_symbol('netinet/in.h', 'IPPROTO_MPTCP')) | ||
315 | +if libaio.found() | ||
316 | + config_host_data.set('HAVE_IO_PREP_PWRITEV2', | ||
317 | + cc.has_header_symbol('libaio.h', 'io_prep_pwritev2')) | ||
318 | +endif | ||
319 | |||
320 | # has_member | ||
321 | config_host_data.set('HAVE_SIGEV_NOTIFY_THREAD_ID', | ||
322 | -- | ||
323 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | For block drivers that don't advertise FUA support, we already call | ||
2 | bdrv_co_flush(), which considers BDRV_O_NO_FLUSH. However, drivers that | ||
3 | do support FUA still see the FUA flag with BDRV_O_NO_FLUSH and get the | ||
4 | associated performance penalty that cache.no-flush=on was supposed to | ||
5 | avoid. | ||
1 | 6 | ||
7 | Clear FUA for write requests if BDRV_O_NO_FLUSH is set. | ||
8 | |||
9 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
10 | Message-ID: <20250307221634.71951-3-kwolf@redhat.com> | ||
11 | Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
12 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
13 | --- | ||
14 | block/io.c | 4 ++++ | ||
15 | 1 file changed, 4 insertions(+) | ||
16 | |||
17 | diff --git a/block/io.c b/block/io.c | ||
18 | index XXXXXXX..XXXXXXX 100644 | ||
19 | --- a/block/io.c | ||
20 | +++ b/block/io.c | ||
21 | @@ -XXX,XX +XXX,XX @@ bdrv_driver_pwritev(BlockDriverState *bs, int64_t offset, int64_t bytes, | ||
22 | return -ENOMEDIUM; | ||
23 | } | ||
24 | |||
25 | + if (bs->open_flags & BDRV_O_NO_FLUSH) { | ||
26 | + flags &= ~BDRV_REQ_FUA; | ||
27 | + } | ||
28 | + | ||
29 | if ((flags & BDRV_REQ_FUA) && | ||
30 | (~bs->supported_write_flags & BDRV_REQ_FUA)) { | ||
31 | flags &= ~BDRV_REQ_FUA; | ||
32 | -- | ||
33 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | As a preparation for having multiple adaptive polling states per | ||
2 | AioContext, move the 'ns' field into a separate struct. | ||
1 | 3 | ||
4 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
5 | Message-ID: <20250307221634.71951-4-kwolf@redhat.com> | ||
6 | Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
7 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
8 | --- | ||
9 | include/block/aio.h | 6 +++++- | ||
10 | util/aio-posix.c | 31 ++++++++++++++++--------------- | ||
11 | util/async.c | 3 ++- | ||
12 | 3 files changed, 23 insertions(+), 17 deletions(-) | ||
13 | |||
14 | diff --git a/include/block/aio.h b/include/block/aio.h | ||
15 | index XXXXXXX..XXXXXXX 100644 | ||
16 | --- a/include/block/aio.h | ||
17 | +++ b/include/block/aio.h | ||
18 | @@ -XXX,XX +XXX,XX @@ struct BHListSlice { | ||
19 | |||
20 | typedef QSLIST_HEAD(, AioHandler) AioHandlerSList; | ||
21 | |||
22 | +typedef struct AioPolledEvent { | ||
23 | + int64_t ns; /* current polling time in nanoseconds */ | ||
24 | +} AioPolledEvent; | ||
25 | + | ||
26 | struct AioContext { | ||
27 | GSource source; | ||
28 | |||
29 | @@ -XXX,XX +XXX,XX @@ struct AioContext { | ||
30 | int poll_disable_cnt; | ||
31 | |||
32 | /* Polling mode parameters */ | ||
33 | - int64_t poll_ns; /* current polling time in nanoseconds */ | ||
34 | + AioPolledEvent poll; | ||
35 | int64_t poll_max_ns; /* maximum polling time in nanoseconds */ | ||
36 | int64_t poll_grow; /* polling time growth factor */ | ||
37 | int64_t poll_shrink; /* polling time shrink factor */ | ||
38 | diff --git a/util/aio-posix.c b/util/aio-posix.c | ||
39 | index XXXXXXX..XXXXXXX 100644 | ||
40 | --- a/util/aio-posix.c | ||
41 | +++ b/util/aio-posix.c | ||
42 | @@ -XXX,XX +XXX,XX @@ static bool try_poll_mode(AioContext *ctx, AioHandlerList *ready_list, | ||
43 | return false; | ||
44 | } | ||
45 | |||
46 | - max_ns = qemu_soonest_timeout(*timeout, ctx->poll_ns); | ||
47 | + max_ns = qemu_soonest_timeout(*timeout, ctx->poll.ns); | ||
48 | if (max_ns && !ctx->fdmon_ops->need_wait(ctx)) { | ||
49 | /* | ||
50 | * Enable poll mode. It pairs with the poll_set_started() in | ||
51 | @@ -XXX,XX +XXX,XX @@ bool aio_poll(AioContext *ctx, bool blocking) | ||
52 | if (ctx->poll_max_ns) { | ||
53 | int64_t block_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start; | ||
54 | |||
55 | - if (block_ns <= ctx->poll_ns) { | ||
56 | + if (block_ns <= ctx->poll.ns) { | ||
57 | /* This is the sweet spot, no adjustment needed */ | ||
58 | } else if (block_ns > ctx->poll_max_ns) { | ||
59 | /* We'd have to poll for too long, poll less */ | ||
60 | - int64_t old = ctx->poll_ns; | ||
61 | + int64_t old = ctx->poll.ns; | ||
62 | |||
63 | if (ctx->poll_shrink) { | ||
64 | - ctx->poll_ns /= ctx->poll_shrink; | ||
65 | + ctx->poll.ns /= ctx->poll_shrink; | ||
66 | } else { | ||
67 | - ctx->poll_ns = 0; | ||
68 | + ctx->poll.ns = 0; | ||
69 | } | ||
70 | |||
71 | - trace_poll_shrink(ctx, old, ctx->poll_ns); | ||
72 | - } else if (ctx->poll_ns < ctx->poll_max_ns && | ||
73 | + trace_poll_shrink(ctx, old, ctx->poll.ns); | ||
74 | + } else if (ctx->poll.ns < ctx->poll_max_ns && | ||
75 | block_ns < ctx->poll_max_ns) { | ||
76 | /* There is room to grow, poll longer */ | ||
77 | - int64_t old = ctx->poll_ns; | ||
78 | + int64_t old = ctx->poll.ns; | ||
79 | int64_t grow = ctx->poll_grow; | ||
80 | |||
81 | if (grow == 0) { | ||
82 | grow = 2; | ||
83 | } | ||
84 | |||
85 | - if (ctx->poll_ns) { | ||
86 | - ctx->poll_ns *= grow; | ||
87 | + if (ctx->poll.ns) { | ||
88 | + ctx->poll.ns *= grow; | ||
89 | } else { | ||
90 | - ctx->poll_ns = 4000; /* start polling at 4 microseconds */ | ||
91 | + ctx->poll.ns = 4000; /* start polling at 4 microseconds */ | ||
92 | } | ||
93 | |||
94 | - if (ctx->poll_ns > ctx->poll_max_ns) { | ||
95 | - ctx->poll_ns = ctx->poll_max_ns; | ||
96 | + if (ctx->poll.ns > ctx->poll_max_ns) { | ||
97 | + ctx->poll.ns = ctx->poll_max_ns; | ||
98 | } | ||
99 | |||
100 | - trace_poll_grow(ctx, old, ctx->poll_ns); | ||
101 | + trace_poll_grow(ctx, old, ctx->poll.ns); | ||
102 | } | ||
103 | } | ||
104 | |||
105 | @@ -XXX,XX +XXX,XX @@ void aio_context_set_poll_params(AioContext *ctx, int64_t max_ns, | ||
106 | /* No thread synchronization here, it doesn't matter if an incorrect value | ||
107 | * is used once. | ||
108 | */ | ||
109 | + ctx->poll.ns = 0; | ||
110 | + | ||
111 | ctx->poll_max_ns = max_ns; | ||
112 | - ctx->poll_ns = 0; | ||
113 | ctx->poll_grow = grow; | ||
114 | ctx->poll_shrink = shrink; | ||
115 | |||
116 | diff --git a/util/async.c b/util/async.c | ||
117 | index XXXXXXX..XXXXXXX 100644 | ||
118 | --- a/util/async.c | ||
119 | +++ b/util/async.c | ||
120 | @@ -XXX,XX +XXX,XX @@ AioContext *aio_context_new(Error **errp) | ||
121 | qemu_rec_mutex_init(&ctx->lock); | ||
122 | timerlistgroup_init(&ctx->tlg, aio_timerlist_notify, ctx); | ||
123 | |||
124 | - ctx->poll_ns = 0; | ||
125 | + ctx->poll.ns = 0; | ||
126 | + | ||
127 | ctx->poll_max_ns = 0; | ||
128 | ctx->poll_grow = 0; | ||
129 | ctx->poll_shrink = 0; | ||
130 | -- | ||
131 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
2 | Message-ID: <20250307221634.71951-5-kwolf@redhat.com> | ||
3 | Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
4 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
5 | --- | ||
6 | util/aio-posix.c | 77 ++++++++++++++++++++++++++---------------------- | ||
7 | 1 file changed, 41 insertions(+), 36 deletions(-) | ||
1 | 8 | ||
9 | diff --git a/util/aio-posix.c b/util/aio-posix.c | ||
10 | index XXXXXXX..XXXXXXX 100644 | ||
11 | --- a/util/aio-posix.c | ||
12 | +++ b/util/aio-posix.c | ||
13 | @@ -XXX,XX +XXX,XX @@ static bool try_poll_mode(AioContext *ctx, AioHandlerList *ready_list, | ||
14 | return false; | ||
15 | } | ||
16 | |||
17 | +static void adjust_polling_time(AioContext *ctx, AioPolledEvent *poll, | ||
18 | + int64_t block_ns) | ||
19 | +{ | ||
20 | + if (block_ns <= poll->ns) { | ||
21 | + /* This is the sweet spot, no adjustment needed */ | ||
22 | + } else if (block_ns > ctx->poll_max_ns) { | ||
23 | + /* We'd have to poll for too long, poll less */ | ||
24 | + int64_t old = poll->ns; | ||
25 | + | ||
26 | + if (ctx->poll_shrink) { | ||
27 | + poll->ns /= ctx->poll_shrink; | ||
28 | + } else { | ||
29 | + poll->ns = 0; | ||
30 | + } | ||
31 | + | ||
32 | + trace_poll_shrink(ctx, old, poll->ns); | ||
33 | + } else if (poll->ns < ctx->poll_max_ns && | ||
34 | + block_ns < ctx->poll_max_ns) { | ||
35 | + /* There is room to grow, poll longer */ | ||
36 | + int64_t old = poll->ns; | ||
37 | + int64_t grow = ctx->poll_grow; | ||
38 | + | ||
39 | + if (grow == 0) { | ||
40 | + grow = 2; | ||
41 | + } | ||
42 | + | ||
43 | + if (poll->ns) { | ||
44 | + poll->ns *= grow; | ||
45 | + } else { | ||
46 | + poll->ns = 4000; /* start polling at 4 microseconds */ | ||
47 | + } | ||
48 | + | ||
49 | + if (poll->ns > ctx->poll_max_ns) { | ||
50 | + poll->ns = ctx->poll_max_ns; | ||
51 | + } | ||
52 | + | ||
53 | + trace_poll_grow(ctx, old, poll->ns); | ||
54 | + } | ||
55 | +} | ||
56 | + | ||
57 | bool aio_poll(AioContext *ctx, bool blocking) | ||
58 | { | ||
59 | AioHandlerList ready_list = QLIST_HEAD_INITIALIZER(ready_list); | ||
60 | @@ -XXX,XX +XXX,XX @@ bool aio_poll(AioContext *ctx, bool blocking) | ||
61 | /* Adjust polling time */ | ||
62 | if (ctx->poll_max_ns) { | ||
63 | int64_t block_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start; | ||
64 | - | ||
65 | - if (block_ns <= ctx->poll.ns) { | ||
66 | - /* This is the sweet spot, no adjustment needed */ | ||
67 | - } else if (block_ns > ctx->poll_max_ns) { | ||
68 | - /* We'd have to poll for too long, poll less */ | ||
69 | - int64_t old = ctx->poll.ns; | ||
70 | - | ||
71 | - if (ctx->poll_shrink) { | ||
72 | - ctx->poll.ns /= ctx->poll_shrink; | ||
73 | - } else { | ||
74 | - ctx->poll.ns = 0; | ||
75 | - } | ||
76 | - | ||
77 | - trace_poll_shrink(ctx, old, ctx->poll.ns); | ||
78 | - } else if (ctx->poll.ns < ctx->poll_max_ns && | ||
79 | - block_ns < ctx->poll_max_ns) { | ||
80 | - /* There is room to grow, poll longer */ | ||
81 | - int64_t old = ctx->poll.ns; | ||
82 | - int64_t grow = ctx->poll_grow; | ||
83 | - | ||
84 | - if (grow == 0) { | ||
85 | - grow = 2; | ||
86 | - } | ||
87 | - | ||
88 | - if (ctx->poll.ns) { | ||
89 | - ctx->poll.ns *= grow; | ||
90 | - } else { | ||
91 | - ctx->poll.ns = 4000; /* start polling at 4 microseconds */ | ||
92 | - } | ||
93 | - | ||
94 | - if (ctx->poll.ns > ctx->poll_max_ns) { | ||
95 | - ctx->poll.ns = ctx->poll_max_ns; | ||
96 | - } | ||
97 | - | ||
98 | - trace_poll_grow(ctx, old, ctx->poll.ns); | ||
99 | - } | ||
100 | + adjust_polling_time(ctx, &ctx->poll, block_ns); | ||
101 | } | ||
102 | |||
103 | progress |= aio_bh_poll(ctx); | ||
104 | -- | ||
105 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | Adaptive polling has a big problem: It doesn't consider that an event | ||
2 | loop can wait for many different events that may have very different | ||
3 | typical latencies. | ||
1 | 4 | ||
5 | For example, think of a guest that tends to send a new I/O request soon | ||
6 | after the previous I/O request completes, but the storage on the host is | ||
7 | rather slow. In this case, getting the new request from guest quickly | ||
8 | means that polling is enabled, but the next thing is performing the I/O | ||
9 | request on the backend, which is slow and disables polling again for the | ||
10 | next guest request. This means that in such a scenario, polling could | ||
11 | help for every other event, but is only ever enabled when it can't | ||
12 | succeed. | ||
13 | |||
14 | In order to fix this, keep a separate AioPolledEvent for each | ||
15 | AioHandler. We will then know that the backend file descriptor always | ||
16 | has a high latency and isn't worth polling for, but we also know that | ||
17 | the guest is always fast and we should poll for it. This solves at least | ||
18 | half of the problem, we can now keep polling for those cases where it | ||
19 | makes sense and get the improved performance from it. | ||
20 | |||
21 | Since the event loop doesn't know which event will be next, we still do | ||
22 | some unnecessary polling while we're waiting for the slow disk. I made | ||
23 | some attempts to be more clever than just randomly growing and shrinking | ||
24 | the polling time, and even to let callers be explicit about when they | ||
25 | expect a new event, but so far this hasn't resulted in improved | ||
26 | performance or even caused performance regressions. For now, let's just | ||
27 | fix the part that is easy enough to fix, we can revisit the rest later. | ||
28 | |||
29 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
30 | Message-ID: <20250307221634.71951-6-kwolf@redhat.com> | ||
31 | Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
32 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
33 | --- | ||
34 | include/block/aio.h | 1 - | ||
35 | util/aio-posix.h | 1 + | ||
36 | util/aio-posix.c | 26 ++++++++++++++++++++++---- | ||
37 | util/async.c | 2 -- | ||
38 | 4 files changed, 23 insertions(+), 7 deletions(-) | ||
39 | |||
40 | diff --git a/include/block/aio.h b/include/block/aio.h | ||
41 | index XXXXXXX..XXXXXXX 100644 | ||
42 | --- a/include/block/aio.h | ||
43 | +++ b/include/block/aio.h | ||
44 | @@ -XXX,XX +XXX,XX @@ struct AioContext { | ||
45 | int poll_disable_cnt; | ||
46 | |||
47 | /* Polling mode parameters */ | ||
48 | - AioPolledEvent poll; | ||
49 | int64_t poll_max_ns; /* maximum polling time in nanoseconds */ | ||
50 | int64_t poll_grow; /* polling time growth factor */ | ||
51 | int64_t poll_shrink; /* polling time shrink factor */ | ||
52 | diff --git a/util/aio-posix.h b/util/aio-posix.h | ||
53 | index XXXXXXX..XXXXXXX 100644 | ||
54 | --- a/util/aio-posix.h | ||
55 | +++ b/util/aio-posix.h | ||
56 | @@ -XXX,XX +XXX,XX @@ struct AioHandler { | ||
57 | #endif | ||
58 | int64_t poll_idle_timeout; /* when to stop userspace polling */ | ||
59 | bool poll_ready; /* has polling detected an event? */ | ||
60 | + AioPolledEvent poll; | ||
61 | }; | ||
62 | |||
63 | /* Add a handler to a ready list */ | ||
64 | diff --git a/util/aio-posix.c b/util/aio-posix.c | ||
65 | index XXXXXXX..XXXXXXX 100644 | ||
66 | --- a/util/aio-posix.c | ||
67 | +++ b/util/aio-posix.c | ||
68 | @@ -XXX,XX +XXX,XX @@ static bool run_poll_handlers(AioContext *ctx, AioHandlerList *ready_list, | ||
69 | static bool try_poll_mode(AioContext *ctx, AioHandlerList *ready_list, | ||
70 | int64_t *timeout) | ||
71 | { | ||
72 | + AioHandler *node; | ||
73 | int64_t max_ns; | ||
74 | |||
75 | if (QLIST_EMPTY_RCU(&ctx->poll_aio_handlers)) { | ||
76 | return false; | ||
77 | } | ||
78 | |||
79 | - max_ns = qemu_soonest_timeout(*timeout, ctx->poll.ns); | ||
80 | + max_ns = 0; | ||
81 | + QLIST_FOREACH(node, &ctx->poll_aio_handlers, node_poll) { | ||
82 | + max_ns = MAX(max_ns, node->poll.ns); | ||
83 | + } | ||
84 | + max_ns = qemu_soonest_timeout(*timeout, max_ns); | ||
85 | + | ||
86 | if (max_ns && !ctx->fdmon_ops->need_wait(ctx)) { | ||
87 | /* | ||
88 | * Enable poll mode. It pairs with the poll_set_started() in | ||
89 | @@ -XXX,XX +XXX,XX @@ bool aio_poll(AioContext *ctx, bool blocking) | ||
90 | |||
91 | /* Adjust polling time */ | ||
92 | if (ctx->poll_max_ns) { | ||
93 | + AioHandler *node; | ||
94 | int64_t block_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start; | ||
95 | - adjust_polling_time(ctx, &ctx->poll, block_ns); | ||
96 | + | ||
97 | + QLIST_FOREACH(node, &ctx->poll_aio_handlers, node_poll) { | ||
98 | + if (QLIST_IS_INSERTED(node, node_ready)) { | ||
99 | + adjust_polling_time(ctx, &node->poll, block_ns); | ||
100 | + } | ||
101 | + } | ||
102 | } | ||
103 | |||
104 | progress |= aio_bh_poll(ctx); | ||
105 | @@ -XXX,XX +XXX,XX @@ void aio_context_use_g_source(AioContext *ctx) | ||
106 | void aio_context_set_poll_params(AioContext *ctx, int64_t max_ns, | ||
107 | int64_t grow, int64_t shrink, Error **errp) | ||
108 | { | ||
109 | + AioHandler *node; | ||
110 | + | ||
111 | + qemu_lockcnt_inc(&ctx->list_lock); | ||
112 | + QLIST_FOREACH(node, &ctx->aio_handlers, node) { | ||
113 | + node->poll.ns = 0; | ||
114 | + } | ||
115 | + qemu_lockcnt_dec(&ctx->list_lock); | ||
116 | + | ||
117 | /* No thread synchronization here, it doesn't matter if an incorrect value | ||
118 | * is used once. | ||
119 | */ | ||
120 | - ctx->poll.ns = 0; | ||
121 | - | ||
122 | ctx->poll_max_ns = max_ns; | ||
123 | ctx->poll_grow = grow; | ||
124 | ctx->poll_shrink = shrink; | ||
125 | diff --git a/util/async.c b/util/async.c | ||
126 | index XXXXXXX..XXXXXXX 100644 | ||
127 | --- a/util/async.c | ||
128 | +++ b/util/async.c | ||
129 | @@ -XXX,XX +XXX,XX @@ AioContext *aio_context_new(Error **errp) | ||
130 | qemu_rec_mutex_init(&ctx->lock); | ||
131 | timerlistgroup_init(&ctx->tlg, aio_timerlist_notify, ctx); | ||
132 | |||
133 | - ctx->poll.ns = 0; | ||
134 | - | ||
135 | ctx->poll_max_ns = 0; | ||
136 | ctx->poll_grow = 0; | ||
137 | ctx->poll_shrink = 0; | ||
138 | -- | ||
139 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | aio_dispatch_handler() adds handlers to ctx->poll_aio_handlers if | ||
2 | polling should be enabled. If we call adjust_polling_time() for all | ||
3 | polling handlers before this, new polling handlers are still left at | ||
4 | poll->ns = 0 and polling is only actually enabled after the next event. | ||
5 | Move the adjust_polling_time() call after aio_dispatch_handler(). | ||
1 | 6 | ||
7 | This fixes test-nested-aio-poll, which expects that polling becomes | ||
8 | effective the first time around. | ||
9 | |||
10 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
11 | Message-ID: <20250311141912.135657-1-kwolf@redhat.com> | ||
12 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
13 | --- | ||
14 | util/aio-posix.c | 28 +++++++++++++++++----------- | ||
15 | 1 file changed, 17 insertions(+), 11 deletions(-) | ||
16 | |||
17 | diff --git a/util/aio-posix.c b/util/aio-posix.c | ||
18 | index XXXXXXX..XXXXXXX 100644 | ||
19 | --- a/util/aio-posix.c | ||
20 | +++ b/util/aio-posix.c | ||
21 | @@ -XXX,XX +XXX,XX @@ | ||
22 | /* Stop userspace polling on a handler if it isn't active for some time */ | ||
23 | #define POLL_IDLE_INTERVAL_NS (7 * NANOSECONDS_PER_SECOND) | ||
24 | |||
25 | +static void adjust_polling_time(AioContext *ctx, AioPolledEvent *poll, | ||
26 | + int64_t block_ns); | ||
27 | + | ||
28 | bool aio_poll_disabled(AioContext *ctx) | ||
29 | { | ||
30 | return qatomic_read(&ctx->poll_disable_cnt); | ||
31 | @@ -XXX,XX +XXX,XX @@ static bool aio_dispatch_handler(AioContext *ctx, AioHandler *node) | ||
32 | * scanning all handlers with aio_dispatch_handlers(). | ||
33 | */ | ||
34 | static bool aio_dispatch_ready_handlers(AioContext *ctx, | ||
35 | - AioHandlerList *ready_list) | ||
36 | + AioHandlerList *ready_list, | ||
37 | + int64_t block_ns) | ||
38 | { | ||
39 | bool progress = false; | ||
40 | AioHandler *node; | ||
41 | @@ -XXX,XX +XXX,XX @@ static bool aio_dispatch_ready_handlers(AioContext *ctx, | ||
42 | while ((node = QLIST_FIRST(ready_list))) { | ||
43 | QLIST_REMOVE(node, node_ready); | ||
44 | progress = aio_dispatch_handler(ctx, node) || progress; | ||
45 | + | ||
46 | + /* | ||
47 | + * Adjust polling time only after aio_dispatch_handler(), which can | ||
48 | + * add the handler to ctx->poll_aio_handlers. | ||
49 | + */ | ||
50 | + if (ctx->poll_max_ns && QLIST_IS_INSERTED(node, node_poll)) { | ||
51 | + adjust_polling_time(ctx, &node->poll, block_ns); | ||
52 | + } | ||
53 | } | ||
54 | |||
55 | return progress; | ||
56 | @@ -XXX,XX +XXX,XX @@ bool aio_poll(AioContext *ctx, bool blocking) | ||
57 | bool use_notify_me; | ||
58 | int64_t timeout; | ||
59 | int64_t start = 0; | ||
60 | + int64_t block_ns = 0; | ||
61 | |||
62 | /* | ||
63 | * There cannot be two concurrent aio_poll calls for the same AioContext (or | ||
64 | @@ -XXX,XX +XXX,XX @@ bool aio_poll(AioContext *ctx, bool blocking) | ||
65 | |||
66 | aio_notify_accept(ctx); | ||
67 | |||
68 | - /* Adjust polling time */ | ||
69 | + /* Calculate blocked time for adaptive polling */ | ||
70 | if (ctx->poll_max_ns) { | ||
71 | - AioHandler *node; | ||
72 | - int64_t block_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start; | ||
73 | - | ||
74 | - QLIST_FOREACH(node, &ctx->poll_aio_handlers, node_poll) { | ||
75 | - if (QLIST_IS_INSERTED(node, node_ready)) { | ||
76 | - adjust_polling_time(ctx, &node->poll, block_ns); | ||
77 | - } | ||
78 | - } | ||
79 | + block_ns = qemu_clock_get_ns(QEMU_CLOCK_REALTIME) - start; | ||
80 | } | ||
81 | |||
82 | progress |= aio_bh_poll(ctx); | ||
83 | - progress |= aio_dispatch_ready_handlers(ctx, &ready_list); | ||
84 | + progress |= aio_dispatch_ready_handlers(ctx, &ready_list, block_ns); | ||
85 | |||
86 | aio_free_deleted_handlers(ctx); | ||
87 | |||
88 | -- | ||
89 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Thomas Huth <thuth@redhat.com> | ||
1 | 2 | ||
3 | qsd-migrate is currently only working for raw, qcow2 and qed. | ||
4 | Other formats are failing, e.g. because they don't support migration. | ||
5 | Thus let's limit this test to the three usable formats now. | ||
6 | |||
7 | Suggested-by: Kevin Wolf <kwolf@redhat.com> | ||
8 | Signed-off-by: Thomas Huth <thuth@redhat.com> | ||
9 | Message-ID: <20250224214058.205889-1-thuth@redhat.com> | ||
10 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
11 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
12 | --- | ||
13 | tests/qemu-iotests/tests/qsd-migrate | 2 +- | ||
14 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
15 | |||
16 | diff --git a/tests/qemu-iotests/tests/qsd-migrate b/tests/qemu-iotests/tests/qsd-migrate | ||
17 | index XXXXXXX..XXXXXXX 100755 | ||
18 | --- a/tests/qemu-iotests/tests/qsd-migrate | ||
19 | +++ b/tests/qemu-iotests/tests/qsd-migrate | ||
20 | @@ -XXX,XX +XXX,XX @@ import iotests | ||
21 | |||
22 | from iotests import filter_qemu_io, filter_qtest | ||
23 | |||
24 | -iotests.script_initialize(supported_fmts=['generic'], | ||
25 | +iotests.script_initialize(supported_fmts=['qcow2', 'qed', 'raw'], | ||
26 | supported_protocols=['file'], | ||
27 | supported_platforms=['linux']) | ||
28 | |||
29 | -- | ||
30 | 2.48.1 | diff view generated by jsdifflib |
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 1 | From: Stefan Hajnoczi <stefanha@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | No reason to forbid them, and they are needed to improve performance | 3 | Commit 71544d30a6f8 ("scsi: push request restart to SCSIDevice") removed |
4 | with compress-threads in further patches. | 4 | the only user of SCSIDiskState->bh. |
5 | 5 | ||
6 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 6 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> |
7 | Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> | ||
8 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
9 | Message-ID: <20250311132616.1049687-2-stefanha@redhat.com> | ||
7 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | 10 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
8 | --- | 11 | --- |
9 | qemu-img.c | 5 ----- | 12 | hw/scsi/scsi-disk.c | 1 - |
10 | 1 file changed, 5 deletions(-) | 13 | 1 file changed, 1 deletion(-) |
11 | 14 | ||
12 | diff --git a/qemu-img.c b/qemu-img.c | 15 | diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c |
13 | index XXXXXXX..XXXXXXX 100644 | 16 | index XXXXXXX..XXXXXXX 100644 |
14 | --- a/qemu-img.c | 17 | --- a/hw/scsi/scsi-disk.c |
15 | +++ b/qemu-img.c | 18 | +++ b/hw/scsi/scsi-disk.c |
16 | @@ -XXX,XX +XXX,XX @@ static int img_convert(int argc, char **argv) | 19 | @@ -XXX,XX +XXX,XX @@ struct SCSIDiskState { |
17 | goto fail_getopt; | 20 | uint64_t max_unmap_size; |
18 | } | 21 | uint64_t max_io_size; |
19 | 22 | uint32_t quirks; | |
20 | - if (!s.wr_in_order && s.compressed) { | 23 | - QEMUBH *bh; |
21 | - error_report("Out of order write and compress are mutually exclusive"); | 24 | char *version; |
22 | - goto fail_getopt; | 25 | char *serial; |
23 | - } | 26 | char *vendor; |
24 | - | ||
25 | if (tgt_image_opts && !skip_create) { | ||
26 | error_report("--target-image-opts requires use of -n flag"); | ||
27 | goto fail_getopt; | ||
28 | -- | 27 | -- |
29 | 2.13.6 | 28 | 2.48.1 |
30 | 29 | ||
31 | 30 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
1 | 2 | ||
3 | In the past a single AioContext was used for block I/O and it was | ||
4 | fetched using blk_get_aio_context(). Nowadays the block layer supports | ||
5 | running I/O from any AioContext and multiple AioContexts at the same | ||
6 | time. Remove the dma_blk_io() AioContext argument and use the current | ||
7 | AioContext instead. | ||
8 | |||
9 | This makes calling the function easier and enables multiple IOThreads to | ||
10 | use dma_blk_io() concurrently for the same block device. | ||
11 | |||
12 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
13 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
14 | Message-ID: <20250311132616.1049687-3-stefanha@redhat.com> | ||
15 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
16 | --- | ||
17 | include/system/dma.h | 3 +-- | ||
18 | hw/ide/core.c | 3 +-- | ||
19 | hw/ide/macio.c | 3 +-- | ||
20 | hw/scsi/scsi-disk.c | 6 ++---- | ||
21 | system/dma-helpers.c | 8 ++++---- | ||
22 | 5 files changed, 9 insertions(+), 14 deletions(-) | ||
23 | |||
24 | diff --git a/include/system/dma.h b/include/system/dma.h | ||
25 | index XXXXXXX..XXXXXXX 100644 | ||
26 | --- a/include/system/dma.h | ||
27 | +++ b/include/system/dma.h | ||
28 | @@ -XXX,XX +XXX,XX @@ typedef BlockAIOCB *DMAIOFunc(int64_t offset, QEMUIOVector *iov, | ||
29 | BlockCompletionFunc *cb, void *cb_opaque, | ||
30 | void *opaque); | ||
31 | |||
32 | -BlockAIOCB *dma_blk_io(AioContext *ctx, | ||
33 | - QEMUSGList *sg, uint64_t offset, uint32_t align, | ||
34 | +BlockAIOCB *dma_blk_io(QEMUSGList *sg, uint64_t offset, uint32_t align, | ||
35 | DMAIOFunc *io_func, void *io_func_opaque, | ||
36 | BlockCompletionFunc *cb, void *opaque, DMADirection dir); | ||
37 | BlockAIOCB *dma_blk_read(BlockBackend *blk, | ||
38 | diff --git a/hw/ide/core.c b/hw/ide/core.c | ||
39 | index XXXXXXX..XXXXXXX 100644 | ||
40 | --- a/hw/ide/core.c | ||
41 | +++ b/hw/ide/core.c | ||
42 | @@ -XXX,XX +XXX,XX @@ static void ide_dma_cb(void *opaque, int ret) | ||
43 | BDRV_SECTOR_SIZE, ide_dma_cb, s); | ||
44 | break; | ||
45 | case IDE_DMA_TRIM: | ||
46 | - s->bus->dma->aiocb = dma_blk_io(blk_get_aio_context(s->blk), | ||
47 | - &s->sg, offset, BDRV_SECTOR_SIZE, | ||
48 | + s->bus->dma->aiocb = dma_blk_io(&s->sg, offset, BDRV_SECTOR_SIZE, | ||
49 | ide_issue_trim, s, ide_dma_cb, s, | ||
50 | DMA_DIRECTION_TO_DEVICE); | ||
51 | break; | ||
52 | diff --git a/hw/ide/macio.c b/hw/ide/macio.c | ||
53 | index XXXXXXX..XXXXXXX 100644 | ||
54 | --- a/hw/ide/macio.c | ||
55 | +++ b/hw/ide/macio.c | ||
56 | @@ -XXX,XX +XXX,XX @@ static void pmac_ide_transfer_cb(void *opaque, int ret) | ||
57 | pmac_ide_transfer_cb, io); | ||
58 | break; | ||
59 | case IDE_DMA_TRIM: | ||
60 | - s->bus->dma->aiocb = dma_blk_io(blk_get_aio_context(s->blk), &s->sg, | ||
61 | - offset, 0x1, ide_issue_trim, s, | ||
62 | + s->bus->dma->aiocb = dma_blk_io(&s->sg, offset, 0x1, ide_issue_trim, s, | ||
63 | pmac_ide_transfer_cb, io, | ||
64 | DMA_DIRECTION_TO_DEVICE); | ||
65 | break; | ||
66 | diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c | ||
67 | index XXXXXXX..XXXXXXX 100644 | ||
68 | --- a/hw/scsi/scsi-disk.c | ||
69 | +++ b/hw/scsi/scsi-disk.c | ||
70 | @@ -XXX,XX +XXX,XX @@ static void scsi_do_read(SCSIDiskReq *r, int ret) | ||
71 | if (r->req.sg) { | ||
72 | dma_acct_start(s->qdev.conf.blk, &r->acct, r->req.sg, BLOCK_ACCT_READ); | ||
73 | r->req.residual -= r->req.sg->size; | ||
74 | - r->req.aiocb = dma_blk_io(blk_get_aio_context(s->qdev.conf.blk), | ||
75 | - r->req.sg, r->sector << BDRV_SECTOR_BITS, | ||
76 | + r->req.aiocb = dma_blk_io(r->req.sg, r->sector << BDRV_SECTOR_BITS, | ||
77 | BDRV_SECTOR_SIZE, | ||
78 | sdc->dma_readv, r, scsi_dma_complete, r, | ||
79 | DMA_DIRECTION_FROM_DEVICE); | ||
80 | @@ -XXX,XX +XXX,XX @@ static void scsi_write_data(SCSIRequest *req) | ||
81 | if (r->req.sg) { | ||
82 | dma_acct_start(s->qdev.conf.blk, &r->acct, r->req.sg, BLOCK_ACCT_WRITE); | ||
83 | r->req.residual -= r->req.sg->size; | ||
84 | - r->req.aiocb = dma_blk_io(blk_get_aio_context(s->qdev.conf.blk), | ||
85 | - r->req.sg, r->sector << BDRV_SECTOR_BITS, | ||
86 | + r->req.aiocb = dma_blk_io(r->req.sg, r->sector << BDRV_SECTOR_BITS, | ||
87 | BDRV_SECTOR_SIZE, | ||
88 | sdc->dma_writev, r, scsi_dma_complete, r, | ||
89 | DMA_DIRECTION_TO_DEVICE); | ||
90 | diff --git a/system/dma-helpers.c b/system/dma-helpers.c | ||
91 | index XXXXXXX..XXXXXXX 100644 | ||
92 | --- a/system/dma-helpers.c | ||
93 | +++ b/system/dma-helpers.c | ||
94 | @@ -XXX,XX +XXX,XX @@ static const AIOCBInfo dma_aiocb_info = { | ||
95 | .cancel_async = dma_aio_cancel, | ||
96 | }; | ||
97 | |||
98 | -BlockAIOCB *dma_blk_io(AioContext *ctx, | ||
99 | +BlockAIOCB *dma_blk_io( | ||
100 | QEMUSGList *sg, uint64_t offset, uint32_t align, | ||
101 | DMAIOFunc *io_func, void *io_func_opaque, | ||
102 | BlockCompletionFunc *cb, | ||
103 | @@ -XXX,XX +XXX,XX @@ BlockAIOCB *dma_blk_io(AioContext *ctx, | ||
104 | |||
105 | dbs->acb = NULL; | ||
106 | dbs->sg = sg; | ||
107 | - dbs->ctx = ctx; | ||
108 | + dbs->ctx = qemu_get_current_aio_context(); | ||
109 | dbs->offset = offset; | ||
110 | dbs->align = align; | ||
111 | dbs->sg_cur_index = 0; | ||
112 | @@ -XXX,XX +XXX,XX @@ BlockAIOCB *dma_blk_read(BlockBackend *blk, | ||
113 | QEMUSGList *sg, uint64_t offset, uint32_t align, | ||
114 | void (*cb)(void *opaque, int ret), void *opaque) | ||
115 | { | ||
116 | - return dma_blk_io(blk_get_aio_context(blk), sg, offset, align, | ||
117 | + return dma_blk_io(sg, offset, align, | ||
118 | dma_blk_read_io_func, blk, cb, opaque, | ||
119 | DMA_DIRECTION_FROM_DEVICE); | ||
120 | } | ||
121 | @@ -XXX,XX +XXX,XX @@ BlockAIOCB *dma_blk_write(BlockBackend *blk, | ||
122 | QEMUSGList *sg, uint64_t offset, uint32_t align, | ||
123 | void (*cb)(void *opaque, int ret), void *opaque) | ||
124 | { | ||
125 | - return dma_blk_io(blk_get_aio_context(blk), sg, offset, align, | ||
126 | + return dma_blk_io(sg, offset, align, | ||
127 | dma_blk_write_io_func, blk, cb, opaque, | ||
128 | DMA_DIRECTION_TO_DEVICE); | ||
129 | } | ||
130 | -- | ||
131 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
1 | 2 | ||
3 | Until now, a SCSIDevice's I/O requests have run in a single AioContext. | ||
4 | In order to support multiple IOThreads it will be necessary to move to | ||
5 | the concept of a per-SCSIRequest AioContext. | ||
6 | |||
7 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
8 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
9 | Message-ID: <20250311132616.1049687-4-stefanha@redhat.com> | ||
10 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
11 | --- | ||
12 | include/hw/scsi/scsi.h | 1 + | ||
13 | hw/scsi/scsi-bus.c | 1 + | ||
14 | hw/scsi/scsi-disk.c | 17 ++++++----------- | ||
15 | 3 files changed, 8 insertions(+), 11 deletions(-) | ||
16 | |||
17 | diff --git a/include/hw/scsi/scsi.h b/include/hw/scsi/scsi.h | ||
18 | index XXXXXXX..XXXXXXX 100644 | ||
19 | --- a/include/hw/scsi/scsi.h | ||
20 | +++ b/include/hw/scsi/scsi.h | ||
21 | @@ -XXX,XX +XXX,XX @@ struct SCSIRequest { | ||
22 | SCSIBus *bus; | ||
23 | SCSIDevice *dev; | ||
24 | const SCSIReqOps *ops; | ||
25 | + AioContext *ctx; | ||
26 | uint32_t refcount; | ||
27 | uint32_t tag; | ||
28 | uint32_t lun; | ||
29 | diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c | ||
30 | index XXXXXXX..XXXXXXX 100644 | ||
31 | --- a/hw/scsi/scsi-bus.c | ||
32 | +++ b/hw/scsi/scsi-bus.c | ||
33 | @@ -XXX,XX +XXX,XX @@ invalid_opcode: | ||
34 | } | ||
35 | } | ||
36 | |||
37 | + req->ctx = qemu_get_current_aio_context(); | ||
38 | req->cmd = cmd; | ||
39 | req->residual = req->cmd.xfer; | ||
40 | |||
41 | diff --git a/hw/scsi/scsi-disk.c b/hw/scsi/scsi-disk.c | ||
42 | index XXXXXXX..XXXXXXX 100644 | ||
43 | --- a/hw/scsi/scsi-disk.c | ||
44 | +++ b/hw/scsi/scsi-disk.c | ||
45 | @@ -XXX,XX +XXX,XX @@ static void scsi_aio_complete(void *opaque, int ret) | ||
46 | SCSIDiskReq *r = (SCSIDiskReq *)opaque; | ||
47 | SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev); | ||
48 | |||
49 | - /* The request must only run in the BlockBackend's AioContext */ | ||
50 | - assert(blk_get_aio_context(s->qdev.conf.blk) == | ||
51 | - qemu_get_current_aio_context()); | ||
52 | + /* The request must run in its AioContext */ | ||
53 | + assert(r->req.ctx == qemu_get_current_aio_context()); | ||
54 | |||
55 | assert(r->req.aiocb != NULL); | ||
56 | r->req.aiocb = NULL; | ||
57 | @@ -XXX,XX +XXX,XX @@ static void scsi_dma_complete(void *opaque, int ret) | ||
58 | |||
59 | static void scsi_read_complete_noio(SCSIDiskReq *r, int ret) | ||
60 | { | ||
61 | - SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev); | ||
62 | uint32_t n; | ||
63 | |||
64 | - /* The request must only run in the BlockBackend's AioContext */ | ||
65 | - assert(blk_get_aio_context(s->qdev.conf.blk) == | ||
66 | - qemu_get_current_aio_context()); | ||
67 | + /* The request must run in its AioContext */ | ||
68 | + assert(r->req.ctx == qemu_get_current_aio_context()); | ||
69 | |||
70 | assert(r->req.aiocb == NULL); | ||
71 | if (scsi_disk_req_check_error(r, ret, ret > 0)) { | ||
72 | @@ -XXX,XX +XXX,XX @@ static void scsi_read_data(SCSIRequest *req) | ||
73 | |||
74 | static void scsi_write_complete_noio(SCSIDiskReq *r, int ret) | ||
75 | { | ||
76 | - SCSIDiskState *s = DO_UPCAST(SCSIDiskState, qdev, r->req.dev); | ||
77 | uint32_t n; | ||
78 | |||
79 | - /* The request must only run in the BlockBackend's AioContext */ | ||
80 | - assert(blk_get_aio_context(s->qdev.conf.blk) == | ||
81 | - qemu_get_current_aio_context()); | ||
82 | + /* The request must run in its AioContext */ | ||
83 | + assert(r->req.ctx == qemu_get_current_aio_context()); | ||
84 | |||
85 | assert (r->req.aiocb == NULL); | ||
86 | if (scsi_disk_req_check_error(r, ret, ret > 0)) { | ||
87 | -- | ||
88 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
1 | 2 | ||
3 | SCSIDevice keeps track of in-flight requests for device reset and Task | ||
4 | Management Functions (TMFs). The request list requires protection so | ||
5 | that multi-threaded SCSI emulation can be implemented in commits that | ||
6 | follow. | ||
7 | |||
8 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
9 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
10 | Message-ID: <20250311132616.1049687-5-stefanha@redhat.com> | ||
11 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
12 | --- | ||
13 | include/hw/scsi/scsi.h | 7 ++- | ||
14 | hw/scsi/scsi-bus.c | 120 +++++++++++++++++++++++++++++------------ | ||
15 | 2 files changed, 88 insertions(+), 39 deletions(-) | ||
16 | |||
17 | diff --git a/include/hw/scsi/scsi.h b/include/hw/scsi/scsi.h | ||
18 | index XXXXXXX..XXXXXXX 100644 | ||
19 | --- a/include/hw/scsi/scsi.h | ||
20 | +++ b/include/hw/scsi/scsi.h | ||
21 | @@ -XXX,XX +XXX,XX @@ struct SCSIRequest { | ||
22 | bool dma_started; | ||
23 | BlockAIOCB *aiocb; | ||
24 | QEMUSGList *sg; | ||
25 | + | ||
26 | + /* Protected by SCSIDevice->requests_lock */ | ||
27 | QTAILQ_ENTRY(SCSIRequest) next; | ||
28 | }; | ||
29 | |||
30 | @@ -XXX,XX +XXX,XX @@ struct SCSIDevice | ||
31 | uint8_t sense[SCSI_SENSE_BUF_SIZE]; | ||
32 | uint32_t sense_len; | ||
33 | |||
34 | - /* | ||
35 | - * The requests list is only accessed from the AioContext that executes | ||
36 | - * requests or from the main loop when IOThread processing is stopped. | ||
37 | - */ | ||
38 | + QemuMutex requests_lock; /* protects the requests list */ | ||
39 | QTAILQ_HEAD(, SCSIRequest) requests; | ||
40 | |||
41 | uint32_t channel; | ||
42 | diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c | ||
43 | index XXXXXXX..XXXXXXX 100644 | ||
44 | --- a/hw/scsi/scsi-bus.c | ||
45 | +++ b/hw/scsi/scsi-bus.c | ||
46 | @@ -XXX,XX +XXX,XX @@ static void scsi_device_for_each_req_sync(SCSIDevice *s, | ||
47 | assert(!runstate_is_running()); | ||
48 | assert(qemu_in_main_thread()); | ||
49 | |||
50 | - QTAILQ_FOREACH_SAFE(req, &s->requests, next, next_req) { | ||
51 | - fn(req, opaque); | ||
52 | + /* | ||
53 | + * Locking is not necessary because the guest is stopped and no other | ||
54 | + * threads can be accessing the requests list, but take the lock for | ||
55 | + * consistency. | ||
56 | + */ | ||
57 | + WITH_QEMU_LOCK_GUARD(&s->requests_lock) { | ||
58 | + QTAILQ_FOREACH_SAFE(req, &s->requests, next, next_req) { | ||
59 | + fn(req, opaque); | ||
60 | + } | ||
61 | } | ||
62 | } | ||
63 | |||
64 | @@ -XXX,XX +XXX,XX @@ static void scsi_device_for_each_req_async_bh(void *opaque) | ||
65 | { | ||
66 | g_autofree SCSIDeviceForEachReqAsyncData *data = opaque; | ||
67 | SCSIDevice *s = data->s; | ||
68 | - AioContext *ctx; | ||
69 | - SCSIRequest *req; | ||
70 | - SCSIRequest *next; | ||
71 | + g_autoptr(GList) reqs = NULL; | ||
72 | |||
73 | /* | ||
74 | - * The BB cannot have changed contexts between this BH being scheduled and | ||
75 | - * now: BBs' AioContexts, when they have a node attached, can only be | ||
76 | - * changed via bdrv_try_change_aio_context(), in a drained section. While | ||
77 | - * we have the in-flight counter incremented, that drain must block. | ||
78 | + * Build a list of requests in this AioContext so fn() can be invoked later | ||
79 | + * outside requests_lock. | ||
80 | */ | ||
81 | - ctx = blk_get_aio_context(s->conf.blk); | ||
82 | - assert(ctx == qemu_get_current_aio_context()); | ||
83 | + WITH_QEMU_LOCK_GUARD(&s->requests_lock) { | ||
84 | + AioContext *ctx = qemu_get_current_aio_context(); | ||
85 | + SCSIRequest *req; | ||
86 | + SCSIRequest *next; | ||
87 | + | ||
88 | + QTAILQ_FOREACH_SAFE(req, &s->requests, next, next) { | ||
89 | + if (req->ctx == ctx) { | ||
90 | + scsi_req_ref(req); /* dropped after calling fn() */ | ||
91 | + reqs = g_list_prepend(reqs, req); | ||
92 | + } | ||
93 | + } | ||
94 | + } | ||
95 | |||
96 | - QTAILQ_FOREACH_SAFE(req, &s->requests, next, next) { | ||
97 | - data->fn(req, data->fn_opaque); | ||
98 | + /* Call fn() on each request */ | ||
99 | + for (GList *elem = g_list_first(reqs); elem; elem = g_list_next(elem)) { | ||
100 | + data->fn(elem->data, data->fn_opaque); | ||
101 | + scsi_req_unref(elem->data); | ||
102 | } | ||
103 | |||
104 | /* Drop the reference taken by scsi_device_for_each_req_async() */ | ||
105 | @@ -XXX,XX +XXX,XX @@ static void scsi_device_for_each_req_async_bh(void *opaque) | ||
106 | blk_dec_in_flight(s->conf.blk); | ||
107 | } | ||
108 | |||
109 | +static void scsi_device_for_each_req_async_do_ctx(gpointer key, gpointer value, | ||
110 | + gpointer user_data) | ||
111 | +{ | ||
112 | + AioContext *ctx = key; | ||
113 | + SCSIDeviceForEachReqAsyncData *params = user_data; | ||
114 | + SCSIDeviceForEachReqAsyncData *data; | ||
115 | + | ||
116 | + data = g_new(SCSIDeviceForEachReqAsyncData, 1); | ||
117 | + data->s = params->s; | ||
118 | + data->fn = params->fn; | ||
119 | + data->fn_opaque = params->fn_opaque; | ||
120 | + | ||
121 | + /* | ||
122 | + * Hold a reference to the SCSIDevice until | ||
123 | + * scsi_device_for_each_req_async_bh() finishes. | ||
124 | + */ | ||
125 | + object_ref(OBJECT(data->s)); | ||
126 | + | ||
127 | + /* Paired with scsi_device_for_each_req_async_bh() */ | ||
128 | + blk_inc_in_flight(data->s->conf.blk); | ||
129 | + | ||
130 | + aio_bh_schedule_oneshot(ctx, scsi_device_for_each_req_async_bh, data); | ||
131 | +} | ||
132 | + | ||
133 | /* | ||
134 | * Schedule @fn() to be invoked for each enqueued request in device @s. @fn() | ||
135 | - * runs in the AioContext that is executing the request. | ||
136 | + * must be thread-safe because it runs concurrently in each AioContext that is | ||
137 | + * executing a request. | ||
138 | + * | ||
139 | * Keeps the BlockBackend's in-flight counter incremented until everything is | ||
140 | * done, so draining it will settle all scheduled @fn() calls. | ||
141 | */ | ||
142 | @@ -XXX,XX +XXX,XX @@ static void scsi_device_for_each_req_async(SCSIDevice *s, | ||
143 | { | ||
144 | assert(qemu_in_main_thread()); | ||
145 | |||
146 | - SCSIDeviceForEachReqAsyncData *data = | ||
147 | - g_new(SCSIDeviceForEachReqAsyncData, 1); | ||
148 | - | ||
149 | - data->s = s; | ||
150 | - data->fn = fn; | ||
151 | - data->fn_opaque = opaque; | ||
152 | - | ||
153 | - /* | ||
154 | - * Hold a reference to the SCSIDevice until | ||
155 | - * scsi_device_for_each_req_async_bh() finishes. | ||
156 | - */ | ||
157 | - object_ref(OBJECT(s)); | ||
158 | + /* The set of AioContexts where the requests are being processed */ | ||
159 | + g_autoptr(GHashTable) aio_contexts = g_hash_table_new(NULL, NULL); | ||
160 | + WITH_QEMU_LOCK_GUARD(&s->requests_lock) { | ||
161 | + SCSIRequest *req; | ||
162 | + QTAILQ_FOREACH(req, &s->requests, next) { | ||
163 | + g_hash_table_add(aio_contexts, req->ctx); | ||
164 | + } | ||
165 | + } | ||
166 | |||
167 | - /* Paired with blk_dec_in_flight() in scsi_device_for_each_req_async_bh() */ | ||
168 | - blk_inc_in_flight(s->conf.blk); | ||
169 | - aio_bh_schedule_oneshot(blk_get_aio_context(s->conf.blk), | ||
170 | - scsi_device_for_each_req_async_bh, | ||
171 | - data); | ||
172 | + /* Schedule a BH for each AioContext */ | ||
173 | + SCSIDeviceForEachReqAsyncData params = { | ||
174 | + .s = s, | ||
175 | + .fn = fn, | ||
176 | + .fn_opaque = opaque, | ||
177 | + }; | ||
178 | + g_hash_table_foreach( | ||
179 | + aio_contexts, | ||
180 | + scsi_device_for_each_req_async_do_ctx, | ||
181 | + ¶ms | ||
182 | + ); | ||
183 | } | ||
184 | |||
185 | static void scsi_device_realize(SCSIDevice *s, Error **errp) | ||
186 | @@ -XXX,XX +XXX,XX @@ static void scsi_qdev_realize(DeviceState *qdev, Error **errp) | ||
187 | dev->lun = lun; | ||
188 | } | ||
189 | |||
190 | + qemu_mutex_init(&dev->requests_lock); | ||
191 | QTAILQ_INIT(&dev->requests); | ||
192 | scsi_device_realize(dev, &local_err); | ||
193 | if (local_err) { | ||
194 | @@ -XXX,XX +XXX,XX @@ static void scsi_qdev_unrealize(DeviceState *qdev) | ||
195 | |||
196 | scsi_device_purge_requests(dev, SENSE_CODE(NO_SENSE)); | ||
197 | |||
198 | + qemu_mutex_destroy(&dev->requests_lock); | ||
199 | + | ||
200 | scsi_device_unrealize(dev); | ||
201 | |||
202 | blockdev_mark_auto_del(dev->conf.blk); | ||
203 | @@ -XXX,XX +XXX,XX @@ static void scsi_req_enqueue_internal(SCSIRequest *req) | ||
204 | req->sg = NULL; | ||
205 | } | ||
206 | req->enqueued = true; | ||
207 | - QTAILQ_INSERT_TAIL(&req->dev->requests, req, next); | ||
208 | + | ||
209 | + WITH_QEMU_LOCK_GUARD(&req->dev->requests_lock) { | ||
210 | + QTAILQ_INSERT_TAIL(&req->dev->requests, req, next); | ||
211 | + } | ||
212 | } | ||
213 | |||
214 | int32_t scsi_req_enqueue(SCSIRequest *req) | ||
215 | @@ -XXX,XX +XXX,XX @@ static void scsi_req_dequeue(SCSIRequest *req) | ||
216 | trace_scsi_req_dequeue(req->dev->id, req->lun, req->tag); | ||
217 | req->retry = false; | ||
218 | if (req->enqueued) { | ||
219 | - QTAILQ_REMOVE(&req->dev->requests, req, next); | ||
220 | + WITH_QEMU_LOCK_GUARD(&req->dev->requests_lock) { | ||
221 | + QTAILQ_REMOVE(&req->dev->requests, req, next); | ||
222 | + } | ||
223 | req->enqueued = false; | ||
224 | scsi_req_unref(req); | ||
225 | } | ||
226 | @@ -XXX,XX +XXX,XX @@ static void scsi_device_class_init(ObjectClass *klass, void *data) | ||
227 | |||
228 | static void scsi_dev_instance_init(Object *obj) | ||
229 | { | ||
230 | - DeviceState *dev = DEVICE(obj); | ||
231 | - SCSIDevice *s = SCSI_DEVICE(dev); | ||
232 | + SCSIDevice *s = SCSI_DEVICE(obj); | ||
233 | |||
234 | device_add_bootindex_property(obj, &s->conf.bootindex, | ||
235 | "bootindex", NULL, | ||
236 | -- | ||
237 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | 1 | From: Stefan Hajnoczi <stefanha@redhat.com> | |
2 | |||
3 | Virtqueues are not thread-safe. Until now this was not a major issue | ||
4 | since all virtqueue processing happened in the same thread. The ctrl | ||
5 | queue's Task Management Function (TMF) requests sometimes need the main | ||
6 | loop, so a BH was used to schedule the virtqueue completion back in the | ||
7 | thread that has virtqueue access. | ||
8 | |||
9 | When IOThread Virtqueue Mapping is introduced in later commits, event | ||
10 | and ctrl virtqueue accesses from other threads will become necessary. | ||
11 | Introduce an optional per-virtqueue lock so the event and ctrl | ||
12 | virtqueues can be protected in the commits that follow. | ||
13 | |||
14 | The addition of the ctrl virtqueue lock makes | ||
15 | virtio_scsi_complete_req_from_main_loop() and its BH unnecessary. | ||
16 | Instead, take the ctrl virtqueue lock from the main loop thread. | ||
17 | |||
18 | The cmd virtqueue does not have a lock because the entirety of SCSI | ||
19 | command processing happens in one thread. Only one thread accesses the | ||
20 | cmd virtqueue and a lock is unnecessary. | ||
21 | |||
22 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
23 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
24 | Message-ID: <20250311132616.1049687-6-stefanha@redhat.com> | ||
25 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
26 | --- | ||
27 | include/hw/virtio/virtio-scsi.h | 3 ++ | ||
28 | hw/scsi/virtio-scsi.c | 84 ++++++++++++++++++--------------- | ||
29 | 2 files changed, 49 insertions(+), 38 deletions(-) | ||
30 | |||
31 | diff --git a/include/hw/virtio/virtio-scsi.h b/include/hw/virtio/virtio-scsi.h | ||
32 | index XXXXXXX..XXXXXXX 100644 | ||
33 | --- a/include/hw/virtio/virtio-scsi.h | ||
34 | +++ b/include/hw/virtio/virtio-scsi.h | ||
35 | @@ -XXX,XX +XXX,XX @@ struct VirtIOSCSI { | ||
36 | int resetting; /* written from main loop thread, read from any thread */ | ||
37 | bool events_dropped; | ||
38 | |||
39 | + QemuMutex ctrl_lock; /* protects ctrl_vq */ | ||
40 | + QemuMutex event_lock; /* protects event_vq */ | ||
41 | + | ||
42 | /* | ||
43 | * TMFs deferred to main loop BH. These fields are protected by | ||
44 | * tmf_bh_lock. | ||
45 | diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c | ||
46 | index XXXXXXX..XXXXXXX 100644 | ||
47 | --- a/hw/scsi/virtio-scsi.c | ||
48 | +++ b/hw/scsi/virtio-scsi.c | ||
49 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_free_req(VirtIOSCSIReq *req) | ||
50 | g_free(req); | ||
51 | } | ||
52 | |||
53 | -static void virtio_scsi_complete_req(VirtIOSCSIReq *req) | ||
54 | +static void virtio_scsi_complete_req(VirtIOSCSIReq *req, QemuMutex *vq_lock) | ||
55 | { | ||
56 | VirtIOSCSI *s = req->dev; | ||
57 | VirtQueue *vq = req->vq; | ||
58 | VirtIODevice *vdev = VIRTIO_DEVICE(s); | ||
59 | |||
60 | qemu_iovec_from_buf(&req->resp_iov, 0, &req->resp, req->resp_size); | ||
61 | + | ||
62 | + if (vq_lock) { | ||
63 | + qemu_mutex_lock(vq_lock); | ||
64 | + } | ||
65 | + | ||
66 | virtqueue_push(vq, &req->elem, req->qsgl.size + req->resp_iov.size); | ||
67 | if (s->dataplane_started && !s->dataplane_fenced) { | ||
68 | virtio_notify_irqfd(vdev, vq); | ||
69 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_complete_req(VirtIOSCSIReq *req) | ||
70 | virtio_notify(vdev, vq); | ||
71 | } | ||
72 | |||
73 | + if (vq_lock) { | ||
74 | + qemu_mutex_unlock(vq_lock); | ||
75 | + } | ||
76 | + | ||
77 | if (req->sreq) { | ||
78 | req->sreq->hba_private = NULL; | ||
79 | scsi_req_unref(req->sreq); | ||
80 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_complete_req(VirtIOSCSIReq *req) | ||
81 | virtio_scsi_free_req(req); | ||
82 | } | ||
83 | |||
84 | -static void virtio_scsi_complete_req_bh(void *opaque) | ||
85 | +static void virtio_scsi_bad_req(VirtIOSCSIReq *req, QemuMutex *vq_lock) | ||
86 | { | ||
87 | - VirtIOSCSIReq *req = opaque; | ||
88 | + virtio_error(VIRTIO_DEVICE(req->dev), "wrong size for virtio-scsi headers"); | ||
89 | |||
90 | - virtio_scsi_complete_req(req); | ||
91 | -} | ||
92 | + if (vq_lock) { | ||
93 | + qemu_mutex_lock(vq_lock); | ||
94 | + } | ||
95 | |||
96 | -/* | ||
97 | - * Called from virtio_scsi_do_one_tmf_bh() in main loop thread. The main loop | ||
98 | - * thread cannot touch the virtqueue since that could race with an IOThread. | ||
99 | - */ | ||
100 | -static void virtio_scsi_complete_req_from_main_loop(VirtIOSCSIReq *req) | ||
101 | -{ | ||
102 | - VirtIOSCSI *s = req->dev; | ||
103 | + virtqueue_detach_element(req->vq, &req->elem, 0); | ||
104 | |||
105 | - if (!s->ctx || s->ctx == qemu_get_aio_context()) { | ||
106 | - /* No need to schedule a BH when there is no IOThread */ | ||
107 | - virtio_scsi_complete_req(req); | ||
108 | - } else { | ||
109 | - /* Run request completion in the IOThread */ | ||
110 | - aio_wait_bh_oneshot(s->ctx, virtio_scsi_complete_req_bh, req); | ||
111 | + if (vq_lock) { | ||
112 | + qemu_mutex_unlock(vq_lock); | ||
113 | } | ||
114 | -} | ||
115 | |||
116 | -static void virtio_scsi_bad_req(VirtIOSCSIReq *req) | ||
117 | -{ | ||
118 | - virtio_error(VIRTIO_DEVICE(req->dev), "wrong size for virtio-scsi headers"); | ||
119 | - virtqueue_detach_element(req->vq, &req->elem, 0); | ||
120 | virtio_scsi_free_req(req); | ||
121 | } | ||
122 | |||
123 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_parse_req(VirtIOSCSIReq *req, | ||
124 | return 0; | ||
125 | } | ||
126 | |||
127 | -static VirtIOSCSIReq *virtio_scsi_pop_req(VirtIOSCSI *s, VirtQueue *vq) | ||
128 | +static VirtIOSCSIReq *virtio_scsi_pop_req(VirtIOSCSI *s, VirtQueue *vq, QemuMutex *vq_lock) | ||
129 | { | ||
130 | VirtIOSCSICommon *vs = (VirtIOSCSICommon *)s; | ||
131 | VirtIOSCSIReq *req; | ||
132 | |||
133 | + if (vq_lock) { | ||
134 | + qemu_mutex_lock(vq_lock); | ||
135 | + } | ||
136 | + | ||
137 | req = virtqueue_pop(vq, sizeof(VirtIOSCSIReq) + vs->cdb_size); | ||
138 | + | ||
139 | + if (vq_lock) { | ||
140 | + qemu_mutex_unlock(vq_lock); | ||
141 | + } | ||
142 | + | ||
143 | if (!req) { | ||
144 | return NULL; | ||
145 | } | ||
146 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_cancel_notify(Notifier *notifier, void *data) | ||
147 | |||
148 | trace_virtio_scsi_tmf_resp(virtio_scsi_get_lun(req->req.tmf.lun), | ||
149 | req->req.tmf.tag, req->resp.tmf.response); | ||
150 | - virtio_scsi_complete_req(req); | ||
151 | + virtio_scsi_complete_req(req, &req->dev->ctrl_lock); | ||
152 | } | ||
153 | g_free(n); | ||
154 | } | ||
155 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_do_one_tmf_bh(VirtIOSCSIReq *req) | ||
156 | |||
157 | out: | ||
158 | object_unref(OBJECT(d)); | ||
159 | - virtio_scsi_complete_req_from_main_loop(req); | ||
160 | + virtio_scsi_complete_req(req, &s->ctrl_lock); | ||
161 | } | ||
162 | |||
163 | /* Some TMFs must be processed from the main loop thread */ | ||
164 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_reset_tmf_bh(VirtIOSCSI *s) | ||
165 | |||
166 | /* SAM-6 6.3.2 Hard reset */ | ||
167 | req->resp.tmf.response = VIRTIO_SCSI_S_TARGET_FAILURE; | ||
168 | - virtio_scsi_complete_req(req); | ||
169 | + virtio_scsi_complete_req(req, &req->dev->ctrl_lock); | ||
170 | } | ||
171 | } | ||
172 | |||
173 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_handle_ctrl_req(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
174 | |||
175 | if (iov_to_buf(req->elem.out_sg, req->elem.out_num, 0, | ||
176 | &type, sizeof(type)) < sizeof(type)) { | ||
177 | - virtio_scsi_bad_req(req); | ||
178 | + virtio_scsi_bad_req(req, &s->ctrl_lock); | ||
179 | return; | ||
180 | } | ||
181 | |||
182 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_handle_ctrl_req(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
183 | if (type == VIRTIO_SCSI_T_TMF) { | ||
184 | if (virtio_scsi_parse_req(req, sizeof(VirtIOSCSICtrlTMFReq), | ||
185 | sizeof(VirtIOSCSICtrlTMFResp)) < 0) { | ||
186 | - virtio_scsi_bad_req(req); | ||
187 | + virtio_scsi_bad_req(req, &s->ctrl_lock); | ||
188 | return; | ||
189 | } else { | ||
190 | r = virtio_scsi_do_tmf(s, req); | ||
191 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_handle_ctrl_req(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
192 | type == VIRTIO_SCSI_T_AN_SUBSCRIBE) { | ||
193 | if (virtio_scsi_parse_req(req, sizeof(VirtIOSCSICtrlANReq), | ||
194 | sizeof(VirtIOSCSICtrlANResp)) < 0) { | ||
195 | - virtio_scsi_bad_req(req); | ||
196 | + virtio_scsi_bad_req(req, &s->ctrl_lock); | ||
197 | return; | ||
198 | } else { | ||
199 | req->req.an.event_requested = | ||
200 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_handle_ctrl_req(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
201 | type == VIRTIO_SCSI_T_AN_SUBSCRIBE) | ||
202 | trace_virtio_scsi_an_resp(virtio_scsi_get_lun(req->req.an.lun), | ||
203 | req->resp.an.response); | ||
204 | - virtio_scsi_complete_req(req); | ||
205 | + virtio_scsi_complete_req(req, &s->ctrl_lock); | ||
206 | } else { | ||
207 | assert(r == -EINPROGRESS); | ||
208 | } | ||
209 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_handle_ctrl_vq(VirtIOSCSI *s, VirtQueue *vq) | ||
210 | { | ||
211 | VirtIOSCSIReq *req; | ||
212 | |||
213 | - while ((req = virtio_scsi_pop_req(s, vq))) { | ||
214 | + while ((req = virtio_scsi_pop_req(s, vq, &s->ctrl_lock))) { | ||
215 | virtio_scsi_handle_ctrl_req(s, req); | ||
216 | } | ||
217 | } | ||
218 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_complete_cmd_req(VirtIOSCSIReq *req) | ||
219 | * in virtio_scsi_command_complete. | ||
220 | */ | ||
221 | req->resp_size = sizeof(VirtIOSCSICmdResp); | ||
222 | - virtio_scsi_complete_req(req); | ||
223 | + virtio_scsi_complete_req(req, NULL); | ||
224 | } | ||
225 | |||
226 | static void virtio_scsi_command_failed(SCSIRequest *r) | ||
227 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_handle_cmd_req_prepare(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
228 | virtio_scsi_fail_cmd_req(req); | ||
229 | return -ENOTSUP; | ||
230 | } else { | ||
231 | - virtio_scsi_bad_req(req); | ||
232 | + virtio_scsi_bad_req(req, NULL); | ||
233 | return -EINVAL; | ||
234 | } | ||
235 | } | ||
236 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_handle_cmd_vq(VirtIOSCSI *s, VirtQueue *vq) | ||
237 | virtio_queue_set_notification(vq, 0); | ||
238 | } | ||
239 | |||
240 | - while ((req = virtio_scsi_pop_req(s, vq))) { | ||
241 | + while ((req = virtio_scsi_pop_req(s, vq, NULL))) { | ||
242 | ret = virtio_scsi_handle_cmd_req_prepare(s, req); | ||
243 | if (!ret) { | ||
244 | QTAILQ_INSERT_TAIL(&reqs, req, next); | ||
245 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_push_event(VirtIOSCSI *s, | ||
246 | return; | ||
247 | } | ||
248 | |||
249 | - req = virtio_scsi_pop_req(s, vs->event_vq); | ||
250 | + req = virtio_scsi_pop_req(s, vs->event_vq, &s->event_lock); | ||
251 | if (!req) { | ||
252 | s->events_dropped = true; | ||
253 | return; | ||
254 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_push_event(VirtIOSCSI *s, | ||
255 | } | ||
256 | |||
257 | if (virtio_scsi_parse_req(req, 0, sizeof(VirtIOSCSIEvent))) { | ||
258 | - virtio_scsi_bad_req(req); | ||
259 | + virtio_scsi_bad_req(req, &s->event_lock); | ||
260 | return; | ||
261 | } | ||
262 | |||
263 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_push_event(VirtIOSCSI *s, | ||
264 | } | ||
265 | trace_virtio_scsi_event(virtio_scsi_get_lun(evt->lun), event, reason); | ||
266 | |||
267 | - virtio_scsi_complete_req(req); | ||
268 | + virtio_scsi_complete_req(req, &s->event_lock); | ||
269 | } | ||
270 | |||
271 | static void virtio_scsi_handle_event_vq(VirtIOSCSI *s, VirtQueue *vq) | ||
272 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_device_realize(DeviceState *dev, Error **errp) | ||
273 | Error *err = NULL; | ||
274 | |||
275 | QTAILQ_INIT(&s->tmf_bh_list); | ||
276 | + qemu_mutex_init(&s->ctrl_lock); | ||
277 | + qemu_mutex_init(&s->event_lock); | ||
278 | qemu_mutex_init(&s->tmf_bh_lock); | ||
279 | |||
280 | virtio_scsi_common_realize(dev, | ||
281 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_device_unrealize(DeviceState *dev) | ||
282 | qbus_set_hotplug_handler(BUS(&s->bus), NULL); | ||
283 | virtio_scsi_common_unrealize(dev); | ||
284 | qemu_mutex_destroy(&s->tmf_bh_lock); | ||
285 | + qemu_mutex_destroy(&s->event_lock); | ||
286 | + qemu_mutex_destroy(&s->ctrl_lock); | ||
287 | } | ||
288 | |||
289 | static const Property virtio_scsi_properties[] = { | ||
290 | -- | ||
291 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
1 | 2 | ||
3 | The block layer can invoke the resize callback from any AioContext that | ||
4 | is processing requests. The virtqueue is already protected but the | ||
5 | events_dropped field also needs to be protected against races. Cover it | ||
6 | using the event virtqueue lock because it is closely associated with | ||
7 | accesses to the virtqueue. | ||
8 | |||
9 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
10 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
11 | Message-ID: <20250311132616.1049687-7-stefanha@redhat.com> | ||
12 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
13 | --- | ||
14 | include/hw/virtio/virtio-scsi.h | 3 ++- | ||
15 | hw/scsi/virtio-scsi.c | 29 ++++++++++++++++++++--------- | ||
16 | 2 files changed, 22 insertions(+), 10 deletions(-) | ||
17 | |||
18 | diff --git a/include/hw/virtio/virtio-scsi.h b/include/hw/virtio/virtio-scsi.h | ||
19 | index XXXXXXX..XXXXXXX 100644 | ||
20 | --- a/include/hw/virtio/virtio-scsi.h | ||
21 | +++ b/include/hw/virtio/virtio-scsi.h | ||
22 | @@ -XXX,XX +XXX,XX @@ struct VirtIOSCSI { | ||
23 | |||
24 | SCSIBus bus; | ||
25 | int resetting; /* written from main loop thread, read from any thread */ | ||
26 | + | ||
27 | + QemuMutex event_lock; /* protects event_vq and events_dropped */ | ||
28 | bool events_dropped; | ||
29 | |||
30 | QemuMutex ctrl_lock; /* protects ctrl_vq */ | ||
31 | - QemuMutex event_lock; /* protects event_vq */ | ||
32 | |||
33 | /* | ||
34 | * TMFs deferred to main loop BH. These fields are protected by | ||
35 | diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c | ||
36 | index XXXXXXX..XXXXXXX 100644 | ||
37 | --- a/hw/scsi/virtio-scsi.c | ||
38 | +++ b/hw/scsi/virtio-scsi.c | ||
39 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_reset(VirtIODevice *vdev) | ||
40 | |||
41 | vs->sense_size = VIRTIO_SCSI_SENSE_DEFAULT_SIZE; | ||
42 | vs->cdb_size = VIRTIO_SCSI_CDB_DEFAULT_SIZE; | ||
43 | - s->events_dropped = false; | ||
44 | + | ||
45 | + WITH_QEMU_LOCK_GUARD(&s->event_lock) { | ||
46 | + s->events_dropped = false; | ||
47 | + } | ||
48 | } | ||
49 | |||
50 | typedef struct { | ||
51 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_push_event(VirtIOSCSI *s, | ||
52 | } | ||
53 | |||
54 | req = virtio_scsi_pop_req(s, vs->event_vq, &s->event_lock); | ||
55 | - if (!req) { | ||
56 | - s->events_dropped = true; | ||
57 | - return; | ||
58 | - } | ||
59 | + WITH_QEMU_LOCK_GUARD(&s->event_lock) { | ||
60 | + if (!req) { | ||
61 | + s->events_dropped = true; | ||
62 | + return; | ||
63 | + } | ||
64 | |||
65 | - if (s->events_dropped) { | ||
66 | - event |= VIRTIO_SCSI_T_EVENTS_MISSED; | ||
67 | - s->events_dropped = false; | ||
68 | + if (s->events_dropped) { | ||
69 | + event |= VIRTIO_SCSI_T_EVENTS_MISSED; | ||
70 | + s->events_dropped = false; | ||
71 | + } | ||
72 | } | ||
73 | |||
74 | if (virtio_scsi_parse_req(req, 0, sizeof(VirtIOSCSIEvent))) { | ||
75 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_push_event(VirtIOSCSI *s, | ||
76 | |||
77 | static void virtio_scsi_handle_event_vq(VirtIOSCSI *s, VirtQueue *vq) | ||
78 | { | ||
79 | - if (s->events_dropped) { | ||
80 | + bool events_dropped; | ||
81 | + | ||
82 | + WITH_QEMU_LOCK_GUARD(&s->event_lock) { | ||
83 | + events_dropped = s->events_dropped; | ||
84 | + } | ||
85 | + | ||
86 | + if (events_dropped) { | ||
87 | VirtIOSCSIEventInfo info = { | ||
88 | .event = VIRTIO_SCSI_T_NO_EVENT, | ||
89 | }; | ||
90 | -- | ||
91 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | 1 | From: Stefan Hajnoczi <stefanha@redhat.com> | |
2 | |||
3 | With IOThread Virtqueue Mapping there will be multiple AioContexts | ||
4 | processing SCSI requests. scsi_req_cancel() and other SCSI request | ||
5 | operations must be performed from the AioContext where the request is | ||
6 | running. | ||
7 | |||
8 | Introduce a virtio_scsi_defer_tmf_to_aio_context() function and the | ||
9 | necessary VirtIOSCSIReq->remaining refcount infrastructure to move the | ||
10 | TMF code into the AioContext where the request is running. | ||
11 | |||
12 | For the time being there is still just one AioContext: the main loop or | ||
13 | the IOThread. When the iothread-vq-mapping parameter is added in a later | ||
14 | patch this will be changed to per-virtqueue AioContexts. | ||
15 | |||
16 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
17 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
18 | Message-ID: <20250311132616.1049687-8-stefanha@redhat.com> | ||
19 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
20 | --- | ||
21 | hw/scsi/virtio-scsi.c | 270 ++++++++++++++++++++++++++++++++---------- | ||
22 | 1 file changed, 206 insertions(+), 64 deletions(-) | ||
23 | |||
24 | diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c | ||
25 | index XXXXXXX..XXXXXXX 100644 | ||
26 | --- a/hw/scsi/virtio-scsi.c | ||
27 | +++ b/hw/scsi/virtio-scsi.c | ||
28 | @@ -XXX,XX +XXX,XX @@ typedef struct VirtIOSCSIReq { | ||
29 | /* Used for two-stage request submission and TMFs deferred to BH */ | ||
30 | QTAILQ_ENTRY(VirtIOSCSIReq) next; | ||
31 | |||
32 | - /* Used for cancellation of request during TMFs */ | ||
33 | + /* Used for cancellation of request during TMFs. Atomic. */ | ||
34 | int remaining; | ||
35 | |||
36 | SCSIRequest *sreq; | ||
37 | @@ -XXX,XX +XXX,XX @@ typedef struct { | ||
38 | VirtIOSCSIReq *tmf_req; | ||
39 | } VirtIOSCSICancelNotifier; | ||
40 | |||
41 | +static void virtio_scsi_tmf_dec_remaining(VirtIOSCSIReq *tmf) | ||
42 | +{ | ||
43 | + if (qatomic_fetch_dec(&tmf->remaining) == 1) { | ||
44 | + trace_virtio_scsi_tmf_resp(virtio_scsi_get_lun(tmf->req.tmf.lun), | ||
45 | + tmf->req.tmf.tag, tmf->resp.tmf.response); | ||
46 | + | ||
47 | + virtio_scsi_complete_req(tmf, &tmf->dev->ctrl_lock); | ||
48 | + } | ||
49 | +} | ||
50 | + | ||
51 | static void virtio_scsi_cancel_notify(Notifier *notifier, void *data) | ||
52 | { | ||
53 | VirtIOSCSICancelNotifier *n = container_of(notifier, | ||
54 | VirtIOSCSICancelNotifier, | ||
55 | notifier); | ||
56 | |||
57 | - if (--n->tmf_req->remaining == 0) { | ||
58 | - VirtIOSCSIReq *req = n->tmf_req; | ||
59 | - | ||
60 | - trace_virtio_scsi_tmf_resp(virtio_scsi_get_lun(req->req.tmf.lun), | ||
61 | - req->req.tmf.tag, req->resp.tmf.response); | ||
62 | - virtio_scsi_complete_req(req, &req->dev->ctrl_lock); | ||
63 | - } | ||
64 | + virtio_scsi_tmf_dec_remaining(n->tmf_req); | ||
65 | g_free(n); | ||
66 | } | ||
67 | |||
68 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_reset_tmf_bh(VirtIOSCSI *s) | ||
69 | } | ||
70 | } | ||
71 | |||
72 | -static void virtio_scsi_defer_tmf_to_bh(VirtIOSCSIReq *req) | ||
73 | +static void virtio_scsi_defer_tmf_to_main_loop(VirtIOSCSIReq *req) | ||
74 | { | ||
75 | VirtIOSCSI *s = req->dev; | ||
76 | |||
77 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_defer_tmf_to_bh(VirtIOSCSIReq *req) | ||
78 | } | ||
79 | } | ||
80 | |||
81 | +static void virtio_scsi_tmf_cancel_req(VirtIOSCSIReq *tmf, SCSIRequest *r) | ||
82 | +{ | ||
83 | + VirtIOSCSICancelNotifier *notifier; | ||
84 | + | ||
85 | + assert(r->ctx == qemu_get_current_aio_context()); | ||
86 | + | ||
87 | + /* Decremented in virtio_scsi_cancel_notify() */ | ||
88 | + qatomic_inc(&tmf->remaining); | ||
89 | + | ||
90 | + notifier = g_new(VirtIOSCSICancelNotifier, 1); | ||
91 | + notifier->notifier.notify = virtio_scsi_cancel_notify; | ||
92 | + notifier->tmf_req = tmf; | ||
93 | + scsi_req_cancel_async(r, ¬ifier->notifier); | ||
94 | +} | ||
95 | + | ||
96 | +/* Execute a TMF on the requests in the current AioContext */ | ||
97 | +static void virtio_scsi_do_tmf_aio_context(void *opaque) | ||
98 | +{ | ||
99 | + AioContext *ctx = qemu_get_current_aio_context(); | ||
100 | + VirtIOSCSIReq *tmf = opaque; | ||
101 | + VirtIOSCSI *s = tmf->dev; | ||
102 | + SCSIDevice *d = virtio_scsi_device_get(s, tmf->req.tmf.lun); | ||
103 | + SCSIRequest *r; | ||
104 | + bool match_tag; | ||
105 | + | ||
106 | + if (!d) { | ||
107 | + tmf->resp.tmf.response = VIRTIO_SCSI_S_BAD_TARGET; | ||
108 | + virtio_scsi_tmf_dec_remaining(tmf); | ||
109 | + return; | ||
110 | + } | ||
111 | + | ||
112 | + /* | ||
113 | + * This function could handle other subtypes that need to be processed in | ||
114 | + * the request's AioContext in the future, but for now only request | ||
115 | + * cancelation subtypes are performed here. | ||
116 | + */ | ||
117 | + switch (tmf->req.tmf.subtype) { | ||
118 | + case VIRTIO_SCSI_T_TMF_ABORT_TASK: | ||
119 | + match_tag = true; | ||
120 | + break; | ||
121 | + case VIRTIO_SCSI_T_TMF_ABORT_TASK_SET: | ||
122 | + case VIRTIO_SCSI_T_TMF_CLEAR_TASK_SET: | ||
123 | + match_tag = false; | ||
124 | + break; | ||
125 | + default: | ||
126 | + g_assert_not_reached(); | ||
127 | + } | ||
128 | + | ||
129 | + WITH_QEMU_LOCK_GUARD(&d->requests_lock) { | ||
130 | + QTAILQ_FOREACH(r, &d->requests, next) { | ||
131 | + VirtIOSCSIReq *cmd_req = r->hba_private; | ||
132 | + assert(cmd_req); /* request has hba_private while enqueued */ | ||
133 | + | ||
134 | + if (r->ctx != ctx) { | ||
135 | + continue; | ||
136 | + } | ||
137 | + if (match_tag && cmd_req->req.cmd.tag != tmf->req.tmf.tag) { | ||
138 | + continue; | ||
139 | + } | ||
140 | + virtio_scsi_tmf_cancel_req(tmf, r); | ||
141 | + } | ||
142 | + } | ||
143 | + | ||
144 | + /* Incremented by virtio_scsi_do_tmf() */ | ||
145 | + virtio_scsi_tmf_dec_remaining(tmf); | ||
146 | + | ||
147 | + object_unref(d); | ||
148 | +} | ||
149 | + | ||
150 | +static void dummy_bh(void *opaque) | ||
151 | +{ | ||
152 | + /* Do nothing */ | ||
153 | +} | ||
154 | + | ||
155 | +/* | ||
156 | + * Wait for pending virtio_scsi_defer_tmf_to_aio_context() BHs. | ||
157 | + */ | ||
158 | +static void virtio_scsi_flush_defer_tmf_to_aio_context(VirtIOSCSI *s) | ||
159 | +{ | ||
160 | + GLOBAL_STATE_CODE(); | ||
161 | + | ||
162 | + assert(!s->dataplane_started); | ||
163 | + | ||
164 | + if (s->ctx) { | ||
165 | + /* Our BH only runs after previously scheduled BHs */ | ||
166 | + aio_wait_bh_oneshot(s->ctx, dummy_bh, NULL); | ||
167 | + } | ||
168 | +} | ||
169 | + | ||
170 | +/* | ||
171 | + * Run the TMF in a specific AioContext, handling only requests in that | ||
172 | + * AioContext. This is necessary because requests can run in different | ||
173 | + * AioContext and it is only possible to cancel them from the AioContext where | ||
174 | + * they are running. | ||
175 | + */ | ||
176 | +static void virtio_scsi_defer_tmf_to_aio_context(VirtIOSCSIReq *tmf, | ||
177 | + AioContext *ctx) | ||
178 | +{ | ||
179 | + /* Decremented in virtio_scsi_do_tmf_aio_context() */ | ||
180 | + qatomic_inc(&tmf->remaining); | ||
181 | + | ||
182 | + /* See virtio_scsi_flush_defer_tmf_to_aio_context() cleanup during reset */ | ||
183 | + aio_bh_schedule_oneshot(ctx, virtio_scsi_do_tmf_aio_context, tmf); | ||
184 | +} | ||
185 | + | ||
186 | +/* | ||
187 | + * Returns the AioContext for a given TMF's tag field or NULL. Note that the | ||
188 | + * request identified by the tag may have completed by the time you can execute | ||
189 | + * a BH in the AioContext, so don't assume the request still exists in your BH. | ||
190 | + */ | ||
191 | +static AioContext *find_aio_context_for_tmf_tag(SCSIDevice *d, | ||
192 | + VirtIOSCSIReq *tmf) | ||
193 | +{ | ||
194 | + WITH_QEMU_LOCK_GUARD(&d->requests_lock) { | ||
195 | + SCSIRequest *r; | ||
196 | + SCSIRequest *next; | ||
197 | + | ||
198 | + QTAILQ_FOREACH_SAFE(r, &d->requests, next, next) { | ||
199 | + VirtIOSCSIReq *cmd_req = r->hba_private; | ||
200 | + | ||
201 | + /* hba_private is non-NULL while the request is enqueued */ | ||
202 | + assert(cmd_req); | ||
203 | + | ||
204 | + if (cmd_req->req.cmd.tag == tmf->req.tmf.tag) { | ||
205 | + return r->ctx; | ||
206 | + } | ||
207 | + } | ||
208 | + } | ||
209 | + return NULL; | ||
210 | +} | ||
211 | + | ||
212 | /* Return 0 if the request is ready to be completed and return to guest; | ||
213 | * -EINPROGRESS if the request is submitted and will be completed later, in the | ||
214 | * case of async cancellation. */ | ||
215 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_do_tmf(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
216 | { | ||
217 | SCSIDevice *d = virtio_scsi_device_get(s, req->req.tmf.lun); | ||
218 | SCSIRequest *r, *next; | ||
219 | + AioContext *ctx; | ||
220 | int ret = 0; | ||
221 | |||
222 | virtio_scsi_ctx_check(s, d); | ||
223 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_do_tmf(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
224 | req->req.tmf.tag, req->req.tmf.subtype); | ||
225 | |||
226 | switch (req->req.tmf.subtype) { | ||
227 | - case VIRTIO_SCSI_T_TMF_ABORT_TASK: | ||
228 | - case VIRTIO_SCSI_T_TMF_QUERY_TASK: | ||
229 | + case VIRTIO_SCSI_T_TMF_ABORT_TASK: { | ||
230 | if (!d) { | ||
231 | goto fail; | ||
232 | } | ||
233 | if (d->lun != virtio_scsi_get_lun(req->req.tmf.lun)) { | ||
234 | goto incorrect_lun; | ||
235 | } | ||
236 | - QTAILQ_FOREACH_SAFE(r, &d->requests, next, next) { | ||
237 | - VirtIOSCSIReq *cmd_req = r->hba_private; | ||
238 | - if (cmd_req && cmd_req->req.cmd.tag == req->req.tmf.tag) { | ||
239 | - break; | ||
240 | - } | ||
241 | + | ||
242 | + ctx = find_aio_context_for_tmf_tag(d, req); | ||
243 | + if (ctx) { | ||
244 | + virtio_scsi_defer_tmf_to_aio_context(req, ctx); | ||
245 | + ret = -EINPROGRESS; | ||
246 | } | ||
247 | - if (r) { | ||
248 | - /* | ||
249 | - * Assert that the request has not been completed yet, we | ||
250 | - * check for it in the loop above. | ||
251 | - */ | ||
252 | - assert(r->hba_private); | ||
253 | - if (req->req.tmf.subtype == VIRTIO_SCSI_T_TMF_QUERY_TASK) { | ||
254 | - /* "If the specified command is present in the task set, then | ||
255 | - * return a service response set to FUNCTION SUCCEEDED". | ||
256 | - */ | ||
257 | - req->resp.tmf.response = VIRTIO_SCSI_S_FUNCTION_SUCCEEDED; | ||
258 | - } else { | ||
259 | - VirtIOSCSICancelNotifier *notifier; | ||
260 | - | ||
261 | - req->remaining = 1; | ||
262 | - notifier = g_new(VirtIOSCSICancelNotifier, 1); | ||
263 | - notifier->tmf_req = req; | ||
264 | - notifier->notifier.notify = virtio_scsi_cancel_notify; | ||
265 | - scsi_req_cancel_async(r, ¬ifier->notifier); | ||
266 | - ret = -EINPROGRESS; | ||
267 | + break; | ||
268 | + } | ||
269 | + | ||
270 | + case VIRTIO_SCSI_T_TMF_QUERY_TASK: | ||
271 | + if (!d) { | ||
272 | + goto fail; | ||
273 | + } | ||
274 | + if (d->lun != virtio_scsi_get_lun(req->req.tmf.lun)) { | ||
275 | + goto incorrect_lun; | ||
276 | + } | ||
277 | + | ||
278 | + WITH_QEMU_LOCK_GUARD(&d->requests_lock) { | ||
279 | + QTAILQ_FOREACH(r, &d->requests, next) { | ||
280 | + VirtIOSCSIReq *cmd_req = r->hba_private; | ||
281 | + assert(cmd_req); /* request has hba_private while enqueued */ | ||
282 | + | ||
283 | + if (cmd_req->req.cmd.tag == req->req.tmf.tag) { | ||
284 | + /* | ||
285 | + * "If the specified command is present in the task set, | ||
286 | + * then return a service response set to FUNCTION | ||
287 | + * SUCCEEDED". | ||
288 | + */ | ||
289 | + req->resp.tmf.response = VIRTIO_SCSI_S_FUNCTION_SUCCEEDED; | ||
290 | + } | ||
291 | } | ||
292 | } | ||
293 | break; | ||
294 | |||
295 | case VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET: | ||
296 | case VIRTIO_SCSI_T_TMF_I_T_NEXUS_RESET: | ||
297 | - virtio_scsi_defer_tmf_to_bh(req); | ||
298 | + virtio_scsi_defer_tmf_to_main_loop(req); | ||
299 | ret = -EINPROGRESS; | ||
300 | break; | ||
301 | |||
302 | case VIRTIO_SCSI_T_TMF_ABORT_TASK_SET: | ||
303 | - case VIRTIO_SCSI_T_TMF_CLEAR_TASK_SET: | ||
304 | + case VIRTIO_SCSI_T_TMF_CLEAR_TASK_SET: { | ||
305 | + if (!d) { | ||
306 | + goto fail; | ||
307 | + } | ||
308 | + if (d->lun != virtio_scsi_get_lun(req->req.tmf.lun)) { | ||
309 | + goto incorrect_lun; | ||
310 | + } | ||
311 | + | ||
312 | + qatomic_inc(&req->remaining); | ||
313 | + | ||
314 | + ctx = s->ctx ?: qemu_get_aio_context(); | ||
315 | + virtio_scsi_defer_tmf_to_aio_context(req, ctx); | ||
316 | + | ||
317 | + virtio_scsi_tmf_dec_remaining(req); | ||
318 | + ret = -EINPROGRESS; | ||
319 | + break; | ||
320 | + } | ||
321 | + | ||
322 | case VIRTIO_SCSI_T_TMF_QUERY_TASK_SET: | ||
323 | if (!d) { | ||
324 | goto fail; | ||
325 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_do_tmf(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
326 | goto incorrect_lun; | ||
327 | } | ||
328 | |||
329 | - /* Add 1 to "remaining" until virtio_scsi_do_tmf returns. | ||
330 | - * This way, if the bus starts calling back to the notifiers | ||
331 | - * even before we finish the loop, virtio_scsi_cancel_notify | ||
332 | - * will not complete the TMF too early. | ||
333 | - */ | ||
334 | - req->remaining = 1; | ||
335 | - QTAILQ_FOREACH_SAFE(r, &d->requests, next, next) { | ||
336 | - if (r->hba_private) { | ||
337 | - if (req->req.tmf.subtype == VIRTIO_SCSI_T_TMF_QUERY_TASK_SET) { | ||
338 | - /* "If there is any command present in the task set, then | ||
339 | - * return a service response set to FUNCTION SUCCEEDED". | ||
340 | - */ | ||
341 | - req->resp.tmf.response = VIRTIO_SCSI_S_FUNCTION_SUCCEEDED; | ||
342 | - break; | ||
343 | - } else { | ||
344 | - VirtIOSCSICancelNotifier *notifier; | ||
345 | - | ||
346 | - req->remaining++; | ||
347 | - notifier = g_new(VirtIOSCSICancelNotifier, 1); | ||
348 | - notifier->notifier.notify = virtio_scsi_cancel_notify; | ||
349 | - notifier->tmf_req = req; | ||
350 | - scsi_req_cancel_async(r, ¬ifier->notifier); | ||
351 | - } | ||
352 | + WITH_QEMU_LOCK_GUARD(&d->requests_lock) { | ||
353 | + QTAILQ_FOREACH_SAFE(r, &d->requests, next, next) { | ||
354 | + /* Request has hba_private while enqueued */ | ||
355 | + assert(r->hba_private); | ||
356 | + | ||
357 | + /* | ||
358 | + * "If there is any command present in the task set, then | ||
359 | + * return a service response set to FUNCTION SUCCEEDED". | ||
360 | + */ | ||
361 | + req->resp.tmf.response = VIRTIO_SCSI_S_FUNCTION_SUCCEEDED; | ||
362 | + break; | ||
363 | } | ||
364 | } | ||
365 | - if (--req->remaining > 0) { | ||
366 | - ret = -EINPROGRESS; | ||
367 | - } | ||
368 | break; | ||
369 | |||
370 | case VIRTIO_SCSI_T_TMF_CLEAR_ACA: | ||
371 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_reset(VirtIODevice *vdev) | ||
372 | assert(!s->dataplane_started); | ||
373 | |||
374 | virtio_scsi_reset_tmf_bh(s); | ||
375 | + virtio_scsi_flush_defer_tmf_to_aio_context(s); | ||
376 | |||
377 | qatomic_inc(&s->resetting); | ||
378 | bus_cold_reset(BUS(&s->bus)); | ||
379 | -- | ||
380 | 2.48.1 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
1 | 2 | ||
3 | This is the cleanup function that must be called after | ||
4 | apply_iothread_vq_mapping() succeeds. virtio-scsi will need this | ||
5 | function too, so extract it. | ||
6 | |||
7 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
8 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
9 | Message-ID: <20250311132616.1049687-9-stefanha@redhat.com> | ||
10 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
11 | --- | ||
12 | hw/block/virtio-blk.c | 27 +++++++++++++++++++++------ | ||
13 | 1 file changed, 21 insertions(+), 6 deletions(-) | ||
14 | |||
15 | diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c | ||
16 | index XXXXXXX..XXXXXXX 100644 | ||
17 | --- a/hw/block/virtio-blk.c | ||
18 | +++ b/hw/block/virtio-blk.c | ||
19 | @@ -XXX,XX +XXX,XX @@ validate_iothread_vq_mapping_list(IOThreadVirtQueueMappingList *list, | ||
20 | * Fill in the AioContext for each virtqueue in the @vq_aio_context array given | ||
21 | * the iothread-vq-mapping parameter in @iothread_vq_mapping_list. | ||
22 | * | ||
23 | + * cleanup_iothread_vq_mapping() must be called to free IOThread object | ||
24 | + * references after this function returns success. | ||
25 | + * | ||
26 | * Returns: %true on success, %false on failure. | ||
27 | **/ | ||
28 | static bool apply_iothread_vq_mapping( | ||
29 | @@ -XXX,XX +XXX,XX @@ static bool apply_iothread_vq_mapping( | ||
30 | return true; | ||
31 | } | ||
32 | |||
33 | +/** | ||
34 | + * cleanup_iothread_vq_mapping: | ||
35 | + * @list: The mapping of virtqueues to IOThreads. | ||
36 | + * | ||
37 | + * Release IOThread object references that were acquired by | ||
38 | + * apply_iothread_vq_mapping(). | ||
39 | + */ | ||
40 | +static void cleanup_iothread_vq_mapping(IOThreadVirtQueueMappingList *list) | ||
41 | +{ | ||
42 | + IOThreadVirtQueueMappingList *node; | ||
43 | + | ||
44 | + for (node = list; node; node = node->next) { | ||
45 | + IOThread *iothread = iothread_by_id(node->value->iothread); | ||
46 | + object_unref(OBJECT(iothread)); | ||
47 | + } | ||
48 | +} | ||
49 | + | ||
50 | /* Context: BQL held */ | ||
51 | static bool virtio_blk_vq_aio_context_init(VirtIOBlock *s, Error **errp) | ||
52 | { | ||
53 | @@ -XXX,XX +XXX,XX @@ static void virtio_blk_vq_aio_context_cleanup(VirtIOBlock *s) | ||
54 | assert(!s->ioeventfd_started); | ||
55 | |||
56 | if (conf->iothread_vq_mapping_list) { | ||
57 | - IOThreadVirtQueueMappingList *node; | ||
58 | - | ||
59 | - for (node = conf->iothread_vq_mapping_list; node; node = node->next) { | ||
60 | - IOThread *iothread = iothread_by_id(node->value->iothread); | ||
61 | - object_unref(OBJECT(iothread)); | ||
62 | - } | ||
63 | + cleanup_iothread_vq_mapping(conf->iothread_vq_mapping_list); | ||
64 | } | ||
65 | |||
66 | if (conf->iothread) { | ||
67 | -- | ||
68 | 2.48.1 | diff view generated by jsdifflib |
1 | From: Ari Sundholm <ari@tuxera.com> | 1 | From: Stefan Hajnoczi <stefanha@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | This allows using the two constants outside of block.c, which will | 3 | Use noun_verb() function naming instead of verb_noun() because the |
4 | happen in a subsequent patch. | 4 | former is the most common naming style for APIs. The next commit will |
5 | move these functions into a header file so that virtio-scsi can call | ||
6 | them. | ||
5 | 7 | ||
6 | Signed-off-by: Ari Sundholm <ari@tuxera.com> | 8 | Shorten iothread_vq_mapping_apply()'s iothread_vq_mapping_list argument |
9 | to just "list" like in the other functions. | ||
10 | |||
11 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
12 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> | ||
13 | Message-ID: <20250311132616.1049687-10-stefanha@redhat.com> | ||
7 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | 14 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
8 | --- | 15 | --- |
9 | include/block/block.h | 7 +++++++ | 16 | hw/block/virtio-blk.c | 33 ++++++++++++++++----------------- |
10 | block.c | 6 ------ | 17 | 1 file changed, 16 insertions(+), 17 deletions(-) |
11 | 2 files changed, 7 insertions(+), 6 deletions(-) | ||
12 | 18 | ||
13 | diff --git a/include/block/block.h b/include/block/block.h | 19 | diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c |
14 | index XXXXXXX..XXXXXXX 100644 | 20 | index XXXXXXX..XXXXXXX 100644 |
15 | --- a/include/block/block.h | 21 | --- a/hw/block/virtio-blk.c |
16 | +++ b/include/block/block.h | 22 | +++ b/hw/block/virtio-blk.c |
17 | @@ -XXX,XX +XXX,XX @@ enum { | 23 | @@ -XXX,XX +XXX,XX @@ static const BlockDevOps virtio_block_ops = { |
18 | BLK_PERM_GRAPH_MOD = 0x10, | ||
19 | |||
20 | BLK_PERM_ALL = 0x1f, | ||
21 | + | ||
22 | + DEFAULT_PERM_PASSTHROUGH = BLK_PERM_CONSISTENT_READ | ||
23 | + | BLK_PERM_WRITE | ||
24 | + | BLK_PERM_WRITE_UNCHANGED | ||
25 | + | BLK_PERM_RESIZE, | ||
26 | + | ||
27 | + DEFAULT_PERM_UNCHANGED = BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH, | ||
28 | }; | 24 | }; |
29 | 25 | ||
30 | char *bdrv_perm_names(uint64_t perm); | 26 | static bool |
31 | diff --git a/block.c b/block.c | 27 | -validate_iothread_vq_mapping_list(IOThreadVirtQueueMappingList *list, |
32 | index XXXXXXX..XXXXXXX 100644 | 28 | - uint16_t num_queues, Error **errp) |
33 | --- a/block.c | 29 | +iothread_vq_mapping_validate(IOThreadVirtQueueMappingList *list, uint16_t |
34 | +++ b/block.c | 30 | + num_queues, Error **errp) |
35 | @@ -XXX,XX +XXX,XX @@ int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared, | 31 | { |
36 | return 0; | 32 | g_autofree unsigned long *vqs = bitmap_new(num_queues); |
33 | g_autoptr(GHashTable) iothreads = | ||
34 | @@ -XXX,XX +XXX,XX @@ validate_iothread_vq_mapping_list(IOThreadVirtQueueMappingList *list, | ||
37 | } | 35 | } |
38 | 36 | ||
39 | -#define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \ | 37 | /** |
40 | - | BLK_PERM_WRITE \ | 38 | - * apply_iothread_vq_mapping: |
41 | - | BLK_PERM_WRITE_UNCHANGED \ | 39 | - * @iothread_vq_mapping_list: The mapping of virtqueues to IOThreads. |
42 | - | BLK_PERM_RESIZE) | 40 | + * iothread_vq_mapping_apply: |
43 | -#define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH) | 41 | + * @list: The mapping of virtqueues to IOThreads. |
44 | - | 42 | * @vq_aio_context: The array of AioContext pointers to fill in. |
45 | void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c, | 43 | * @num_queues: The length of @vq_aio_context. |
46 | const BdrvChildRole *role, | 44 | * @errp: If an error occurs, a pointer to the area to store the error. |
47 | BlockReopenQueue *reopen_queue, | 45 | * |
46 | * Fill in the AioContext for each virtqueue in the @vq_aio_context array given | ||
47 | - * the iothread-vq-mapping parameter in @iothread_vq_mapping_list. | ||
48 | + * the iothread-vq-mapping parameter in @list. | ||
49 | * | ||
50 | - * cleanup_iothread_vq_mapping() must be called to free IOThread object | ||
51 | + * iothread_vq_mapping_cleanup() must be called to free IOThread object | ||
52 | * references after this function returns success. | ||
53 | * | ||
54 | * Returns: %true on success, %false on failure. | ||
55 | **/ | ||
56 | -static bool apply_iothread_vq_mapping( | ||
57 | - IOThreadVirtQueueMappingList *iothread_vq_mapping_list, | ||
58 | +static bool iothread_vq_mapping_apply( | ||
59 | + IOThreadVirtQueueMappingList *list, | ||
60 | AioContext **vq_aio_context, | ||
61 | uint16_t num_queues, | ||
62 | Error **errp) | ||
63 | @@ -XXX,XX +XXX,XX @@ static bool apply_iothread_vq_mapping( | ||
64 | size_t num_iothreads = 0; | ||
65 | size_t cur_iothread = 0; | ||
66 | |||
67 | - if (!validate_iothread_vq_mapping_list(iothread_vq_mapping_list, | ||
68 | - num_queues, errp)) { | ||
69 | + if (!iothread_vq_mapping_validate(list, num_queues, errp)) { | ||
70 | return false; | ||
71 | } | ||
72 | |||
73 | - for (node = iothread_vq_mapping_list; node; node = node->next) { | ||
74 | + for (node = list; node; node = node->next) { | ||
75 | num_iothreads++; | ||
76 | } | ||
77 | |||
78 | - for (node = iothread_vq_mapping_list; node; node = node->next) { | ||
79 | + for (node = list; node; node = node->next) { | ||
80 | IOThread *iothread = iothread_by_id(node->value->iothread); | ||
81 | AioContext *ctx = iothread_get_aio_context(iothread); | ||
82 | |||
83 | @@ -XXX,XX +XXX,XX @@ static bool apply_iothread_vq_mapping( | ||
84 | } | ||
85 | |||
86 | /** | ||
87 | - * cleanup_iothread_vq_mapping: | ||
88 | + * iothread_vq_mapping_cleanup: | ||
89 | * @list: The mapping of virtqueues to IOThreads. | ||
90 | * | ||
91 | * Release IOThread object references that were acquired by | ||
92 | - * apply_iothread_vq_mapping(). | ||
93 | + * iothread_vq_mapping_apply(). | ||
94 | */ | ||
95 | -static void cleanup_iothread_vq_mapping(IOThreadVirtQueueMappingList *list) | ||
96 | +static void iothread_vq_mapping_cleanup(IOThreadVirtQueueMappingList *list) | ||
97 | { | ||
98 | IOThreadVirtQueueMappingList *node; | ||
99 | |||
100 | @@ -XXX,XX +XXX,XX @@ static bool virtio_blk_vq_aio_context_init(VirtIOBlock *s, Error **errp) | ||
101 | s->vq_aio_context = g_new(AioContext *, conf->num_queues); | ||
102 | |||
103 | if (conf->iothread_vq_mapping_list) { | ||
104 | - if (!apply_iothread_vq_mapping(conf->iothread_vq_mapping_list, | ||
105 | + if (!iothread_vq_mapping_apply(conf->iothread_vq_mapping_list, | ||
106 | s->vq_aio_context, | ||
107 | conf->num_queues, | ||
108 | errp)) { | ||
109 | @@ -XXX,XX +XXX,XX @@ static void virtio_blk_vq_aio_context_cleanup(VirtIOBlock *s) | ||
110 | assert(!s->ioeventfd_started); | ||
111 | |||
112 | if (conf->iothread_vq_mapping_list) { | ||
113 | - cleanup_iothread_vq_mapping(conf->iothread_vq_mapping_list); | ||
114 | + iothread_vq_mapping_cleanup(conf->iothread_vq_mapping_list); | ||
115 | } | ||
116 | |||
117 | if (conf->iothread) { | ||
48 | -- | 118 | -- |
49 | 2.13.6 | 119 | 2.48.1 |
50 | |||
51 | diff view generated by jsdifflib |
1 | From: Aapo Vienamo <aapo@tuxera.com> | 1 | From: Stefan Hajnoczi <stefanha@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | Implements a block device write logging system, similar to Linux kernel | 3 | The code that builds an array of AioContext pointers indexed by the |
4 | device mapper dm-log-writes. The write operations that are performed | 4 | virtqueue is not specific to virtio-blk. virtio-scsi will need to do the |
5 | on a block device are logged to a file or another block device. The | 5 | same thing, so extract the functions. |
6 | write log format is identical to the dm-log-writes format. Currently, | ||
7 | log markers are not supported. | ||
8 | 6 | ||
9 | This functionality can be used for crash consistency and fs consistency | 7 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> |
10 | testing. By implementing it in qemu, tests utilizing write logs can be | 8 | Reviewed-by: Kevin Wolf <kwolf@redhat.com> |
11 | be used to test non-Linux drivers and older kernels. | 9 | Message-ID: <20250311132616.1049687-11-stefanha@redhat.com> |
12 | |||
13 | The driver accepts an optional parameter to set the sector size used | ||
14 | for logging. This makes the driver require all requests to be aligned | ||
15 | to this sector size and also makes offsets and sizes of writes in the | ||
16 | log metadata to be expressed in terms of this value (the log format has | ||
17 | a granularity of one sector for offsets and sizes). This allows | ||
18 | accurate logging of writes to guest block devices that have unusual | ||
19 | sector sizes. | ||
20 | |||
21 | The implementation is based on the blkverify and blkdebug block | ||
22 | drivers. | ||
23 | |||
24 | Signed-off-by: Aapo Vienamo <aapo@tuxera.com> | ||
25 | Signed-off-by: Ari Sundholm <ari@tuxera.com> | ||
26 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | 10 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
27 | --- | 11 | --- |
28 | qapi/block-core.json | 33 ++++- | 12 | include/hw/virtio/iothread-vq-mapping.h | 45 ++++++++ |
29 | block/blklogwrites.c | 392 +++++++++++++++++++++++++++++++++++++++++++++++++++ | 13 | hw/block/virtio-blk.c | 142 +----------------------- |
30 | MAINTAINERS | 6 + | 14 | hw/virtio/iothread-vq-mapping.c | 131 ++++++++++++++++++++++ |
31 | block/Makefile.objs | 1 + | 15 | hw/virtio/meson.build | 1 + |
32 | 4 files changed, 426 insertions(+), 6 deletions(-) | 16 | 4 files changed, 178 insertions(+), 141 deletions(-) |
33 | create mode 100644 block/blklogwrites.c | 17 | create mode 100644 include/hw/virtio/iothread-vq-mapping.h |
18 | create mode 100644 hw/virtio/iothread-vq-mapping.c | ||
34 | 19 | ||
35 | diff --git a/qapi/block-core.json b/qapi/block-core.json | 20 | diff --git a/include/hw/virtio/iothread-vq-mapping.h b/include/hw/virtio/iothread-vq-mapping.h |
36 | index XXXXXXX..XXXXXXX 100644 | ||
37 | --- a/qapi/block-core.json | ||
38 | +++ b/qapi/block-core.json | ||
39 | @@ -XXX,XX +XXX,XX @@ | ||
40 | # @throttle: Since 2.11 | ||
41 | # @nvme: Since 2.12 | ||
42 | # @copy-on-read: Since 3.0 | ||
43 | +# @blklogwrites: Since 3.0 | ||
44 | # | ||
45 | # Since: 2.9 | ||
46 | ## | ||
47 | { 'enum': 'BlockdevDriver', | ||
48 | - 'data': [ 'blkdebug', 'blkverify', 'bochs', 'cloop', 'copy-on-read', | ||
49 | - 'dmg', 'file', 'ftp', 'ftps', 'gluster', 'host_cdrom', | ||
50 | - 'host_device', 'http', 'https', 'iscsi', 'luks', 'nbd', 'nfs', | ||
51 | - 'null-aio', 'null-co', 'nvme', 'parallels', 'qcow', 'qcow2', 'qed', | ||
52 | - 'quorum', 'raw', 'rbd', 'replication', 'sheepdog', 'ssh', | ||
53 | - 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] } | ||
54 | + 'data': [ 'blkdebug', 'blklogwrites', 'blkverify', 'bochs', 'cloop', | ||
55 | + 'copy-on-read', 'dmg', 'file', 'ftp', 'ftps', 'gluster', | ||
56 | + 'host_cdrom', 'host_device', 'http', 'https', 'iscsi', 'luks', | ||
57 | + 'nbd', 'nfs', 'null-aio', 'null-co', 'nvme', 'parallels', 'qcow', | ||
58 | + 'qcow2', 'qed', 'quorum', 'raw', 'rbd', 'replication', 'sheepdog', | ||
59 | + 'ssh', 'throttle', 'vdi', 'vhdx', 'vmdk', 'vpc', 'vvfat', 'vxhs' ] } | ||
60 | |||
61 | ## | ||
62 | # @BlockdevOptionsFile: | ||
63 | @@ -XXX,XX +XXX,XX @@ | ||
64 | '*set-state': ['BlkdebugSetStateOptions'] } } | ||
65 | |||
66 | ## | ||
67 | +# @BlockdevOptionsBlklogwrites: | ||
68 | +# | ||
69 | +# Driver specific block device options for blklogwrites. | ||
70 | +# | ||
71 | +# @file: block device | ||
72 | +# | ||
73 | +# @log: block device used to log writes to @file | ||
74 | +# | ||
75 | +# @log-sector-size: sector size used in logging writes to @file, determines | ||
76 | +# granularity of offsets and sizes of writes (default: 512) | ||
77 | +# | ||
78 | +# Since: 3.0 | ||
79 | +## | ||
80 | +{ 'struct': 'BlockdevOptionsBlklogwrites', | ||
81 | + 'data': { 'file': 'BlockdevRef', | ||
82 | + 'log': 'BlockdevRef', | ||
83 | + '*log-sector-size': 'uint32' } } | ||
84 | + | ||
85 | +## | ||
86 | # @BlockdevOptionsBlkverify: | ||
87 | # | ||
88 | # Driver specific block device options for blkverify. | ||
89 | @@ -XXX,XX +XXX,XX @@ | ||
90 | 'discriminator': 'driver', | ||
91 | 'data': { | ||
92 | 'blkdebug': 'BlockdevOptionsBlkdebug', | ||
93 | + 'blklogwrites':'BlockdevOptionsBlklogwrites', | ||
94 | 'blkverify': 'BlockdevOptionsBlkverify', | ||
95 | 'bochs': 'BlockdevOptionsGenericFormat', | ||
96 | 'cloop': 'BlockdevOptionsGenericFormat', | ||
97 | diff --git a/block/blklogwrites.c b/block/blklogwrites.c | ||
98 | new file mode 100644 | 21 | new file mode 100644 |
99 | index XXXXXXX..XXXXXXX | 22 | index XXXXXXX..XXXXXXX |
100 | --- /dev/null | 23 | --- /dev/null |
101 | +++ b/block/blklogwrites.c | 24 | +++ b/include/hw/virtio/iothread-vq-mapping.h |
102 | @@ -XXX,XX +XXX,XX @@ | 25 | @@ -XXX,XX +XXX,XX @@ |
103 | +/* | 26 | +/* |
104 | + * Write logging blk driver based on blkverify and blkdebug. | 27 | + * IOThread Virtqueue Mapping |
105 | + * | 28 | + * |
106 | + * Copyright (c) 2017 Tuomas Tynkkynen <tuomas@tuxera.com> | 29 | + * Copyright Red Hat, Inc |
107 | + * Copyright (c) 2018 Aapo Vienamo <aapo@tuxera.com> | 30 | + * |
108 | + * Copyright (c) 2018 Ari Sundholm <ari@tuxera.com> | 31 | + * SPDX-License-Identifier: GPL-2.0-only |
109 | + * | ||
110 | + * This work is licensed under the terms of the GNU GPL, version 2 or later. | ||
111 | + * See the COPYING file in the top-level directory. | ||
112 | + */ | 32 | + */ |
113 | + | 33 | + |
34 | +#ifndef HW_VIRTIO_IOTHREAD_VQ_MAPPING_H | ||
35 | +#define HW_VIRTIO_IOTHREAD_VQ_MAPPING_H | ||
36 | + | ||
37 | +#include "qapi/error.h" | ||
38 | +#include "qapi/qapi-types-virtio.h" | ||
39 | + | ||
40 | +/** | ||
41 | + * iothread_vq_mapping_apply: | ||
42 | + * @list: The mapping of virtqueues to IOThreads. | ||
43 | + * @vq_aio_context: The array of AioContext pointers to fill in. | ||
44 | + * @num_queues: The length of @vq_aio_context. | ||
45 | + * @errp: If an error occurs, a pointer to the area to store the error. | ||
46 | + * | ||
47 | + * Fill in the AioContext for each virtqueue in the @vq_aio_context array given | ||
48 | + * the iothread-vq-mapping parameter in @list. | ||
49 | + * | ||
50 | + * iothread_vq_mapping_cleanup() must be called to free IOThread object | ||
51 | + * references after this function returns success. | ||
52 | + * | ||
53 | + * Returns: %true on success, %false on failure. | ||
54 | + **/ | ||
55 | +bool iothread_vq_mapping_apply( | ||
56 | + IOThreadVirtQueueMappingList *list, | ||
57 | + AioContext **vq_aio_context, | ||
58 | + uint16_t num_queues, | ||
59 | + Error **errp); | ||
60 | + | ||
61 | +/** | ||
62 | + * iothread_vq_mapping_cleanup: | ||
63 | + * @list: The mapping of virtqueues to IOThreads. | ||
64 | + * | ||
65 | + * Release IOThread object references that were acquired by | ||
66 | + * iothread_vq_mapping_apply(). | ||
67 | + */ | ||
68 | +void iothread_vq_mapping_cleanup(IOThreadVirtQueueMappingList *list); | ||
69 | + | ||
70 | +#endif /* HW_VIRTIO_IOTHREAD_VQ_MAPPING_H */ | ||
71 | diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c | ||
72 | index XXXXXXX..XXXXXXX 100644 | ||
73 | --- a/hw/block/virtio-blk.c | ||
74 | +++ b/hw/block/virtio-blk.c | ||
75 | @@ -XXX,XX +XXX,XX @@ | ||
76 | #endif | ||
77 | #include "hw/virtio/virtio-bus.h" | ||
78 | #include "migration/qemu-file-types.h" | ||
79 | +#include "hw/virtio/iothread-vq-mapping.h" | ||
80 | #include "hw/virtio/virtio-access.h" | ||
81 | #include "hw/virtio/virtio-blk-common.h" | ||
82 | #include "qemu/coroutine.h" | ||
83 | @@ -XXX,XX +XXX,XX @@ static const BlockDevOps virtio_block_ops = { | ||
84 | .drained_end = virtio_blk_drained_end, | ||
85 | }; | ||
86 | |||
87 | -static bool | ||
88 | -iothread_vq_mapping_validate(IOThreadVirtQueueMappingList *list, uint16_t | ||
89 | - num_queues, Error **errp) | ||
90 | -{ | ||
91 | - g_autofree unsigned long *vqs = bitmap_new(num_queues); | ||
92 | - g_autoptr(GHashTable) iothreads = | ||
93 | - g_hash_table_new(g_str_hash, g_str_equal); | ||
94 | - | ||
95 | - for (IOThreadVirtQueueMappingList *node = list; node; node = node->next) { | ||
96 | - const char *name = node->value->iothread; | ||
97 | - uint16List *vq; | ||
98 | - | ||
99 | - if (!iothread_by_id(name)) { | ||
100 | - error_setg(errp, "IOThread \"%s\" object does not exist", name); | ||
101 | - return false; | ||
102 | - } | ||
103 | - | ||
104 | - if (!g_hash_table_add(iothreads, (gpointer)name)) { | ||
105 | - error_setg(errp, | ||
106 | - "duplicate IOThread name \"%s\" in iothread-vq-mapping", | ||
107 | - name); | ||
108 | - return false; | ||
109 | - } | ||
110 | - | ||
111 | - if (node != list) { | ||
112 | - if (!!node->value->vqs != !!list->value->vqs) { | ||
113 | - error_setg(errp, "either all items in iothread-vq-mapping " | ||
114 | - "must have vqs or none of them must have it"); | ||
115 | - return false; | ||
116 | - } | ||
117 | - } | ||
118 | - | ||
119 | - for (vq = node->value->vqs; vq; vq = vq->next) { | ||
120 | - if (vq->value >= num_queues) { | ||
121 | - error_setg(errp, "vq index %u for IOThread \"%s\" must be " | ||
122 | - "less than num_queues %u in iothread-vq-mapping", | ||
123 | - vq->value, name, num_queues); | ||
124 | - return false; | ||
125 | - } | ||
126 | - | ||
127 | - if (test_and_set_bit(vq->value, vqs)) { | ||
128 | - error_setg(errp, "cannot assign vq %u to IOThread \"%s\" " | ||
129 | - "because it is already assigned", vq->value, name); | ||
130 | - return false; | ||
131 | - } | ||
132 | - } | ||
133 | - } | ||
134 | - | ||
135 | - if (list->value->vqs) { | ||
136 | - for (uint16_t i = 0; i < num_queues; i++) { | ||
137 | - if (!test_bit(i, vqs)) { | ||
138 | - error_setg(errp, | ||
139 | - "missing vq %u IOThread assignment in iothread-vq-mapping", | ||
140 | - i); | ||
141 | - return false; | ||
142 | - } | ||
143 | - } | ||
144 | - } | ||
145 | - | ||
146 | - return true; | ||
147 | -} | ||
148 | - | ||
149 | -/** | ||
150 | - * iothread_vq_mapping_apply: | ||
151 | - * @list: The mapping of virtqueues to IOThreads. | ||
152 | - * @vq_aio_context: The array of AioContext pointers to fill in. | ||
153 | - * @num_queues: The length of @vq_aio_context. | ||
154 | - * @errp: If an error occurs, a pointer to the area to store the error. | ||
155 | - * | ||
156 | - * Fill in the AioContext for each virtqueue in the @vq_aio_context array given | ||
157 | - * the iothread-vq-mapping parameter in @list. | ||
158 | - * | ||
159 | - * iothread_vq_mapping_cleanup() must be called to free IOThread object | ||
160 | - * references after this function returns success. | ||
161 | - * | ||
162 | - * Returns: %true on success, %false on failure. | ||
163 | - **/ | ||
164 | -static bool iothread_vq_mapping_apply( | ||
165 | - IOThreadVirtQueueMappingList *list, | ||
166 | - AioContext **vq_aio_context, | ||
167 | - uint16_t num_queues, | ||
168 | - Error **errp) | ||
169 | -{ | ||
170 | - IOThreadVirtQueueMappingList *node; | ||
171 | - size_t num_iothreads = 0; | ||
172 | - size_t cur_iothread = 0; | ||
173 | - | ||
174 | - if (!iothread_vq_mapping_validate(list, num_queues, errp)) { | ||
175 | - return false; | ||
176 | - } | ||
177 | - | ||
178 | - for (node = list; node; node = node->next) { | ||
179 | - num_iothreads++; | ||
180 | - } | ||
181 | - | ||
182 | - for (node = list; node; node = node->next) { | ||
183 | - IOThread *iothread = iothread_by_id(node->value->iothread); | ||
184 | - AioContext *ctx = iothread_get_aio_context(iothread); | ||
185 | - | ||
186 | - /* Released in virtio_blk_vq_aio_context_cleanup() */ | ||
187 | - object_ref(OBJECT(iothread)); | ||
188 | - | ||
189 | - if (node->value->vqs) { | ||
190 | - uint16List *vq; | ||
191 | - | ||
192 | - /* Explicit vq:IOThread assignment */ | ||
193 | - for (vq = node->value->vqs; vq; vq = vq->next) { | ||
194 | - assert(vq->value < num_queues); | ||
195 | - vq_aio_context[vq->value] = ctx; | ||
196 | - } | ||
197 | - } else { | ||
198 | - /* Round-robin vq:IOThread assignment */ | ||
199 | - for (unsigned i = cur_iothread; i < num_queues; | ||
200 | - i += num_iothreads) { | ||
201 | - vq_aio_context[i] = ctx; | ||
202 | - } | ||
203 | - } | ||
204 | - | ||
205 | - cur_iothread++; | ||
206 | - } | ||
207 | - | ||
208 | - return true; | ||
209 | -} | ||
210 | - | ||
211 | -/** | ||
212 | - * iothread_vq_mapping_cleanup: | ||
213 | - * @list: The mapping of virtqueues to IOThreads. | ||
214 | - * | ||
215 | - * Release IOThread object references that were acquired by | ||
216 | - * iothread_vq_mapping_apply(). | ||
217 | - */ | ||
218 | -static void iothread_vq_mapping_cleanup(IOThreadVirtQueueMappingList *list) | ||
219 | -{ | ||
220 | - IOThreadVirtQueueMappingList *node; | ||
221 | - | ||
222 | - for (node = list; node; node = node->next) { | ||
223 | - IOThread *iothread = iothread_by_id(node->value->iothread); | ||
224 | - object_unref(OBJECT(iothread)); | ||
225 | - } | ||
226 | -} | ||
227 | - | ||
228 | /* Context: BQL held */ | ||
229 | static bool virtio_blk_vq_aio_context_init(VirtIOBlock *s, Error **errp) | ||
230 | { | ||
231 | diff --git a/hw/virtio/iothread-vq-mapping.c b/hw/virtio/iothread-vq-mapping.c | ||
232 | new file mode 100644 | ||
233 | index XXXXXXX..XXXXXXX | ||
234 | --- /dev/null | ||
235 | +++ b/hw/virtio/iothread-vq-mapping.c | ||
236 | @@ -XXX,XX +XXX,XX @@ | ||
237 | +/* | ||
238 | + * IOThread Virtqueue Mapping | ||
239 | + * | ||
240 | + * Copyright Red Hat, Inc | ||
241 | + * | ||
242 | + * SPDX-License-Identifier: GPL-2.0-only | ||
243 | + */ | ||
244 | + | ||
114 | +#include "qemu/osdep.h" | 245 | +#include "qemu/osdep.h" |
115 | +#include "qapi/error.h" | 246 | +#include "system/iothread.h" |
116 | +#include "qemu/sockets.h" /* for EINPROGRESS on Windows */ | 247 | +#include "hw/virtio/iothread-vq-mapping.h" |
117 | +#include "block/block_int.h" | 248 | + |
118 | +#include "qapi/qmp/qdict.h" | 249 | +static bool |
119 | +#include "qapi/qmp/qstring.h" | 250 | +iothread_vq_mapping_validate(IOThreadVirtQueueMappingList *list, uint16_t |
120 | +#include "qemu/cutils.h" | 251 | + num_queues, Error **errp) |
121 | +#include "qemu/option.h" | ||
122 | + | ||
123 | +/* Disk format stuff - taken from Linux drivers/md/dm-log-writes.c */ | ||
124 | + | ||
125 | +#define LOG_FLUSH_FLAG (1 << 0) | ||
126 | +#define LOG_FUA_FLAG (1 << 1) | ||
127 | +#define LOG_DISCARD_FLAG (1 << 2) | ||
128 | +#define LOG_MARK_FLAG (1 << 3) | ||
129 | + | ||
130 | +#define WRITE_LOG_VERSION 1ULL | ||
131 | +#define WRITE_LOG_MAGIC 0x6a736677736872ULL | ||
132 | + | ||
133 | +/* All fields are little-endian. */ | ||
134 | +struct log_write_super { | ||
135 | + uint64_t magic; | ||
136 | + uint64_t version; | ||
137 | + uint64_t nr_entries; | ||
138 | + uint32_t sectorsize; | ||
139 | +} QEMU_PACKED; | ||
140 | + | ||
141 | +struct log_write_entry { | ||
142 | + uint64_t sector; | ||
143 | + uint64_t nr_sectors; | ||
144 | + uint64_t flags; | ||
145 | + uint64_t data_len; | ||
146 | +} QEMU_PACKED; | ||
147 | + | ||
148 | +/* End of disk format structures. */ | ||
149 | + | ||
150 | +typedef struct { | ||
151 | + BdrvChild *log_file; | ||
152 | + uint32_t sectorsize; | ||
153 | + uint32_t sectorbits; | ||
154 | + uint64_t cur_log_sector; | ||
155 | + uint64_t nr_entries; | ||
156 | +} BDRVBlkLogWritesState; | ||
157 | + | ||
158 | +static inline uint32_t blk_log_writes_log2(uint32_t value) | ||
159 | +{ | 252 | +{ |
160 | + assert(value > 0); | 253 | + g_autofree unsigned long *vqs = bitmap_new(num_queues); |
161 | + return 31 - clz32(value); | 254 | + g_autoptr(GHashTable) iothreads = |
255 | + g_hash_table_new(g_str_hash, g_str_equal); | ||
256 | + | ||
257 | + for (IOThreadVirtQueueMappingList *node = list; node; node = node->next) { | ||
258 | + const char *name = node->value->iothread; | ||
259 | + uint16List *vq; | ||
260 | + | ||
261 | + if (!iothread_by_id(name)) { | ||
262 | + error_setg(errp, "IOThread \"%s\" object does not exist", name); | ||
263 | + return false; | ||
264 | + } | ||
265 | + | ||
266 | + if (!g_hash_table_add(iothreads, (gpointer)name)) { | ||
267 | + error_setg(errp, | ||
268 | + "duplicate IOThread name \"%s\" in iothread-vq-mapping", | ||
269 | + name); | ||
270 | + return false; | ||
271 | + } | ||
272 | + | ||
273 | + if (node != list) { | ||
274 | + if (!!node->value->vqs != !!list->value->vqs) { | ||
275 | + error_setg(errp, "either all items in iothread-vq-mapping " | ||
276 | + "must have vqs or none of them must have it"); | ||
277 | + return false; | ||
278 | + } | ||
279 | + } | ||
280 | + | ||
281 | + for (vq = node->value->vqs; vq; vq = vq->next) { | ||
282 | + if (vq->value >= num_queues) { | ||
283 | + error_setg(errp, "vq index %u for IOThread \"%s\" must be " | ||
284 | + "less than num_queues %u in iothread-vq-mapping", | ||
285 | + vq->value, name, num_queues); | ||
286 | + return false; | ||
287 | + } | ||
288 | + | ||
289 | + if (test_and_set_bit(vq->value, vqs)) { | ||
290 | + error_setg(errp, "cannot assign vq %u to IOThread \"%s\" " | ||
291 | + "because it is already assigned", vq->value, name); | ||
292 | + return false; | ||
293 | + } | ||
294 | + } | ||
295 | + } | ||
296 | + | ||
297 | + if (list->value->vqs) { | ||
298 | + for (uint16_t i = 0; i < num_queues; i++) { | ||
299 | + if (!test_bit(i, vqs)) { | ||
300 | + error_setg(errp, | ||
301 | + "missing vq %u IOThread assignment in iothread-vq-mapping", | ||
302 | + i); | ||
303 | + return false; | ||
304 | + } | ||
305 | + } | ||
306 | + } | ||
307 | + | ||
308 | + return true; | ||
162 | +} | 309 | +} |
163 | + | 310 | + |
164 | +static int blk_log_writes_open(BlockDriverState *bs, QDict *options, int flags, | 311 | +bool iothread_vq_mapping_apply( |
165 | + Error **errp) | 312 | + IOThreadVirtQueueMappingList *list, |
313 | + AioContext **vq_aio_context, | ||
314 | + uint16_t num_queues, | ||
315 | + Error **errp) | ||
166 | +{ | 316 | +{ |
167 | + BDRVBlkLogWritesState *s = bs->opaque; | 317 | + IOThreadVirtQueueMappingList *node; |
168 | + Error *local_err = NULL; | 318 | + size_t num_iothreads = 0; |
169 | + int ret; | 319 | + size_t cur_iothread = 0; |
170 | + int64_t log_sector_size = BDRV_SECTOR_SIZE; | 320 | + |
171 | + | 321 | + if (!iothread_vq_mapping_validate(list, num_queues, errp)) { |
172 | + /* Open the file */ | 322 | + return false; |
173 | + bs->file = bdrv_open_child(NULL, options, "file", bs, &child_file, false, | 323 | + } |
174 | + &local_err); | 324 | + |
175 | + if (local_err) { | 325 | + for (node = list; node; node = node->next) { |
176 | + ret = -EINVAL; | 326 | + num_iothreads++; |
177 | + error_propagate(errp, local_err); | 327 | + } |
178 | + goto fail; | 328 | + |
179 | + } | 329 | + for (node = list; node; node = node->next) { |
180 | + | 330 | + IOThread *iothread = iothread_by_id(node->value->iothread); |
181 | + if (qdict_haskey(options, "log-sector-size")) { | 331 | + AioContext *ctx = iothread_get_aio_context(iothread); |
182 | + log_sector_size = qdict_get_int(options, "log-sector-size"); | 332 | + |
183 | + qdict_del(options, "log-sector-size"); | 333 | + /* Released in virtio_blk_vq_aio_context_cleanup() */ |
184 | + } | 334 | + object_ref(OBJECT(iothread)); |
185 | + | 335 | + |
186 | + if (log_sector_size < 0 || log_sector_size >= (1ull << 32) || | 336 | + if (node->value->vqs) { |
187 | + !is_power_of_2(log_sector_size)) | 337 | + uint16List *vq; |
188 | + { | 338 | + |
189 | + ret = -EINVAL; | 339 | + /* Explicit vq:IOThread assignment */ |
190 | + error_setg(errp, "Invalid log sector size %"PRId64, log_sector_size); | 340 | + for (vq = node->value->vqs; vq; vq = vq->next) { |
191 | + goto fail; | 341 | + assert(vq->value < num_queues); |
192 | + } | 342 | + vq_aio_context[vq->value] = ctx; |
193 | + | 343 | + } |
194 | + s->sectorsize = log_sector_size; | 344 | + } else { |
195 | + s->sectorbits = blk_log_writes_log2(log_sector_size); | 345 | + /* Round-robin vq:IOThread assignment */ |
196 | + s->cur_log_sector = 1; | 346 | + for (unsigned i = cur_iothread; i < num_queues; |
197 | + s->nr_entries = 0; | 347 | + i += num_iothreads) { |
198 | + | 348 | + vq_aio_context[i] = ctx; |
199 | + /* Open the log file */ | 349 | + } |
200 | + s->log_file = bdrv_open_child(NULL, options, "log", bs, &child_file, false, | 350 | + } |
201 | + &local_err); | 351 | + |
202 | + if (local_err) { | 352 | + cur_iothread++; |
203 | + ret = -EINVAL; | 353 | + } |
204 | + error_propagate(errp, local_err); | 354 | + |
205 | + goto fail; | 355 | + return true; |
206 | + } | ||
207 | + | ||
208 | + ret = 0; | ||
209 | +fail: | ||
210 | + if (ret < 0) { | ||
211 | + bdrv_unref_child(bs, bs->file); | ||
212 | + bs->file = NULL; | ||
213 | + } | ||
214 | + return ret; | ||
215 | +} | 356 | +} |
216 | + | 357 | + |
217 | +static void blk_log_writes_close(BlockDriverState *bs) | 358 | +void iothread_vq_mapping_cleanup(IOThreadVirtQueueMappingList *list) |
218 | +{ | 359 | +{ |
219 | + BDRVBlkLogWritesState *s = bs->opaque; | 360 | + IOThreadVirtQueueMappingList *node; |
220 | + | 361 | + |
221 | + bdrv_unref_child(bs, s->log_file); | 362 | + for (node = list; node; node = node->next) { |
222 | + s->log_file = NULL; | 363 | + IOThread *iothread = iothread_by_id(node->value->iothread); |
364 | + object_unref(OBJECT(iothread)); | ||
365 | + } | ||
223 | +} | 366 | +} |
224 | + | 367 | + |
225 | +static int64_t blk_log_writes_getlength(BlockDriverState *bs) | 368 | diff --git a/hw/virtio/meson.build b/hw/virtio/meson.build |
226 | +{ | ||
227 | + return bdrv_getlength(bs->file->bs); | ||
228 | +} | ||
229 | + | ||
230 | +static void blk_log_writes_refresh_filename(BlockDriverState *bs, | ||
231 | + QDict *options) | ||
232 | +{ | ||
233 | + BDRVBlkLogWritesState *s = bs->opaque; | ||
234 | + | ||
235 | + /* bs->file->bs has already been refreshed */ | ||
236 | + bdrv_refresh_filename(s->log_file->bs); | ||
237 | + | ||
238 | + if (bs->file->bs->full_open_options | ||
239 | + && s->log_file->bs->full_open_options) | ||
240 | + { | ||
241 | + QDict *opts = qdict_new(); | ||
242 | + qdict_put_str(opts, "driver", "blklogwrites"); | ||
243 | + | ||
244 | + qobject_ref(bs->file->bs->full_open_options); | ||
245 | + qdict_put_obj(opts, "file", QOBJECT(bs->file->bs->full_open_options)); | ||
246 | + qobject_ref(s->log_file->bs->full_open_options); | ||
247 | + qdict_put_obj(opts, "log", | ||
248 | + QOBJECT(s->log_file->bs->full_open_options)); | ||
249 | + | ||
250 | + bs->full_open_options = opts; | ||
251 | + } | ||
252 | +} | ||
253 | + | ||
254 | +static void blk_log_writes_child_perm(BlockDriverState *bs, BdrvChild *c, | ||
255 | + const BdrvChildRole *role, | ||
256 | + BlockReopenQueue *ro_q, | ||
257 | + uint64_t perm, uint64_t shrd, | ||
258 | + uint64_t *nperm, uint64_t *nshrd) | ||
259 | +{ | ||
260 | + if (!c) { | ||
261 | + *nperm = perm & DEFAULT_PERM_PASSTHROUGH; | ||
262 | + *nshrd = (shrd & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED; | ||
263 | + return; | ||
264 | + } | ||
265 | + | ||
266 | + if (!strcmp(c->name, "log")) { | ||
267 | + bdrv_format_default_perms(bs, c, role, ro_q, perm, shrd, nperm, nshrd); | ||
268 | + } else { | ||
269 | + bdrv_filter_default_perms(bs, c, role, ro_q, perm, shrd, nperm, nshrd); | ||
270 | + } | ||
271 | +} | ||
272 | + | ||
273 | +static void blk_log_writes_refresh_limits(BlockDriverState *bs, Error **errp) | ||
274 | +{ | ||
275 | + BDRVBlkLogWritesState *s = bs->opaque; | ||
276 | + bs->bl.request_alignment = s->sectorsize; | ||
277 | +} | ||
278 | + | ||
279 | +static int coroutine_fn | ||
280 | +blk_log_writes_co_preadv(BlockDriverState *bs, uint64_t offset, uint64_t bytes, | ||
281 | + QEMUIOVector *qiov, int flags) | ||
282 | +{ | ||
283 | + return bdrv_co_preadv(bs->file, offset, bytes, qiov, flags); | ||
284 | +} | ||
285 | + | ||
286 | +typedef struct BlkLogWritesFileReq { | ||
287 | + BlockDriverState *bs; | ||
288 | + uint64_t offset; | ||
289 | + uint64_t bytes; | ||
290 | + int file_flags; | ||
291 | + QEMUIOVector *qiov; | ||
292 | + int (*func)(struct BlkLogWritesFileReq *r); | ||
293 | + int file_ret; | ||
294 | +} BlkLogWritesFileReq; | ||
295 | + | ||
296 | +typedef struct { | ||
297 | + BlockDriverState *bs; | ||
298 | + QEMUIOVector *qiov; | ||
299 | + struct log_write_entry entry; | ||
300 | + uint64_t zero_size; | ||
301 | + int log_ret; | ||
302 | +} BlkLogWritesLogReq; | ||
303 | + | ||
304 | +static void coroutine_fn blk_log_writes_co_do_log(BlkLogWritesLogReq *lr) | ||
305 | +{ | ||
306 | + BDRVBlkLogWritesState *s = lr->bs->opaque; | ||
307 | + uint64_t cur_log_offset = s->cur_log_sector << s->sectorbits; | ||
308 | + | ||
309 | + s->nr_entries++; | ||
310 | + s->cur_log_sector += | ||
311 | + ROUND_UP(lr->qiov->size, s->sectorsize) >> s->sectorbits; | ||
312 | + | ||
313 | + lr->log_ret = bdrv_co_pwritev(s->log_file, cur_log_offset, lr->qiov->size, | ||
314 | + lr->qiov, 0); | ||
315 | + | ||
316 | + /* Logging for the "write zeroes" operation */ | ||
317 | + if (lr->log_ret == 0 && lr->zero_size) { | ||
318 | + cur_log_offset = s->cur_log_sector << s->sectorbits; | ||
319 | + s->cur_log_sector += | ||
320 | + ROUND_UP(lr->zero_size, s->sectorsize) >> s->sectorbits; | ||
321 | + | ||
322 | + lr->log_ret = bdrv_co_pwrite_zeroes(s->log_file, cur_log_offset, | ||
323 | + lr->zero_size, 0); | ||
324 | + } | ||
325 | + | ||
326 | + /* Update super block on flush */ | ||
327 | + if (lr->log_ret == 0 && lr->entry.flags & LOG_FLUSH_FLAG) { | ||
328 | + struct log_write_super super = { | ||
329 | + .magic = cpu_to_le64(WRITE_LOG_MAGIC), | ||
330 | + .version = cpu_to_le64(WRITE_LOG_VERSION), | ||
331 | + .nr_entries = cpu_to_le64(s->nr_entries), | ||
332 | + .sectorsize = cpu_to_le32(s->sectorsize), | ||
333 | + }; | ||
334 | + void *zeroes = g_malloc0(s->sectorsize - sizeof(super)); | ||
335 | + QEMUIOVector qiov; | ||
336 | + | ||
337 | + qemu_iovec_init(&qiov, 2); | ||
338 | + qemu_iovec_add(&qiov, &super, sizeof(super)); | ||
339 | + qemu_iovec_add(&qiov, zeroes, s->sectorsize - sizeof(super)); | ||
340 | + | ||
341 | + lr->log_ret = | ||
342 | + bdrv_co_pwritev(s->log_file, 0, s->sectorsize, &qiov, 0); | ||
343 | + if (lr->log_ret == 0) { | ||
344 | + lr->log_ret = bdrv_co_flush(s->log_file->bs); | ||
345 | + } | ||
346 | + qemu_iovec_destroy(&qiov); | ||
347 | + g_free(zeroes); | ||
348 | + } | ||
349 | +} | ||
350 | + | ||
351 | +static void coroutine_fn blk_log_writes_co_do_file(BlkLogWritesFileReq *fr) | ||
352 | +{ | ||
353 | + fr->file_ret = fr->func(fr); | ||
354 | +} | ||
355 | + | ||
356 | +static int coroutine_fn | ||
357 | +blk_log_writes_co_log(BlockDriverState *bs, uint64_t offset, uint64_t bytes, | ||
358 | + QEMUIOVector *qiov, int flags, | ||
359 | + int (*file_func)(BlkLogWritesFileReq *r), | ||
360 | + uint64_t entry_flags, bool is_zero_write) | ||
361 | +{ | ||
362 | + QEMUIOVector log_qiov; | ||
363 | + size_t niov = qiov ? qiov->niov : 0; | ||
364 | + BDRVBlkLogWritesState *s = bs->opaque; | ||
365 | + BlkLogWritesFileReq fr = { | ||
366 | + .bs = bs, | ||
367 | + .offset = offset, | ||
368 | + .bytes = bytes, | ||
369 | + .file_flags = flags, | ||
370 | + .qiov = qiov, | ||
371 | + .func = file_func, | ||
372 | + }; | ||
373 | + BlkLogWritesLogReq lr = { | ||
374 | + .bs = bs, | ||
375 | + .qiov = &log_qiov, | ||
376 | + .entry = { | ||
377 | + .sector = cpu_to_le64(offset >> s->sectorbits), | ||
378 | + .nr_sectors = cpu_to_le64(bytes >> s->sectorbits), | ||
379 | + .flags = cpu_to_le64(entry_flags), | ||
380 | + .data_len = 0, | ||
381 | + }, | ||
382 | + .zero_size = is_zero_write ? bytes : 0, | ||
383 | + }; | ||
384 | + void *zeroes = g_malloc0(s->sectorsize - sizeof(lr.entry)); | ||
385 | + | ||
386 | + assert((1 << s->sectorbits) == s->sectorsize); | ||
387 | + assert(bs->bl.request_alignment == s->sectorsize); | ||
388 | + assert(QEMU_IS_ALIGNED(offset, bs->bl.request_alignment)); | ||
389 | + assert(QEMU_IS_ALIGNED(bytes, bs->bl.request_alignment)); | ||
390 | + | ||
391 | + qemu_iovec_init(&log_qiov, niov + 2); | ||
392 | + qemu_iovec_add(&log_qiov, &lr.entry, sizeof(lr.entry)); | ||
393 | + qemu_iovec_add(&log_qiov, zeroes, s->sectorsize - sizeof(lr.entry)); | ||
394 | + if (qiov) { | ||
395 | + qemu_iovec_concat(&log_qiov, qiov, 0, qiov->size); | ||
396 | + } | ||
397 | + | ||
398 | + blk_log_writes_co_do_file(&fr); | ||
399 | + blk_log_writes_co_do_log(&lr); | ||
400 | + | ||
401 | + qemu_iovec_destroy(&log_qiov); | ||
402 | + g_free(zeroes); | ||
403 | + | ||
404 | + if (lr.log_ret < 0) { | ||
405 | + return lr.log_ret; | ||
406 | + } | ||
407 | + | ||
408 | + return fr.file_ret; | ||
409 | +} | ||
410 | + | ||
411 | +static int coroutine_fn | ||
412 | +blk_log_writes_co_do_file_pwritev(BlkLogWritesFileReq *fr) | ||
413 | +{ | ||
414 | + return bdrv_co_pwritev(fr->bs->file, fr->offset, fr->bytes, | ||
415 | + fr->qiov, fr->file_flags); | ||
416 | +} | ||
417 | + | ||
418 | +static int coroutine_fn | ||
419 | +blk_log_writes_co_do_file_pwrite_zeroes(BlkLogWritesFileReq *fr) | ||
420 | +{ | ||
421 | + return bdrv_co_pwrite_zeroes(fr->bs->file, fr->offset, fr->bytes, | ||
422 | + fr->file_flags); | ||
423 | +} | ||
424 | + | ||
425 | +static int coroutine_fn blk_log_writes_co_do_file_flush(BlkLogWritesFileReq *fr) | ||
426 | +{ | ||
427 | + return bdrv_co_flush(fr->bs->file->bs); | ||
428 | +} | ||
429 | + | ||
430 | +static int coroutine_fn | ||
431 | +blk_log_writes_co_do_file_pdiscard(BlkLogWritesFileReq *fr) | ||
432 | +{ | ||
433 | + return bdrv_co_pdiscard(fr->bs->file->bs, fr->offset, fr->bytes); | ||
434 | +} | ||
435 | + | ||
436 | +static int coroutine_fn | ||
437 | +blk_log_writes_co_pwritev(BlockDriverState *bs, uint64_t offset, uint64_t bytes, | ||
438 | + QEMUIOVector *qiov, int flags) | ||
439 | +{ | ||
440 | + return blk_log_writes_co_log(bs, offset, bytes, qiov, flags, | ||
441 | + blk_log_writes_co_do_file_pwritev, 0, false); | ||
442 | +} | ||
443 | + | ||
444 | +static int coroutine_fn | ||
445 | +blk_log_writes_co_pwrite_zeroes(BlockDriverState *bs, int64_t offset, int bytes, | ||
446 | + BdrvRequestFlags flags) | ||
447 | +{ | ||
448 | + return blk_log_writes_co_log(bs, offset, bytes, NULL, flags, | ||
449 | + blk_log_writes_co_do_file_pwrite_zeroes, 0, | ||
450 | + true); | ||
451 | +} | ||
452 | + | ||
453 | +static int coroutine_fn blk_log_writes_co_flush_to_disk(BlockDriverState *bs) | ||
454 | +{ | ||
455 | + return blk_log_writes_co_log(bs, 0, 0, NULL, 0, | ||
456 | + blk_log_writes_co_do_file_flush, | ||
457 | + LOG_FLUSH_FLAG, false); | ||
458 | +} | ||
459 | + | ||
460 | +static int coroutine_fn | ||
461 | +blk_log_writes_co_pdiscard(BlockDriverState *bs, int64_t offset, int count) | ||
462 | +{ | ||
463 | + return blk_log_writes_co_log(bs, offset, count, NULL, 0, | ||
464 | + blk_log_writes_co_do_file_pdiscard, | ||
465 | + LOG_DISCARD_FLAG, false); | ||
466 | +} | ||
467 | + | ||
468 | +static BlockDriver bdrv_blk_log_writes = { | ||
469 | + .format_name = "blklogwrites", | ||
470 | + .instance_size = sizeof(BDRVBlkLogWritesState), | ||
471 | + | ||
472 | + .bdrv_open = blk_log_writes_open, | ||
473 | + .bdrv_close = blk_log_writes_close, | ||
474 | + .bdrv_getlength = blk_log_writes_getlength, | ||
475 | + .bdrv_refresh_filename = blk_log_writes_refresh_filename, | ||
476 | + .bdrv_child_perm = blk_log_writes_child_perm, | ||
477 | + .bdrv_refresh_limits = blk_log_writes_refresh_limits, | ||
478 | + | ||
479 | + .bdrv_co_preadv = blk_log_writes_co_preadv, | ||
480 | + .bdrv_co_pwritev = blk_log_writes_co_pwritev, | ||
481 | + .bdrv_co_pwrite_zeroes = blk_log_writes_co_pwrite_zeroes, | ||
482 | + .bdrv_co_flush_to_disk = blk_log_writes_co_flush_to_disk, | ||
483 | + .bdrv_co_pdiscard = blk_log_writes_co_pdiscard, | ||
484 | + .bdrv_co_block_status = bdrv_co_block_status_from_file, | ||
485 | + | ||
486 | + .is_filter = true, | ||
487 | +}; | ||
488 | + | ||
489 | +static void bdrv_blk_log_writes_init(void) | ||
490 | +{ | ||
491 | + bdrv_register(&bdrv_blk_log_writes); | ||
492 | +} | ||
493 | + | ||
494 | +block_init(bdrv_blk_log_writes_init); | ||
495 | diff --git a/MAINTAINERS b/MAINTAINERS | ||
496 | index XXXXXXX..XXXXXXX 100644 | 369 | index XXXXXXX..XXXXXXX 100644 |
497 | --- a/MAINTAINERS | 370 | --- a/hw/virtio/meson.build |
498 | +++ b/MAINTAINERS | 371 | +++ b/hw/virtio/meson.build |
499 | @@ -XXX,XX +XXX,XX @@ S: Supported | 372 | @@ -XXX,XX +XXX,XX @@ |
500 | F: block/quorum.c | 373 | system_virtio_ss = ss.source_set() |
501 | L: qemu-block@nongnu.org | 374 | system_virtio_ss.add(files('virtio-bus.c')) |
502 | 375 | +system_virtio_ss.add(files('iothread-vq-mapping.c')) | |
503 | +blklogwrites | 376 | system_virtio_ss.add(when: 'CONFIG_VIRTIO_PCI', if_true: files('virtio-pci.c')) |
504 | +M: Ari Sundholm <ari@tuxera.com> | 377 | system_virtio_ss.add(when: 'CONFIG_VIRTIO_MMIO', if_true: files('virtio-mmio.c')) |
505 | +L: qemu-block@nongnu.org | 378 | system_virtio_ss.add(when: 'CONFIG_VIRTIO_CRYPTO', if_true: files('virtio-crypto.c')) |
506 | +S: Supported | ||
507 | +F: block/blklogwrites.c | ||
508 | + | ||
509 | blkverify | ||
510 | M: Stefan Hajnoczi <stefanha@redhat.com> | ||
511 | L: qemu-block@nongnu.org | ||
512 | diff --git a/block/Makefile.objs b/block/Makefile.objs | ||
513 | index XXXXXXX..XXXXXXX 100644 | ||
514 | --- a/block/Makefile.objs | ||
515 | +++ b/block/Makefile.objs | ||
516 | @@ -XXX,XX +XXX,XX @@ block-obj-y += qed-check.o | ||
517 | block-obj-y += vhdx.o vhdx-endian.o vhdx-log.o | ||
518 | block-obj-y += quorum.o | ||
519 | block-obj-y += parallels.o blkdebug.o blkverify.o blkreplay.o | ||
520 | +block-obj-y += blklogwrites.o | ||
521 | block-obj-y += block-backend.o snapshot.o qapi.o | ||
522 | block-obj-$(CONFIG_WIN32) += file-win32.o win32-aio.o | ||
523 | block-obj-$(CONFIG_POSIX) += file-posix.o | ||
524 | -- | 379 | -- |
525 | 2.13.6 | 380 | 2.48.1 |
526 | |||
527 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
1 | 2 | ||
3 | Allow virtio-scsi virtqueues to be assigned to different IOThreads. This | ||
4 | makes it possible to take advantage of host multi-queue block layer | ||
5 | scalability by assigning virtqueues that have affinity with vCPUs to | ||
6 | different IOThreads that have affinity with host CPUs. The same feature | ||
7 | was introduced for virtio-blk in the past: | ||
8 | https://developers.redhat.com/articles/2024/09/05/scaling-virtio-blk-disk-io-iothread-virtqueue-mapping | ||
9 | |||
10 | Here are fio randread 4k iodepth=64 results from a 4 vCPU guest with an | ||
11 | Intel P4800X SSD: | ||
12 | iothreads IOPS | ||
13 | ------------------------------ | ||
14 | 1 189576 | ||
15 | 2 312698 | ||
16 | 4 346744 | ||
17 | |||
18 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
19 | Message-ID: <20250311132616.1049687-12-stefanha@redhat.com> | ||
20 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
21 | --- | ||
22 | include/hw/virtio/virtio-scsi.h | 5 +- | ||
23 | hw/scsi/virtio-scsi-dataplane.c | 90 ++++++++++++++++++++++++--------- | ||
24 | hw/scsi/virtio-scsi.c | 63 ++++++++++++++--------- | ||
25 | 3 files changed, 107 insertions(+), 51 deletions(-) | ||
26 | |||
27 | diff --git a/include/hw/virtio/virtio-scsi.h b/include/hw/virtio/virtio-scsi.h | ||
28 | index XXXXXXX..XXXXXXX 100644 | ||
29 | --- a/include/hw/virtio/virtio-scsi.h | ||
30 | +++ b/include/hw/virtio/virtio-scsi.h | ||
31 | @@ -XXX,XX +XXX,XX @@ | ||
32 | #include "hw/virtio/virtio.h" | ||
33 | #include "hw/scsi/scsi.h" | ||
34 | #include "chardev/char-fe.h" | ||
35 | +#include "qapi/qapi-types-virtio.h" | ||
36 | #include "system/iothread.h" | ||
37 | |||
38 | #define TYPE_VIRTIO_SCSI_COMMON "virtio-scsi-common" | ||
39 | @@ -XXX,XX +XXX,XX @@ struct VirtIOSCSIConf { | ||
40 | CharBackend chardev; | ||
41 | uint32_t boot_tpgt; | ||
42 | IOThread *iothread; | ||
43 | + IOThreadVirtQueueMappingList *iothread_vq_mapping_list; | ||
44 | }; | ||
45 | |||
46 | struct VirtIOSCSI; | ||
47 | @@ -XXX,XX +XXX,XX @@ struct VirtIOSCSI { | ||
48 | QTAILQ_HEAD(, VirtIOSCSIReq) tmf_bh_list; | ||
49 | |||
50 | /* Fields for dataplane below */ | ||
51 | - AioContext *ctx; /* one iothread per virtio-scsi-pci for now */ | ||
52 | + AioContext **vq_aio_context; /* per-virtqueue AioContext pointer */ | ||
53 | |||
54 | bool dataplane_started; | ||
55 | bool dataplane_starting; | ||
56 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_common_realize(DeviceState *dev, | ||
57 | void virtio_scsi_common_unrealize(DeviceState *dev); | ||
58 | |||
59 | void virtio_scsi_dataplane_setup(VirtIOSCSI *s, Error **errp); | ||
60 | +void virtio_scsi_dataplane_cleanup(VirtIOSCSI *s); | ||
61 | int virtio_scsi_dataplane_start(VirtIODevice *s); | ||
62 | void virtio_scsi_dataplane_stop(VirtIODevice *s); | ||
63 | |||
64 | diff --git a/hw/scsi/virtio-scsi-dataplane.c b/hw/scsi/virtio-scsi-dataplane.c | ||
65 | index XXXXXXX..XXXXXXX 100644 | ||
66 | --- a/hw/scsi/virtio-scsi-dataplane.c | ||
67 | +++ b/hw/scsi/virtio-scsi-dataplane.c | ||
68 | @@ -XXX,XX +XXX,XX @@ | ||
69 | #include "system/block-backend.h" | ||
70 | #include "hw/scsi/scsi.h" | ||
71 | #include "scsi/constants.h" | ||
72 | +#include "hw/virtio/iothread-vq-mapping.h" | ||
73 | #include "hw/virtio/virtio-bus.h" | ||
74 | |||
75 | /* Context: BQL held */ | ||
76 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_dataplane_setup(VirtIOSCSI *s, Error **errp) | ||
77 | VirtIODevice *vdev = VIRTIO_DEVICE(s); | ||
78 | BusState *qbus = qdev_get_parent_bus(DEVICE(vdev)); | ||
79 | VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus); | ||
80 | + uint16_t num_vqs = vs->conf.num_queues + VIRTIO_SCSI_VQ_NUM_FIXED; | ||
81 | |||
82 | - if (vs->conf.iothread) { | ||
83 | + if (vs->conf.iothread && vs->conf.iothread_vq_mapping_list) { | ||
84 | + error_setg(errp, | ||
85 | + "iothread and iothread-vq-mapping properties cannot be set " | ||
86 | + "at the same time"); | ||
87 | + return; | ||
88 | + } | ||
89 | + | ||
90 | + if (vs->conf.iothread || vs->conf.iothread_vq_mapping_list) { | ||
91 | if (!k->set_guest_notifiers || !k->ioeventfd_assign) { | ||
92 | error_setg(errp, | ||
93 | "device is incompatible with iothread " | ||
94 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_dataplane_setup(VirtIOSCSI *s, Error **errp) | ||
95 | error_setg(errp, "ioeventfd is required for iothread"); | ||
96 | return; | ||
97 | } | ||
98 | - s->ctx = iothread_get_aio_context(vs->conf.iothread); | ||
99 | - } else { | ||
100 | - if (!virtio_device_ioeventfd_enabled(vdev)) { | ||
101 | + } | ||
102 | + | ||
103 | + s->vq_aio_context = g_new(AioContext *, num_vqs); | ||
104 | + | ||
105 | + if (vs->conf.iothread_vq_mapping_list) { | ||
106 | + if (!iothread_vq_mapping_apply(vs->conf.iothread_vq_mapping_list, | ||
107 | + s->vq_aio_context, num_vqs, errp)) { | ||
108 | + g_free(s->vq_aio_context); | ||
109 | + s->vq_aio_context = NULL; | ||
110 | return; | ||
111 | } | ||
112 | - s->ctx = qemu_get_aio_context(); | ||
113 | + } else if (vs->conf.iothread) { | ||
114 | + AioContext *ctx = iothread_get_aio_context(vs->conf.iothread); | ||
115 | + for (uint16_t i = 0; i < num_vqs; i++) { | ||
116 | + s->vq_aio_context[i] = ctx; | ||
117 | + } | ||
118 | + | ||
119 | + /* Released in virtio_scsi_dataplane_cleanup() */ | ||
120 | + object_ref(OBJECT(vs->conf.iothread)); | ||
121 | + } else { | ||
122 | + AioContext *ctx = qemu_get_aio_context(); | ||
123 | + for (unsigned i = 0; i < num_vqs; i++) { | ||
124 | + s->vq_aio_context[i] = ctx; | ||
125 | + } | ||
126 | + } | ||
127 | +} | ||
128 | + | ||
129 | +/* Context: BQL held */ | ||
130 | +void virtio_scsi_dataplane_cleanup(VirtIOSCSI *s) | ||
131 | +{ | ||
132 | + VirtIOSCSICommon *vs = VIRTIO_SCSI_COMMON(s); | ||
133 | + | ||
134 | + if (vs->conf.iothread_vq_mapping_list) { | ||
135 | + iothread_vq_mapping_cleanup(vs->conf.iothread_vq_mapping_list); | ||
136 | } | ||
137 | + | ||
138 | + if (vs->conf.iothread) { | ||
139 | + object_unref(OBJECT(vs->conf.iothread)); | ||
140 | + } | ||
141 | + | ||
142 | + g_free(s->vq_aio_context); | ||
143 | + s->vq_aio_context = NULL; | ||
144 | } | ||
145 | |||
146 | static int virtio_scsi_set_host_notifier(VirtIOSCSI *s, VirtQueue *vq, int n) | ||
147 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_set_host_notifier(VirtIOSCSI *s, VirtQueue *vq, int n) | ||
148 | } | ||
149 | |||
150 | /* Context: BH in IOThread */ | ||
151 | -static void virtio_scsi_dataplane_stop_bh(void *opaque) | ||
152 | +static void virtio_scsi_dataplane_stop_vq_bh(void *opaque) | ||
153 | { | ||
154 | - VirtIOSCSI *s = opaque; | ||
155 | - VirtIOSCSICommon *vs = VIRTIO_SCSI_COMMON(s); | ||
156 | + AioContext *ctx = qemu_get_current_aio_context(); | ||
157 | + VirtQueue *vq = opaque; | ||
158 | EventNotifier *host_notifier; | ||
159 | - int i; | ||
160 | |||
161 | - virtio_queue_aio_detach_host_notifier(vs->ctrl_vq, s->ctx); | ||
162 | - host_notifier = virtio_queue_get_host_notifier(vs->ctrl_vq); | ||
163 | + virtio_queue_aio_detach_host_notifier(vq, ctx); | ||
164 | + host_notifier = virtio_queue_get_host_notifier(vq); | ||
165 | |||
166 | /* | ||
167 | * Test and clear notifier after disabling event, in case poll callback | ||
168 | * didn't have time to run. | ||
169 | */ | ||
170 | virtio_queue_host_notifier_read(host_notifier); | ||
171 | - | ||
172 | - virtio_queue_aio_detach_host_notifier(vs->event_vq, s->ctx); | ||
173 | - host_notifier = virtio_queue_get_host_notifier(vs->event_vq); | ||
174 | - virtio_queue_host_notifier_read(host_notifier); | ||
175 | - | ||
176 | - for (i = 0; i < vs->conf.num_queues; i++) { | ||
177 | - virtio_queue_aio_detach_host_notifier(vs->cmd_vqs[i], s->ctx); | ||
178 | - host_notifier = virtio_queue_get_host_notifier(vs->cmd_vqs[i]); | ||
179 | - virtio_queue_host_notifier_read(host_notifier); | ||
180 | - } | ||
181 | } | ||
182 | |||
183 | /* Context: BQL held */ | ||
184 | @@ -XXX,XX +XXX,XX @@ int virtio_scsi_dataplane_start(VirtIODevice *vdev) | ||
185 | smp_wmb(); /* paired with aio_notify_accept() */ | ||
186 | |||
187 | if (s->bus.drain_count == 0) { | ||
188 | - virtio_queue_aio_attach_host_notifier(vs->ctrl_vq, s->ctx); | ||
189 | - virtio_queue_aio_attach_host_notifier_no_poll(vs->event_vq, s->ctx); | ||
190 | + virtio_queue_aio_attach_host_notifier(vs->ctrl_vq, | ||
191 | + s->vq_aio_context[0]); | ||
192 | + virtio_queue_aio_attach_host_notifier_no_poll(vs->event_vq, | ||
193 | + s->vq_aio_context[1]); | ||
194 | |||
195 | for (i = 0; i < vs->conf.num_queues; i++) { | ||
196 | - virtio_queue_aio_attach_host_notifier(vs->cmd_vqs[i], s->ctx); | ||
197 | + AioContext *ctx = s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED + i]; | ||
198 | + virtio_queue_aio_attach_host_notifier(vs->cmd_vqs[i], ctx); | ||
199 | } | ||
200 | } | ||
201 | return 0; | ||
202 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_dataplane_stop(VirtIODevice *vdev) | ||
203 | s->dataplane_stopping = true; | ||
204 | |||
205 | if (s->bus.drain_count == 0) { | ||
206 | - aio_wait_bh_oneshot(s->ctx, virtio_scsi_dataplane_stop_bh, s); | ||
207 | + for (i = 0; i < vs->conf.num_queues + VIRTIO_SCSI_VQ_NUM_FIXED; i++) { | ||
208 | + VirtQueue *vq = virtio_get_queue(&vs->parent_obj, i); | ||
209 | + AioContext *ctx = s->vq_aio_context[i]; | ||
210 | + aio_wait_bh_oneshot(ctx, virtio_scsi_dataplane_stop_vq_bh, vq); | ||
211 | + } | ||
212 | } | ||
213 | |||
214 | blk_drain_all(); /* ensure there are no in-flight requests */ | ||
215 | diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c | ||
216 | index XXXXXXX..XXXXXXX 100644 | ||
217 | --- a/hw/scsi/virtio-scsi.c | ||
218 | +++ b/hw/scsi/virtio-scsi.c | ||
219 | @@ -XXX,XX +XXX,XX @@ | ||
220 | #include "hw/qdev-properties.h" | ||
221 | #include "hw/scsi/scsi.h" | ||
222 | #include "scsi/constants.h" | ||
223 | +#include "hw/virtio/iothread-vq-mapping.h" | ||
224 | #include "hw/virtio/virtio-bus.h" | ||
225 | #include "hw/virtio/virtio-access.h" | ||
226 | #include "trace.h" | ||
227 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_cancel_notify(Notifier *notifier, void *data) | ||
228 | g_free(n); | ||
229 | } | ||
230 | |||
231 | -static inline void virtio_scsi_ctx_check(VirtIOSCSI *s, SCSIDevice *d) | ||
232 | -{ | ||
233 | - if (s->dataplane_started && d && blk_is_available(d->conf.blk)) { | ||
234 | - assert(blk_get_aio_context(d->conf.blk) == s->ctx); | ||
235 | - } | ||
236 | -} | ||
237 | - | ||
238 | static void virtio_scsi_do_one_tmf_bh(VirtIOSCSIReq *req) | ||
239 | { | ||
240 | VirtIOSCSI *s = req->dev; | ||
241 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_flush_defer_tmf_to_aio_context(VirtIOSCSI *s) | ||
242 | |||
243 | assert(!s->dataplane_started); | ||
244 | |||
245 | - if (s->ctx) { | ||
246 | + for (uint32_t i = 0; i < s->parent_obj.conf.num_queues; i++) { | ||
247 | + AioContext *ctx = s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED + i]; | ||
248 | + | ||
249 | /* Our BH only runs after previously scheduled BHs */ | ||
250 | - aio_wait_bh_oneshot(s->ctx, dummy_bh, NULL); | ||
251 | + aio_wait_bh_oneshot(ctx, dummy_bh, NULL); | ||
252 | } | ||
253 | } | ||
254 | |||
255 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_do_tmf(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
256 | AioContext *ctx; | ||
257 | int ret = 0; | ||
258 | |||
259 | - virtio_scsi_ctx_check(s, d); | ||
260 | /* Here VIRTIO_SCSI_S_OK means "FUNCTION COMPLETE". */ | ||
261 | req->resp.tmf.response = VIRTIO_SCSI_S_OK; | ||
262 | |||
263 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_do_tmf(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
264 | |||
265 | case VIRTIO_SCSI_T_TMF_ABORT_TASK_SET: | ||
266 | case VIRTIO_SCSI_T_TMF_CLEAR_TASK_SET: { | ||
267 | + g_autoptr(GHashTable) aio_contexts = g_hash_table_new(NULL, NULL); | ||
268 | + | ||
269 | if (!d) { | ||
270 | goto fail; | ||
271 | } | ||
272 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_do_tmf(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
273 | |||
274 | qatomic_inc(&req->remaining); | ||
275 | |||
276 | - ctx = s->ctx ?: qemu_get_aio_context(); | ||
277 | - virtio_scsi_defer_tmf_to_aio_context(req, ctx); | ||
278 | + for (uint32_t i = 0; i < s->parent_obj.conf.num_queues; i++) { | ||
279 | + ctx = s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED + i]; | ||
280 | + | ||
281 | + if (!g_hash_table_add(aio_contexts, ctx)) { | ||
282 | + continue; /* skip previously added AioContext */ | ||
283 | + } | ||
284 | + | ||
285 | + virtio_scsi_defer_tmf_to_aio_context(req, ctx); | ||
286 | + } | ||
287 | |||
288 | virtio_scsi_tmf_dec_remaining(req); | ||
289 | ret = -EINPROGRESS; | ||
290 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_handle_ctrl_vq(VirtIOSCSI *s, VirtQueue *vq) | ||
291 | */ | ||
292 | static bool virtio_scsi_defer_to_dataplane(VirtIOSCSI *s) | ||
293 | { | ||
294 | - if (!s->ctx || s->dataplane_started) { | ||
295 | + if (s->dataplane_started) { | ||
296 | return false; | ||
297 | } | ||
298 | + if (s->vq_aio_context[0] == qemu_get_aio_context()) { | ||
299 | + return false; /* not using IOThreads */ | ||
300 | + } | ||
301 | |||
302 | virtio_device_start_ioeventfd(&s->parent_obj.parent_obj); | ||
303 | return !s->dataplane_fenced; | ||
304 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_handle_cmd_req_prepare(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
305 | virtio_scsi_complete_cmd_req(req); | ||
306 | return -ENOENT; | ||
307 | } | ||
308 | - virtio_scsi_ctx_check(s, d); | ||
309 | req->sreq = scsi_req_new(d, req->req.cmd.tag, | ||
310 | virtio_scsi_get_lun(req->req.cmd.lun), | ||
311 | req->req.cmd.cdb, vs->cdb_size, req); | ||
312 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_hotplug(HotplugHandler *hotplug_dev, DeviceState *dev, | ||
313 | { | ||
314 | VirtIODevice *vdev = VIRTIO_DEVICE(hotplug_dev); | ||
315 | VirtIOSCSI *s = VIRTIO_SCSI(vdev); | ||
316 | + AioContext *ctx = s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED]; | ||
317 | SCSIDevice *sd = SCSI_DEVICE(dev); | ||
318 | - int ret; | ||
319 | |||
320 | - if (s->ctx && !s->dataplane_fenced) { | ||
321 | - ret = blk_set_aio_context(sd->conf.blk, s->ctx, errp); | ||
322 | - if (ret < 0) { | ||
323 | - return; | ||
324 | - } | ||
325 | + if (ctx != qemu_get_aio_context() && !s->dataplane_fenced) { | ||
326 | + /* | ||
327 | + * Try to make the BlockBackend's AioContext match ours. Ignore failure | ||
328 | + * because I/O will still work although block jobs and other users | ||
329 | + * might be slower when multiple AioContexts use a BlockBackend. | ||
330 | + */ | ||
331 | + blk_set_aio_context(sd->conf.blk, ctx, errp); | ||
332 | } | ||
333 | |||
334 | if (virtio_vdev_has_feature(vdev, VIRTIO_SCSI_F_HOTPLUG)) { | ||
335 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_hotunplug(HotplugHandler *hotplug_dev, DeviceState *dev, | ||
336 | |||
337 | qdev_simple_device_unplug_cb(hotplug_dev, dev, errp); | ||
338 | |||
339 | - if (s->ctx) { | ||
340 | + if (s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED] != qemu_get_aio_context()) { | ||
341 | /* If other users keep the BlockBackend in the iothread, that's ok */ | ||
342 | blk_set_aio_context(sd->conf.blk, qemu_get_aio_context(), NULL); | ||
343 | } | ||
344 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_drained_begin(SCSIBus *bus) | ||
345 | |||
346 | for (uint32_t i = 0; i < total_queues; i++) { | ||
347 | VirtQueue *vq = virtio_get_queue(vdev, i); | ||
348 | - virtio_queue_aio_detach_host_notifier(vq, s->ctx); | ||
349 | + virtio_queue_aio_detach_host_notifier(vq, s->vq_aio_context[i]); | ||
350 | } | ||
351 | } | ||
352 | |||
353 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_drained_end(SCSIBus *bus) | ||
354 | |||
355 | for (uint32_t i = 0; i < total_queues; i++) { | ||
356 | VirtQueue *vq = virtio_get_queue(vdev, i); | ||
357 | + AioContext *ctx = s->vq_aio_context[i]; | ||
358 | + | ||
359 | if (vq == vs->event_vq) { | ||
360 | - virtio_queue_aio_attach_host_notifier_no_poll(vq, s->ctx); | ||
361 | + virtio_queue_aio_attach_host_notifier_no_poll(vq, ctx); | ||
362 | } else { | ||
363 | - virtio_queue_aio_attach_host_notifier(vq, s->ctx); | ||
364 | + virtio_queue_aio_attach_host_notifier(vq, ctx); | ||
365 | } | ||
366 | } | ||
367 | } | ||
368 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_common_unrealize(DeviceState *dev) | ||
369 | virtio_cleanup(vdev); | ||
370 | } | ||
371 | |||
372 | +/* main loop */ | ||
373 | static void virtio_scsi_device_unrealize(DeviceState *dev) | ||
374 | { | ||
375 | VirtIOSCSI *s = VIRTIO_SCSI(dev); | ||
376 | |||
377 | virtio_scsi_reset_tmf_bh(s); | ||
378 | - | ||
379 | + virtio_scsi_dataplane_cleanup(s); | ||
380 | qbus_set_hotplug_handler(BUS(&s->bus), NULL); | ||
381 | virtio_scsi_common_unrealize(dev); | ||
382 | qemu_mutex_destroy(&s->tmf_bh_lock); | ||
383 | @@ -XXX,XX +XXX,XX @@ static const Property virtio_scsi_properties[] = { | ||
384 | VIRTIO_SCSI_F_CHANGE, true), | ||
385 | DEFINE_PROP_LINK("iothread", VirtIOSCSI, parent_obj.conf.iothread, | ||
386 | TYPE_IOTHREAD, IOThread *), | ||
387 | + DEFINE_PROP_IOTHREAD_VQ_MAPPING_LIST("iothread-vq-mapping", VirtIOSCSI, | ||
388 | + parent_obj.conf.iothread_vq_mapping_list), | ||
389 | }; | ||
390 | |||
391 | static const VMStateDescription vmstate_virtio_scsi = { | ||
392 | -- | ||
393 | 2.48.1 | diff view generated by jsdifflib |
1 | From: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 1 | From: Stefan Hajnoczi <stefanha@redhat.com> |
---|---|---|---|
2 | 2 | ||
3 | Do data compression in separate threads. This significantly improve | 3 | Previously the ctrl virtqueue was handled in the AioContext where SCSI |
4 | performance for qemu-img convert with -W (allow async writes) and -c | 4 | requests are processed. When IOThread Virtqueue Mapping was added things |
5 | (compressed) options. | 5 | become more complicated because SCSI requests could run in other |
6 | 6 | AioContexts. | |
7 | Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | 7 | |
8 | Simplify by handling the ctrl virtqueue in the main loop where reset | ||
9 | operations can be performed. Note that BHs are still used canceling SCSI | ||
10 | requests in their AioContexts but at least the mean loop activity | ||
11 | doesn't need BHs anymore. | ||
12 | |||
13 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
14 | Message-ID: <20250311132616.1049687-13-stefanha@redhat.com> | ||
8 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | 15 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> |
9 | --- | 16 | --- |
10 | block/qcow2.h | 3 +++ | 17 | include/hw/virtio/virtio-scsi.h | 8 -- |
11 | block/qcow2.c | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++- | 18 | hw/scsi/virtio-scsi-dataplane.c | 6 ++ |
12 | 2 files changed, 64 insertions(+), 1 deletion(-) | 19 | hw/scsi/virtio-scsi.c | 144 ++++++-------------------------- |
13 | 20 | 3 files changed, 33 insertions(+), 125 deletions(-) | |
14 | diff --git a/block/qcow2.h b/block/qcow2.h | 21 | |
22 | diff --git a/include/hw/virtio/virtio-scsi.h b/include/hw/virtio/virtio-scsi.h | ||
15 | index XXXXXXX..XXXXXXX 100644 | 23 | index XXXXXXX..XXXXXXX 100644 |
16 | --- a/block/qcow2.h | 24 | --- a/include/hw/virtio/virtio-scsi.h |
17 | +++ b/block/qcow2.h | 25 | +++ b/include/hw/virtio/virtio-scsi.h |
18 | @@ -XXX,XX +XXX,XX @@ typedef struct BDRVQcow2State { | 26 | @@ -XXX,XX +XXX,XX @@ struct VirtIOSCSI { |
19 | * override) */ | 27 | |
20 | char *image_backing_file; | 28 | QemuMutex ctrl_lock; /* protects ctrl_vq */ |
21 | char *image_backing_format; | 29 | |
22 | + | 30 | - /* |
23 | + CoQueue compress_wait_queue; | 31 | - * TMFs deferred to main loop BH. These fields are protected by |
24 | + int nb_compress_threads; | 32 | - * tmf_bh_lock. |
25 | } BDRVQcow2State; | 33 | - */ |
26 | 34 | - QemuMutex tmf_bh_lock; | |
27 | typedef struct Qcow2COWRegion { | 35 | - QEMUBH *tmf_bh; |
28 | diff --git a/block/qcow2.c b/block/qcow2.c | 36 | - QTAILQ_HEAD(, VirtIOSCSIReq) tmf_bh_list; |
37 | - | ||
38 | /* Fields for dataplane below */ | ||
39 | AioContext **vq_aio_context; /* per-virtqueue AioContext pointer */ | ||
40 | |||
41 | diff --git a/hw/scsi/virtio-scsi-dataplane.c b/hw/scsi/virtio-scsi-dataplane.c | ||
29 | index XXXXXXX..XXXXXXX 100644 | 42 | index XXXXXXX..XXXXXXX 100644 |
30 | --- a/block/qcow2.c | 43 | --- a/hw/scsi/virtio-scsi-dataplane.c |
31 | +++ b/block/qcow2.c | 44 | +++ b/hw/scsi/virtio-scsi-dataplane.c |
32 | @@ -XXX,XX +XXX,XX @@ | 45 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_dataplane_setup(VirtIOSCSI *s, Error **errp) |
33 | #include "qapi/qobject-input-visitor.h" | 46 | s->vq_aio_context[i] = ctx; |
34 | #include "qapi/qapi-visit-block-core.h" | 47 | } |
35 | #include "crypto.h" | ||
36 | +#include "block/thread-pool.h" | ||
37 | |||
38 | /* | ||
39 | Differences with QCOW: | ||
40 | @@ -XXX,XX +XXX,XX @@ static int coroutine_fn qcow2_do_open(BlockDriverState *bs, QDict *options, | ||
41 | qcow2_check_refcounts(bs, &result, 0); | ||
42 | } | 48 | } |
43 | #endif | 49 | + |
44 | + | 50 | + /* |
45 | + qemu_co_queue_init(&s->compress_wait_queue); | 51 | + * Always handle the ctrl virtqueue in the main loop thread where device |
46 | + | 52 | + * resets can be performed. |
47 | return ret; | 53 | + */ |
48 | 54 | + s->vq_aio_context[0] = qemu_get_aio_context(); | |
49 | fail: | ||
50 | @@ -XXX,XX +XXX,XX @@ static ssize_t qcow2_compress(void *dest, const void *src, size_t size) | ||
51 | return ret; | ||
52 | } | 55 | } |
53 | 56 | ||
54 | +#define MAX_COMPRESS_THREADS 4 | 57 | /* Context: BQL held */ |
55 | + | 58 | diff --git a/hw/scsi/virtio-scsi.c b/hw/scsi/virtio-scsi.c |
56 | +typedef struct Qcow2CompressData { | 59 | index XXXXXXX..XXXXXXX 100644 |
57 | + void *dest; | 60 | --- a/hw/scsi/virtio-scsi.c |
58 | + const void *src; | 61 | +++ b/hw/scsi/virtio-scsi.c |
59 | + size_t size; | 62 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_cancel_notify(Notifier *notifier, void *data) |
60 | + ssize_t ret; | 63 | g_free(n); |
61 | +} Qcow2CompressData; | 64 | } |
62 | + | 65 | |
63 | +static int qcow2_compress_pool_func(void *opaque) | 66 | -static void virtio_scsi_do_one_tmf_bh(VirtIOSCSIReq *req) |
64 | +{ | 67 | -{ |
65 | + Qcow2CompressData *data = opaque; | 68 | - VirtIOSCSI *s = req->dev; |
66 | + | 69 | - SCSIDevice *d = virtio_scsi_device_get(s, req->req.tmf.lun); |
67 | + data->ret = qcow2_compress(data->dest, data->src, data->size); | 70 | - BusChild *kid; |
68 | + | 71 | - int target; |
69 | + return 0; | 72 | - |
70 | +} | 73 | - switch (req->req.tmf.subtype) { |
71 | + | 74 | - case VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET: |
72 | +static void qcow2_compress_complete(void *opaque, int ret) | 75 | - if (!d) { |
73 | +{ | 76 | - req->resp.tmf.response = VIRTIO_SCSI_S_BAD_TARGET; |
74 | + qemu_coroutine_enter(opaque); | 77 | - goto out; |
75 | +} | 78 | - } |
76 | + | 79 | - if (d->lun != virtio_scsi_get_lun(req->req.tmf.lun)) { |
77 | +/* See qcow2_compress definition for parameters description */ | 80 | - req->resp.tmf.response = VIRTIO_SCSI_S_INCORRECT_LUN; |
78 | +static ssize_t qcow2_co_compress(BlockDriverState *bs, | 81 | - goto out; |
79 | + void *dest, const void *src, size_t size) | 82 | - } |
80 | +{ | 83 | - qatomic_inc(&s->resetting); |
81 | + BDRVQcow2State *s = bs->opaque; | 84 | - device_cold_reset(&d->qdev); |
82 | + BlockAIOCB *acb; | 85 | - qatomic_dec(&s->resetting); |
83 | + ThreadPool *pool = aio_get_thread_pool(bdrv_get_aio_context(bs)); | 86 | - break; |
84 | + Qcow2CompressData arg = { | 87 | - |
85 | + .dest = dest, | 88 | - case VIRTIO_SCSI_T_TMF_I_T_NEXUS_RESET: |
86 | + .src = src, | 89 | - target = req->req.tmf.lun[1]; |
87 | + .size = size, | 90 | - qatomic_inc(&s->resetting); |
88 | + }; | 91 | - |
89 | + | 92 | - rcu_read_lock(); |
90 | + while (s->nb_compress_threads >= MAX_COMPRESS_THREADS) { | 93 | - QTAILQ_FOREACH_RCU(kid, &s->bus.qbus.children, sibling) { |
91 | + qemu_co_queue_wait(&s->compress_wait_queue, NULL); | 94 | - SCSIDevice *d1 = SCSI_DEVICE(kid->child); |
95 | - if (d1->channel == 0 && d1->id == target) { | ||
96 | - device_cold_reset(&d1->qdev); | ||
97 | - } | ||
98 | - } | ||
99 | - rcu_read_unlock(); | ||
100 | - | ||
101 | - qatomic_dec(&s->resetting); | ||
102 | - break; | ||
103 | - | ||
104 | - default: | ||
105 | - g_assert_not_reached(); | ||
106 | - } | ||
107 | - | ||
108 | -out: | ||
109 | - object_unref(OBJECT(d)); | ||
110 | - virtio_scsi_complete_req(req, &s->ctrl_lock); | ||
111 | -} | ||
112 | - | ||
113 | -/* Some TMFs must be processed from the main loop thread */ | ||
114 | -static void virtio_scsi_do_tmf_bh(void *opaque) | ||
115 | -{ | ||
116 | - VirtIOSCSI *s = opaque; | ||
117 | - QTAILQ_HEAD(, VirtIOSCSIReq) reqs = QTAILQ_HEAD_INITIALIZER(reqs); | ||
118 | - VirtIOSCSIReq *req; | ||
119 | - VirtIOSCSIReq *tmp; | ||
120 | - | ||
121 | - GLOBAL_STATE_CODE(); | ||
122 | - | ||
123 | - WITH_QEMU_LOCK_GUARD(&s->tmf_bh_lock) { | ||
124 | - QTAILQ_FOREACH_SAFE(req, &s->tmf_bh_list, next, tmp) { | ||
125 | - QTAILQ_REMOVE(&s->tmf_bh_list, req, next); | ||
126 | - QTAILQ_INSERT_TAIL(&reqs, req, next); | ||
127 | - } | ||
128 | - | ||
129 | - qemu_bh_delete(s->tmf_bh); | ||
130 | - s->tmf_bh = NULL; | ||
131 | - } | ||
132 | - | ||
133 | - QTAILQ_FOREACH_SAFE(req, &reqs, next, tmp) { | ||
134 | - QTAILQ_REMOVE(&reqs, req, next); | ||
135 | - virtio_scsi_do_one_tmf_bh(req); | ||
136 | - } | ||
137 | -} | ||
138 | - | ||
139 | -static void virtio_scsi_reset_tmf_bh(VirtIOSCSI *s) | ||
140 | -{ | ||
141 | - VirtIOSCSIReq *req; | ||
142 | - VirtIOSCSIReq *tmp; | ||
143 | - | ||
144 | - GLOBAL_STATE_CODE(); | ||
145 | - | ||
146 | - /* Called after ioeventfd has been stopped, so tmf_bh_lock is not needed */ | ||
147 | - if (s->tmf_bh) { | ||
148 | - qemu_bh_delete(s->tmf_bh); | ||
149 | - s->tmf_bh = NULL; | ||
150 | - } | ||
151 | - | ||
152 | - QTAILQ_FOREACH_SAFE(req, &s->tmf_bh_list, next, tmp) { | ||
153 | - QTAILQ_REMOVE(&s->tmf_bh_list, req, next); | ||
154 | - | ||
155 | - /* SAM-6 6.3.2 Hard reset */ | ||
156 | - req->resp.tmf.response = VIRTIO_SCSI_S_TARGET_FAILURE; | ||
157 | - virtio_scsi_complete_req(req, &req->dev->ctrl_lock); | ||
158 | - } | ||
159 | -} | ||
160 | - | ||
161 | -static void virtio_scsi_defer_tmf_to_main_loop(VirtIOSCSIReq *req) | ||
162 | -{ | ||
163 | - VirtIOSCSI *s = req->dev; | ||
164 | - | ||
165 | - WITH_QEMU_LOCK_GUARD(&s->tmf_bh_lock) { | ||
166 | - QTAILQ_INSERT_TAIL(&s->tmf_bh_list, req, next); | ||
167 | - | ||
168 | - if (!s->tmf_bh) { | ||
169 | - s->tmf_bh = qemu_bh_new(virtio_scsi_do_tmf_bh, s); | ||
170 | - qemu_bh_schedule(s->tmf_bh); | ||
171 | - } | ||
172 | - } | ||
173 | -} | ||
174 | - | ||
175 | static void virtio_scsi_tmf_cancel_req(VirtIOSCSIReq *tmf, SCSIRequest *r) | ||
176 | { | ||
177 | VirtIOSCSICancelNotifier *notifier; | ||
178 | @@ -XXX,XX +XXX,XX @@ static int virtio_scsi_do_tmf(VirtIOSCSI *s, VirtIOSCSIReq *req) | ||
179 | break; | ||
180 | |||
181 | case VIRTIO_SCSI_T_TMF_LOGICAL_UNIT_RESET: | ||
182 | - case VIRTIO_SCSI_T_TMF_I_T_NEXUS_RESET: | ||
183 | - virtio_scsi_defer_tmf_to_main_loop(req); | ||
184 | - ret = -EINPROGRESS; | ||
185 | + if (!d) { | ||
186 | + goto fail; | ||
187 | + } | ||
188 | + if (d->lun != virtio_scsi_get_lun(req->req.tmf.lun)) { | ||
189 | + goto incorrect_lun; | ||
190 | + } | ||
191 | + qatomic_inc(&s->resetting); | ||
192 | + device_cold_reset(&d->qdev); | ||
193 | + qatomic_dec(&s->resetting); | ||
194 | break; | ||
195 | |||
196 | + case VIRTIO_SCSI_T_TMF_I_T_NEXUS_RESET: { | ||
197 | + BusChild *kid; | ||
198 | + int target = req->req.tmf.lun[1]; | ||
199 | + qatomic_inc(&s->resetting); | ||
200 | + | ||
201 | + rcu_read_lock(); | ||
202 | + QTAILQ_FOREACH_RCU(kid, &s->bus.qbus.children, sibling) { | ||
203 | + SCSIDevice *d1 = SCSI_DEVICE(kid->child); | ||
204 | + if (d1->channel == 0 && d1->id == target) { | ||
205 | + device_cold_reset(&d1->qdev); | ||
206 | + } | ||
207 | + } | ||
208 | + rcu_read_unlock(); | ||
209 | + | ||
210 | + qatomic_dec(&s->resetting); | ||
211 | + break; | ||
92 | + } | 212 | + } |
93 | + | 213 | + |
94 | + s->nb_compress_threads++; | 214 | case VIRTIO_SCSI_T_TMF_ABORT_TASK_SET: |
95 | + acb = thread_pool_submit_aio(pool, qcow2_compress_pool_func, &arg, | 215 | case VIRTIO_SCSI_T_TMF_CLEAR_TASK_SET: { |
96 | + qcow2_compress_complete, | 216 | g_autoptr(GHashTable) aio_contexts = g_hash_table_new(NULL, NULL); |
97 | + qemu_coroutine_self()); | 217 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_reset(VirtIODevice *vdev) |
98 | + | 218 | |
99 | + if (!acb) { | 219 | assert(!s->dataplane_started); |
100 | + s->nb_compress_threads--; | 220 | |
101 | + return -EINVAL; | 221 | - virtio_scsi_reset_tmf_bh(s); |
102 | + } | 222 | virtio_scsi_flush_defer_tmf_to_aio_context(s); |
103 | + qemu_coroutine_yield(); | 223 | |
104 | + s->nb_compress_threads--; | 224 | qatomic_inc(&s->resetting); |
105 | + qemu_co_queue_next(&s->compress_wait_queue); | 225 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_device_realize(DeviceState *dev, Error **errp) |
106 | + | 226 | VirtIOSCSI *s = VIRTIO_SCSI(dev); |
107 | + return arg.ret; | 227 | Error *err = NULL; |
108 | +} | 228 | |
109 | + | 229 | - QTAILQ_INIT(&s->tmf_bh_list); |
110 | /* XXX: put compressed sectors first, then all the cluster aligned | 230 | qemu_mutex_init(&s->ctrl_lock); |
111 | tables to avoid losing bytes in alignment */ | 231 | qemu_mutex_init(&s->event_lock); |
112 | static coroutine_fn int | 232 | - qemu_mutex_init(&s->tmf_bh_lock); |
113 | @@ -XXX,XX +XXX,XX @@ qcow2_co_pwritev_compressed(BlockDriverState *bs, uint64_t offset, | 233 | |
114 | 234 | virtio_scsi_common_realize(dev, | |
115 | out_buf = g_malloc(s->cluster_size); | 235 | virtio_scsi_handle_ctrl, |
116 | 236 | @@ -XXX,XX +XXX,XX @@ static void virtio_scsi_device_unrealize(DeviceState *dev) | |
117 | - out_len = qcow2_compress(out_buf, buf, s->cluster_size); | 237 | { |
118 | + out_len = qcow2_co_compress(bs, out_buf, buf, s->cluster_size); | 238 | VirtIOSCSI *s = VIRTIO_SCSI(dev); |
119 | if (out_len == -2) { | 239 | |
120 | ret = -EINVAL; | 240 | - virtio_scsi_reset_tmf_bh(s); |
121 | goto fail; | 241 | virtio_scsi_dataplane_cleanup(s); |
242 | qbus_set_hotplug_handler(BUS(&s->bus), NULL); | ||
243 | virtio_scsi_common_unrealize(dev); | ||
244 | - qemu_mutex_destroy(&s->tmf_bh_lock); | ||
245 | qemu_mutex_destroy(&s->event_lock); | ||
246 | qemu_mutex_destroy(&s->ctrl_lock); | ||
247 | } | ||
122 | -- | 248 | -- |
123 | 2.13.6 | 249 | 2.48.1 |
124 | |||
125 | diff view generated by jsdifflib |
New patch | |||
---|---|---|---|
1 | From: Stefan Hajnoczi <stefanha@redhat.com> | ||
1 | 2 | ||
3 | Peter Krempa and Kevin Wolf observed that iothread-vq-mapping is | ||
4 | confusing to use because the control and event virtqueues have a fixed | ||
5 | location before the command virtqueues but need to be treated | ||
6 | differently. | ||
7 | |||
8 | Only expose the command virtqueues via iothread-vq-mapping so that the | ||
9 | command-line parameter is intuitive: it controls where SCSI requests are | ||
10 | processed. | ||
11 | |||
12 | The control virtqueue needs to be hardcoded to the main loop thread for | ||
13 | technical reasons anyway. Kevin also pointed out that it's better to | ||
14 | place the event virtqueue in the main loop thread since its no poll | ||
15 | behavior would prevent polling if assigned to an IOThread. | ||
16 | |||
17 | This change is its own commit to avoid squashing the previous commit. | ||
18 | |||
19 | Suggested-by: Kevin Wolf <kwolf@redhat.com> | ||
20 | Suggested-by: Peter Krempa <pkrempa@redhat.com> | ||
21 | Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com> | ||
22 | Message-ID: <20250311132616.1049687-14-stefanha@redhat.com> | ||
23 | Signed-off-by: Kevin Wolf <kwolf@redhat.com> | ||
24 | --- | ||
25 | hw/scsi/virtio-scsi-dataplane.c | 33 ++++++++++++++++++++------------- | ||
26 | 1 file changed, 20 insertions(+), 13 deletions(-) | ||
27 | |||
28 | diff --git a/hw/scsi/virtio-scsi-dataplane.c b/hw/scsi/virtio-scsi-dataplane.c | ||
29 | index XXXXXXX..XXXXXXX 100644 | ||
30 | --- a/hw/scsi/virtio-scsi-dataplane.c | ||
31 | +++ b/hw/scsi/virtio-scsi-dataplane.c | ||
32 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_dataplane_setup(VirtIOSCSI *s, Error **errp) | ||
33 | VirtIODevice *vdev = VIRTIO_DEVICE(s); | ||
34 | BusState *qbus = qdev_get_parent_bus(DEVICE(vdev)); | ||
35 | VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus); | ||
36 | - uint16_t num_vqs = vs->conf.num_queues + VIRTIO_SCSI_VQ_NUM_FIXED; | ||
37 | |||
38 | if (vs->conf.iothread && vs->conf.iothread_vq_mapping_list) { | ||
39 | error_setg(errp, | ||
40 | @@ -XXX,XX +XXX,XX @@ void virtio_scsi_dataplane_setup(VirtIOSCSI *s, Error **errp) | ||
41 | } | ||
42 | } | ||
43 | |||
44 | - s->vq_aio_context = g_new(AioContext *, num_vqs); | ||
45 | + s->vq_aio_context = g_new(AioContext *, vs->conf.num_queues + | ||
46 | + VIRTIO_SCSI_VQ_NUM_FIXED); | ||
47 | + | ||
48 | + /* | ||
49 | + * Handle the ctrl virtqueue in the main loop thread where device resets | ||
50 | + * can be performed. | ||
51 | + */ | ||
52 | + s->vq_aio_context[0] = qemu_get_aio_context(); | ||
53 | + | ||
54 | + /* | ||
55 | + * Handle the event virtqueue in the main loop thread where its no_poll | ||
56 | + * behavior won't stop IOThread polling. | ||
57 | + */ | ||
58 | + s->vq_aio_context[1] = qemu_get_aio_context(); | ||
59 | |||
60 | if (vs->conf.iothread_vq_mapping_list) { | ||
61 | if (!iothread_vq_mapping_apply(vs->conf.iothread_vq_mapping_list, | ||
62 | - s->vq_aio_context, num_vqs, errp)) { | ||
63 | + &s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED], | ||
64 | + vs->conf.num_queues, errp)) { | ||
65 | g_free(s->vq_aio_context); | ||
66 | s->vq_aio_context = NULL; | ||
67 | return; | ||
68 | } | ||
69 | } else if (vs->conf.iothread) { | ||
70 | AioContext *ctx = iothread_get_aio_context(vs->conf.iothread); | ||
71 | - for (uint16_t i = 0; i < num_vqs; i++) { | ||
72 | - s->vq_aio_context[i] = ctx; | ||
73 | + for (uint16_t i = 0; i < vs->conf.num_queues; i++) { | ||
74 | + s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED + i] = ctx; | ||
75 | } | ||
76 | |||
77 | /* Released in virtio_scsi_dataplane_cleanup() */ | ||
78 | object_ref(OBJECT(vs->conf.iothread)); | ||
79 | } else { | ||
80 | AioContext *ctx = qemu_get_aio_context(); | ||
81 | - for (unsigned i = 0; i < num_vqs; i++) { | ||
82 | - s->vq_aio_context[i] = ctx; | ||
83 | + for (unsigned i = 0; i < vs->conf.num_queues; i++) { | ||
84 | + s->vq_aio_context[VIRTIO_SCSI_VQ_NUM_FIXED + i] = ctx; | ||
85 | } | ||
86 | } | ||
87 | - | ||
88 | - /* | ||
89 | - * Always handle the ctrl virtqueue in the main loop thread where device | ||
90 | - * resets can be performed. | ||
91 | - */ | ||
92 | - s->vq_aio_context[0] = qemu_get_aio_context(); | ||
93 | } | ||
94 | |||
95 | /* Context: BQL held */ | ||
96 | -- | ||
97 | 2.48.1 | diff view generated by jsdifflib |