mbox series

[PATCHv3,0/2] qemu direct io alignment fix

Message ID 20220929200523.3218710-1-kbusch@meta.com (mailing list archive)
Headers show
Series qemu direct io alignment fix | expand

Message

Keith Busch Sept. 29, 2022, 8:05 p.m. UTC
From: Keith Busch <kbusch@kernel.org>

Changes from v2:

  Split the patch so that the function move is separate from the
  functional change. This makes it immediately obvious what criteria is
  changing. (Kevin Wolf)

  Added received Tested-by tag in the changelog. 

Keith Busch (2):
  block: move bdrv_qiov_is_aligned to file-posix
  block: use the request length for iov alignment

 block/file-posix.c       | 22 ++++++++++++++++++++++
 block/io.c               | 21 ---------------------
 include/block/block-io.h |  1 -
 3 files changed, 22 insertions(+), 22 deletions(-)

Comments

Kevin Wolf Sept. 30, 2022, 10:18 a.m. UTC | #1
Am 29.09.2022 um 22:05 hat Keith Busch geschrieben:
> From: Keith Busch <kbusch@kernel.org>
> 
> Changes from v2:
> 
>   Split the patch so that the function move is separate from the
>   functional change. This makes it immediately obvious what criteria is
>   changing. (Kevin Wolf)
> 
>   Added received Tested-by tag in the changelog. 
> 
> Keith Busch (2):
>   block: move bdrv_qiov_is_aligned to file-posix
>   block: use the request length for iov alignment

Thanks, applied to the block branch.

Kevin