diff options
author | zhenwei pi <pizhenwei@bytedance.com> | 2018-11-05 11:04:56 +0800 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2018-11-12 17:46:57 +0100 |
commit | 63d5341f8553ff78ae99407ff8ad5a6648b95a30 (patch) | |
tree | ccd824123bd654a2d1ec9097373d9f463d20a016 | |
parent | db0754df88e3ca4797539c1edbde596d871b64b6 (diff) | |
download | qemu-63d5341f8553ff78ae99407ff8ad5a6648b95a30.zip qemu-63d5341f8553ff78ae99407ff8ad5a6648b95a30.tar.gz qemu-63d5341f8553ff78ae99407ff8ad5a6648b95a30.tar.bz2 |
blockdev: handle error on block latency histogram set error
Function block_latency_histogram_set may return error, but qapi ignore this.
This can be reproduced easily by qmp command:
virsh qemu-monitor-command INSTANCE '{"execute":"x-block-latency-histogram-set",
"arguments":{"device":"drive-virtio-disk1","boundaries":[10,200,40]}}'
In fact this command does not work, but we still get success result.
qmp_x_block_latency_histogram_set is a batch setting API, report error ASAP.
Signed-off-by: zhenwei pi <pizhenwei@bytedance.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
-rw-r--r-- | blockdev.c | 19 |
1 files changed, 16 insertions, 3 deletions
@@ -4413,6 +4413,7 @@ void qmp_x_block_latency_histogram_set( { BlockBackend *blk = blk_by_name(device); BlockAcctStats *stats; + int ret; if (!blk) { error_setg(errp, "Device '%s' not found", device); @@ -4428,21 +4429,33 @@ void qmp_x_block_latency_histogram_set( } if (has_boundaries || has_boundaries_read) { - block_latency_histogram_set( + ret = block_latency_histogram_set( stats, BLOCK_ACCT_READ, has_boundaries_read ? boundaries_read : boundaries); + if (ret) { + error_setg(errp, "Device '%s' set read boundaries fail", device); + return; + } } if (has_boundaries || has_boundaries_write) { - block_latency_histogram_set( + ret = block_latency_histogram_set( stats, BLOCK_ACCT_WRITE, has_boundaries_write ? boundaries_write : boundaries); + if (ret) { + error_setg(errp, "Device '%s' set write boundaries fail", device); + return; + } } if (has_boundaries || has_boundaries_flush) { - block_latency_histogram_set( + ret = block_latency_histogram_set( stats, BLOCK_ACCT_FLUSH, has_boundaries_flush ? boundaries_flush : boundaries); + if (ret) { + error_setg(errp, "Device '%s' set flush boundaries fail", device); + return; + } } } |