mbox

[PULL,00/15] NBD patches through 2021-10-15

Message ID 20211015211011.1272011-1-eblake@redhat.com
State New
Headers show

Pull-request

https://repo.or.cz/qemu/ericb.git tags/pull-nbd-2021-10-15

Message

Eric Blake Oct. 15, 2021, 9:09 p.m. UTC
The following changes since commit 253e399bab7c83b3411f8eac01840283a9304cb3:

  Merge remote-tracking branch 'remotes/kwolf/tags/for-upstream' into staging (2021-10-15 12:08:54 -0700)

are available in the Git repository at:

  https://repo.or.cz/qemu/ericb.git tags/pull-nbd-2021-10-15

for you to fetch changes up to bec4042baefc1bfeae05b161aa17d2f57d526b60:

  block-backend: update blk_co_pwrite() and blk_co_pread() wrappers (2021-10-15 16:02:09 -0500)

[Still not included: Rich's patch for qemu-nbd --selinux-label]

----------------------------------------------------------------
nbd patches for 2021-10-15

- Vladimir Sementsov-Ogievskiy: Consistent use of 64-bit parameters in
  block operations
- Hanna Reitz: Silence 32-bit compiler warning

----------------------------------------------------------------
Hanna Reitz (1):
      qcow2: Silence clang -m32 compiler warning

Vladimir Sementsov-Ogievskiy (14):
      block-backend: blk_check_byte_request(): int64_t bytes
      block-backend: make blk_co_preadv() 64bit
      block-backend: convert blk_co_pwritev_part to int64_t bytes
      block-backend: convert blk_co_pdiscard to int64_t bytes
      block-backend: rename _do_ helper functions to _co_do_
      block-coroutine-wrapper.py: support BlockBackend first argument
      block-backend: drop blk_prw, use block-coroutine-wrapper
      block-backend: convert blk_foo wrappers to use int64_t bytes parameter
      block-backend: convert blk_co_copy_range to int64_t bytes
      block-backend: convert blk_aio_ functions to int64_t bytes paramter
      block-backend: blk_pread, blk_pwrite: rename count parameter to bytes
      block-backend: drop INT_MAX restriction from blk_check_byte_request()
      block-backend: fix blk_co_flush prototype to mention coroutine_fn
      block-backend: update blk_co_pwrite() and blk_co_pread() wrappers

 scripts/block-coroutine-wrapper.py |  12 +-
 block/coroutines.h                 |  33 ++++++
 include/sysemu/block-backend.h     |  33 +++---
 block/block-backend.c              | 237 ++++++++++++++++---------------------
 block/qcow2-cluster.c              |   3 +-
 block/trace-events                 |   4 +-
 6 files changed, 169 insertions(+), 153 deletions(-)

Comments

Richard Henderson Oct. 15, 2021, 10:49 p.m. UTC | #1
On 10/15/21 2:09 PM, Eric Blake wrote:
> The following changes since commit 253e399bab7c83b3411f8eac01840283a9304cb3:
> 
>    Merge remote-tracking branch 'remotes/kwolf/tags/for-upstream' into staging (2021-10-15 12:08:54 -0700)
> 
> are available in the Git repository at:
> 
>    https://repo.or.cz/qemu/ericb.git tags/pull-nbd-2021-10-15
> 
> for you to fetch changes up to bec4042baefc1bfeae05b161aa17d2f57d526b60:
> 
>    block-backend: update blk_co_pwrite() and blk_co_pread() wrappers (2021-10-15 16:02:09 -0500)
> 
> [Still not included: Rich's patch for qemu-nbd --selinux-label]
> 
> ----------------------------------------------------------------
> nbd patches for 2021-10-15
> 
> - Vladimir Sementsov-Ogievskiy: Consistent use of 64-bit parameters in
>    block operations
> - Hanna Reitz: Silence 32-bit compiler warning
> 
> ----------------------------------------------------------------
> Hanna Reitz (1):
>        qcow2: Silence clang -m32 compiler warning
> 
> Vladimir Sementsov-Ogievskiy (14):
>        block-backend: blk_check_byte_request(): int64_t bytes
>        block-backend: make blk_co_preadv() 64bit
>        block-backend: convert blk_co_pwritev_part to int64_t bytes
>        block-backend: convert blk_co_pdiscard to int64_t bytes
>        block-backend: rename _do_ helper functions to _co_do_
>        block-coroutine-wrapper.py: support BlockBackend first argument
>        block-backend: drop blk_prw, use block-coroutine-wrapper
>        block-backend: convert blk_foo wrappers to use int64_t bytes parameter
>        block-backend: convert blk_co_copy_range to int64_t bytes
>        block-backend: convert blk_aio_ functions to int64_t bytes paramter
>        block-backend: blk_pread, blk_pwrite: rename count parameter to bytes
>        block-backend: drop INT_MAX restriction from blk_check_byte_request()
>        block-backend: fix blk_co_flush prototype to mention coroutine_fn
>        block-backend: update blk_co_pwrite() and blk_co_pread() wrappers
> 
>   scripts/block-coroutine-wrapper.py |  12 +-
>   block/coroutines.h                 |  33 ++++++
>   include/sysemu/block-backend.h     |  33 +++---
>   block/block-backend.c              | 237 ++++++++++++++++---------------------
>   block/qcow2-cluster.c              |   3 +-
>   block/trace-events                 |   4 +-
>   6 files changed, 169 insertions(+), 153 deletions(-)

Applied, thanks.

r~