]> git.proxmox.com Git - mirror_qemu.git/commit - block/block-backend.c
block-backend: convert blk_co_pwritev_part to int64_t bytes
authorVladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Wed, 6 Oct 2021 13:17:09 +0000 (15:17 +0200)
committerEric Blake <eblake@redhat.com>
Fri, 15 Oct 2021 20:47:18 +0000 (15:47 -0500)
commit34460feb63230daad12b0e0f31754f7ef5bc2be9
treea2d58ff1d8bdc2e522aa094e1981304a38e28321
parent9547907705c94fa0415427ce12be418f8b68b56d
block-backend: convert blk_co_pwritev_part to int64_t bytes

We convert blk_do_pwritev_part() and some wrappers:
blk_co_pwritev_part(), blk_co_pwritev(), blk_co_pwrite_zeroes().

All functions are converted so that the parameter type becomes wider, so
all callers should be OK with it.

Look at blk_do_pwritev_part() body:
bytes is passed to:

 - trace_blk_co_pwritev (we update it here)
 - blk_check_byte_request, throttle_group_co_io_limits_intercept,
   bdrv_co_pwritev_part - all already have int64_t argument.

Note that requests exceeding INT_MAX are still restricted by
blk_check_byte_request().

Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-Id: <20211006131718.214235-4-vsementsov@virtuozzo.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
[eblake: grammar tweaks]
Signed-off-by: Eric Blake <eblake@redhat.com>
block/block-backend.c
block/trace-events
include/sysemu/block-backend.h