block/replication: drop extra synchronization
After commit f8d59dfb40
"block/backup: fix fleecing scheme: use serialized writes" fleecing
(specifically reading from backup target, when backup source is in
backing chain of backup target) is safe, because all backup-job writes
to target are serialized. Therefore we don't need additional
synchronization for these reads.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
This commit is contained in:
parent
95a156f689
commit
e4f9752c4a
@ -218,9 +218,6 @@ static coroutine_fn int replication_co_readv(BlockDriverState *bs,
|
||||
QEMUIOVector *qiov)
|
||||
{
|
||||
BDRVReplicationState *s = bs->opaque;
|
||||
BdrvChild *child = s->secondary_disk;
|
||||
BlockJob *job = NULL;
|
||||
CowRequest req;
|
||||
int ret;
|
||||
|
||||
if (s->mode == REPLICATION_MODE_PRIMARY) {
|
||||
@ -233,28 +230,9 @@ static coroutine_fn int replication_co_readv(BlockDriverState *bs,
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (child && child->bs) {
|
||||
job = child->bs->job;
|
||||
}
|
||||
|
||||
if (job) {
|
||||
uint64_t remaining_bytes = remaining_sectors * BDRV_SECTOR_SIZE;
|
||||
|
||||
backup_wait_for_overlapping_requests(child->bs->job,
|
||||
sector_num * BDRV_SECTOR_SIZE,
|
||||
remaining_bytes);
|
||||
backup_cow_request_begin(&req, child->bs->job,
|
||||
sector_num * BDRV_SECTOR_SIZE,
|
||||
remaining_bytes);
|
||||
ret = bdrv_co_preadv(bs->file, sector_num * BDRV_SECTOR_SIZE,
|
||||
remaining_bytes, qiov, 0);
|
||||
backup_cow_request_end(&req);
|
||||
goto out;
|
||||
}
|
||||
|
||||
ret = bdrv_co_preadv(bs->file, sector_num * BDRV_SECTOR_SIZE,
|
||||
remaining_sectors * BDRV_SECTOR_SIZE, qiov, 0);
|
||||
out:
|
||||
|
||||
return replication_return_value(s, ret);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user