]> git.proxmox.com Git - mirror_qemu.git/commit - block/block-backend.c
block: add max_hw_transfer to BlockLimits
authorPaolo Bonzini <pbonzini@redhat.com>
Thu, 3 Jun 2021 08:34:23 +0000 (10:34 +0200)
committerPaolo Bonzini <pbonzini@redhat.com>
Fri, 25 Jun 2021 08:54:13 +0000 (10:54 +0200)
commit24b36e9813ec15da7db62e3b3621730710c5f020
treea164db85c4e52bdda0190aaf5752168df6337795
parentb99f7fa08a3df8b8a6a907642e5851cdcf43fa9f
block: add max_hw_transfer to BlockLimits

For block host devices, I/O can happen through either the kernel file
descriptor I/O system calls (preadv/pwritev, io_submit, io_uring)
or the SCSI passthrough ioctl SG_IO.

In the latter case, the size of each transfer can be limited by the
HBA, while for file descriptor I/O the kernel is able to split and
merge I/O in smaller pieces as needed.  Applying the HBA limits to
file descriptor I/O results in more system calls and suboptimal
performance, so this patch splits the max_transfer limit in two:
max_transfer remains valid and is used in general, while max_hw_transfer
is limited to the maximum hardware size.  max_hw_transfer can then be
included by the scsi-generic driver in the block limits page, to ensure
that the stricter hardware limit is used.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
block/block-backend.c
block/file-posix.c
block/io.c
hw/scsi/scsi-generic.c
include/block/block_int.h
include/sysemu/block-backend.h