[PATCHv3 0/2] qemu direct io alignment fix

Keith Busch posted 2 patches 1 year, 6 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220929200523.3218710-1-kbusch@meta.com
Maintainers: Kevin Wolf <kwolf@redhat.com>, Hanna Reitz <hreitz@redhat.com>, Stefan Hajnoczi <stefanha@redhat.com>, Fam Zheng <fam@euphon.net>
block/file-posix.c       | 22 ++++++++++++++++++++++
block/io.c               | 21 ---------------------
include/block/block-io.h |  1 -
3 files changed, 22 insertions(+), 22 deletions(-)
[PATCHv3 0/2] qemu direct io alignment fix
Posted by Keith Busch 1 year, 6 months ago
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(-)

-- 
2.30.2
Re: [PATCHv3 0/2] qemu direct io alignment fix
Posted by Kevin Wolf 1 year, 6 months ago
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