mirror of
https://github.com/qemu/qemu.git
synced 2025-08-12 08:59:57 +00:00
block: Introduce bdrv_aligned_pwritev()
This separates the part of bdrv_co_do_writev() that needs to happen before the request is modified to match the backend alignment, and a part that needs to be executed afterwards and passes the request to the BlockDriver. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: Benoit Canet <benoit@irqsave.net>
This commit is contained in:
parent
1b0288ae7f
commit
b404f72036
62
block.c
62
block.c
@ -3144,34 +3144,20 @@ static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Handle a write request in coroutine context
|
* Forwards an already correctly aligned write request to the BlockDriver.
|
||||||
*/
|
*/
|
||||||
static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
|
static int coroutine_fn bdrv_aligned_pwritev(BlockDriverState *bs,
|
||||||
int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
|
int64_t offset, unsigned int bytes, QEMUIOVector *qiov, int flags)
|
||||||
BdrvRequestFlags flags)
|
|
||||||
{
|
{
|
||||||
BlockDriver *drv = bs->drv;
|
BlockDriver *drv = bs->drv;
|
||||||
BdrvTrackedRequest req;
|
BdrvTrackedRequest req;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (!bs->drv) {
|
int64_t sector_num = offset >> BDRV_SECTOR_BITS;
|
||||||
return -ENOMEDIUM;
|
unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
|
||||||
}
|
|
||||||
if (bs->read_only) {
|
|
||||||
return -EACCES;
|
|
||||||
}
|
|
||||||
if (bdrv_check_request(bs, sector_num, nb_sectors)) {
|
|
||||||
return -EIO;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (bs->copy_on_read_in_flight) {
|
assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
|
||||||
wait_for_overlapping_requests(bs, sector_num, nb_sectors);
|
assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
|
||||||
}
|
|
||||||
|
|
||||||
/* throttling disk I/O */
|
|
||||||
if (bs->io_limits_enabled) {
|
|
||||||
bdrv_io_limits_intercept(bs, nb_sectors, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
tracked_request_begin(&req, bs, sector_num, nb_sectors, true);
|
tracked_request_begin(&req, bs, sector_num, nb_sectors, true);
|
||||||
|
|
||||||
@ -3203,6 +3189,40 @@ static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
|
|||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Handle a write request in coroutine context
|
||||||
|
*/
|
||||||
|
static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
|
||||||
|
int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
|
||||||
|
BdrvRequestFlags flags)
|
||||||
|
{
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
if (!bs->drv) {
|
||||||
|
return -ENOMEDIUM;
|
||||||
|
}
|
||||||
|
if (bs->read_only) {
|
||||||
|
return -EACCES;
|
||||||
|
}
|
||||||
|
if (bdrv_check_request(bs, sector_num, nb_sectors)) {
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (bs->copy_on_read_in_flight) {
|
||||||
|
wait_for_overlapping_requests(bs, sector_num, nb_sectors);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* throttling disk I/O */
|
||||||
|
if (bs->io_limits_enabled) {
|
||||||
|
bdrv_io_limits_intercept(bs, nb_sectors, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = bdrv_aligned_pwritev(bs, sector_num << BDRV_SECTOR_BITS,
|
||||||
|
nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
|
int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
|
||||||
int nb_sectors, QEMUIOVector *qiov)
|
int nb_sectors, QEMUIOVector *qiov)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user