diff options
author | Lin Ma <lma@suse.com> | 2021-09-13 17:06:59 +0800 |
---|---|---|
committer | wanchao-xu <wanchao.xu@samsung.com> | 2024-01-09 19:57:13 +0800 |
commit | 9de9b4521d3d4ef6fc1178e1910465c091214118 (patch) | |
tree | a24922e222df738e1b8595dc6e31c9a7d47adcad | |
parent | 98fe46fd23c27298aca8c5cb17a6c9ee5d6f4df0 (diff) | |
download | qemu-arm-static-9de9b4521d3d4ef6fc1178e1910465c091214118.tar.gz qemu-arm-static-9de9b4521d3d4ef6fc1178e1910465c091214118.tar.bz2 qemu-arm-static-9de9b4521d3d4ef6fc1178e1910465c091214118.zip |
scsi-generic: pass max_segments via max_iov field in BlockLimits
Git-commit: 01ef8185b809af9d287e1a03a3f9d8ea8231118a
References: bsc#1190425
I/O to a disk via read/write is not limited by the number of segments allowed
by the host adapter; the kernel can split requests if needed, and the limit
imposed by the host adapter can be very low (256k or so) to avoid that SG_IO
returns EINVAL if memory is heavily fragmented.
Since this value is only interesting for SG_IO-based I/O, do not include
it in the max_transfer and only take it into account when patching the
block limits VPD page in the scsi-generic device.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Lin Ma <lma@suse.com>
-rw-r--r-- | block/file-posix.c | 3 | ||||
-rw-r--r-- | hw/scsi/scsi-generic.c | 6 |
2 files changed, 5 insertions, 4 deletions
diff --git a/block/file-posix.c b/block/file-posix.c index e3cf5a160..c0e8a60d5 100644 --- a/block/file-posix.c +++ b/block/file-posix.c @@ -1147,8 +1147,7 @@ static void raw_refresh_limits(BlockDriverState *bs, Error **errp) ret = sg_get_max_segments(s->fd); if (ret > 0) { - bs->bl.max_transfer = MIN(bs->bl.max_transfer, - ret * qemu_real_host_page_size); + bs->bl.max_iov = ret; } } diff --git a/hw/scsi/scsi-generic.c b/hw/scsi/scsi-generic.c index 2379ca9e9..a135d7087 100644 --- a/hw/scsi/scsi-generic.c +++ b/hw/scsi/scsi-generic.c @@ -172,10 +172,12 @@ static void scsi_handle_inquiry_reply(SCSIGenericReq *r, SCSIDevice *s) if (s->type == TYPE_DISK && (r->req.cmd.buf[1] & 0x01)) { page = r->req.cmd.buf[2]; if (page == 0xb0) { - uint32_t max_transfer = - blk_get_max_transfer(s->conf.blk) / s->blocksize; + uint32_t max_transfer = blk_get_max_transfer(s->conf.blk); + uint32_t max_iov = blk_get_max_iov(s->conf.blk); assert(max_transfer); + max_transfer = MIN_NON_ZERO(max_transfer, max_iov * qemu_real_host_page_size) + / s->blocksize; stl_be_p(&r->buf[8], max_transfer); /* Also take care of the opt xfer len. */ stl_be_p(&r->buf[12], |