2019-09-20 17:20:48 +03:00
|
|
|
|
/*
|
|
|
|
|
* block_copy API
|
|
|
|
|
*
|
|
|
|
|
* Copyright (C) 2013 Proxmox Server Solutions
|
|
|
|
|
* Copyright (c) 2019 Virtuozzo International GmbH.
|
|
|
|
|
*
|
|
|
|
|
* Authors:
|
|
|
|
|
* Dietmar Maurer (dietmar@proxmox.com)
|
|
|
|
|
* Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
|
|
|
|
|
*
|
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
|
|
|
* See the COPYING file in the top-level directory.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "qemu/osdep.h"
|
|
|
|
|
|
|
|
|
|
#include "trace.h"
|
|
|
|
|
#include "qapi/error.h"
|
|
|
|
|
#include "block/block-copy.h"
|
|
|
|
|
#include "sysemu/block-backend.h"
|
2019-10-22 14:18:01 +03:00
|
|
|
|
#include "qemu/units.h"
|
|
|
|
|
|
|
|
|
|
#define BLOCK_COPY_MAX_COPY_RANGE (16 * MiB)
|
2019-10-22 14:18:05 +03:00
|
|
|
|
#define BLOCK_COPY_MAX_BUFFER (1 * MiB)
|
2019-10-22 14:18:04 +03:00
|
|
|
|
#define BLOCK_COPY_MAX_MEM (128 * MiB)
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:04 +03:00
|
|
|
|
typedef struct BlockCopyInFlightReq {
|
|
|
|
|
int64_t offset;
|
|
|
|
|
int64_t bytes;
|
|
|
|
|
QLIST_ENTRY(BlockCopyInFlightReq) list;
|
|
|
|
|
CoQueue wait_queue; /* coroutines blocked on this request */
|
|
|
|
|
} BlockCopyInFlightReq;
|
|
|
|
|
|
|
|
|
|
typedef struct BlockCopyState {
|
|
|
|
|
/*
|
|
|
|
|
* BdrvChild objects are not owned or managed by block-copy. They are
|
|
|
|
|
* provided by block-copy user and user is responsible for appropriate
|
|
|
|
|
* permissions on these children.
|
|
|
|
|
*/
|
|
|
|
|
BdrvChild *source;
|
|
|
|
|
BdrvChild *target;
|
|
|
|
|
BdrvDirtyBitmap *copy_bitmap;
|
|
|
|
|
int64_t in_flight_bytes;
|
|
|
|
|
int64_t cluster_size;
|
|
|
|
|
bool use_copy_range;
|
|
|
|
|
int64_t copy_size;
|
|
|
|
|
uint64_t len;
|
|
|
|
|
QLIST_HEAD(, BlockCopyInFlightReq) inflight_reqs;
|
|
|
|
|
|
|
|
|
|
BdrvRequestFlags write_flags;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* skip_unallocated:
|
|
|
|
|
*
|
|
|
|
|
* Used by sync=top jobs, which first scan the source node for unallocated
|
|
|
|
|
* areas and clear them in the copy_bitmap. During this process, the bitmap
|
|
|
|
|
* is thus not fully initialized: It may still have bits set for areas that
|
|
|
|
|
* are unallocated and should actually not be copied.
|
|
|
|
|
*
|
|
|
|
|
* This is indicated by skip_unallocated.
|
|
|
|
|
*
|
|
|
|
|
* In this case, block_copy() will query the source’s allocation status,
|
|
|
|
|
* skip unallocated regions, clear them in the copy_bitmap, and invoke
|
|
|
|
|
* block_copy_reset_unallocated() every time it does.
|
|
|
|
|
*/
|
|
|
|
|
bool skip_unallocated;
|
|
|
|
|
|
|
|
|
|
ProgressMeter *progress;
|
|
|
|
|
/* progress_bytes_callback: called when some copying progress is done. */
|
|
|
|
|
ProgressBytesCallbackFunc progress_bytes_callback;
|
|
|
|
|
void *progress_opaque;
|
|
|
|
|
|
|
|
|
|
SharedResource *mem;
|
|
|
|
|
} BlockCopyState;
|
|
|
|
|
|
2020-03-11 13:30:00 +03:00
|
|
|
|
static BlockCopyInFlightReq *find_conflicting_inflight_req(BlockCopyState *s,
|
2020-03-11 13:30:02 +03:00
|
|
|
|
int64_t offset,
|
2020-03-11 13:30:01 +03:00
|
|
|
|
int64_t bytes)
|
2020-03-11 13:30:00 +03:00
|
|
|
|
{
|
|
|
|
|
BlockCopyInFlightReq *req;
|
|
|
|
|
|
|
|
|
|
QLIST_FOREACH(req, &s->inflight_reqs, list) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
if (offset + bytes > req->offset && offset < req->offset + req->bytes) {
|
2020-03-11 13:30:00 +03:00
|
|
|
|
return req;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:03 +03:00
|
|
|
|
/*
|
|
|
|
|
* If there are no intersecting requests return false. Otherwise, wait for the
|
|
|
|
|
* first found intersecting request to finish and return true.
|
|
|
|
|
*/
|
|
|
|
|
static bool coroutine_fn block_copy_wait_one(BlockCopyState *s, int64_t offset,
|
|
|
|
|
int64_t bytes)
|
2019-10-01 16:14:05 +03:00
|
|
|
|
{
|
2020-03-11 13:30:03 +03:00
|
|
|
|
BlockCopyInFlightReq *req = find_conflicting_inflight_req(s, offset, bytes);
|
2020-03-11 13:30:00 +03:00
|
|
|
|
|
2020-03-11 13:30:03 +03:00
|
|
|
|
if (!req) {
|
|
|
|
|
return false;
|
2020-03-11 13:30:00 +03:00
|
|
|
|
}
|
2020-03-11 13:30:03 +03:00
|
|
|
|
|
|
|
|
|
qemu_co_queue_wait(&req->wait_queue, NULL);
|
|
|
|
|
|
|
|
|
|
return true;
|
2019-10-01 16:14:05 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:03 +03:00
|
|
|
|
/* Called only on full-dirty region */
|
2019-10-01 16:14:05 +03:00
|
|
|
|
static void block_copy_inflight_req_begin(BlockCopyState *s,
|
|
|
|
|
BlockCopyInFlightReq *req,
|
2020-03-11 13:30:02 +03:00
|
|
|
|
int64_t offset, int64_t bytes)
|
2019-10-01 16:14:05 +03:00
|
|
|
|
{
|
2020-03-11 13:30:03 +03:00
|
|
|
|
assert(!find_conflicting_inflight_req(s, offset, bytes));
|
|
|
|
|
|
|
|
|
|
bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, bytes);
|
|
|
|
|
s->in_flight_bytes += bytes;
|
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
req->offset = offset;
|
2020-03-11 13:30:01 +03:00
|
|
|
|
req->bytes = bytes;
|
2019-10-01 16:14:05 +03:00
|
|
|
|
qemu_co_queue_init(&req->wait_queue);
|
|
|
|
|
QLIST_INSERT_HEAD(&s->inflight_reqs, req, list);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:03 +03:00
|
|
|
|
/*
|
|
|
|
|
* block_copy_inflight_req_shrink
|
|
|
|
|
*
|
|
|
|
|
* Drop the tail of the request to be handled later. Set dirty bits back and
|
|
|
|
|
* wake up all requests waiting for us (may be some of them are not intersecting
|
|
|
|
|
* with shrunk request)
|
|
|
|
|
*/
|
|
|
|
|
static void coroutine_fn block_copy_inflight_req_shrink(BlockCopyState *s,
|
|
|
|
|
BlockCopyInFlightReq *req, int64_t new_bytes)
|
2019-10-01 16:14:05 +03:00
|
|
|
|
{
|
2020-03-11 13:30:03 +03:00
|
|
|
|
if (new_bytes == req->bytes) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(new_bytes > 0 && new_bytes < req->bytes);
|
|
|
|
|
|
|
|
|
|
s->in_flight_bytes -= req->bytes - new_bytes;
|
|
|
|
|
bdrv_set_dirty_bitmap(s->copy_bitmap,
|
|
|
|
|
req->offset + new_bytes, req->bytes - new_bytes);
|
|
|
|
|
|
|
|
|
|
req->bytes = new_bytes;
|
|
|
|
|
qemu_co_queue_restart_all(&req->wait_queue);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void coroutine_fn block_copy_inflight_req_end(BlockCopyState *s,
|
|
|
|
|
BlockCopyInFlightReq *req,
|
|
|
|
|
int ret)
|
|
|
|
|
{
|
|
|
|
|
s->in_flight_bytes -= req->bytes;
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
bdrv_set_dirty_bitmap(s->copy_bitmap, req->offset, req->bytes);
|
|
|
|
|
}
|
2019-10-01 16:14:05 +03:00
|
|
|
|
QLIST_REMOVE(req, list);
|
|
|
|
|
qemu_co_queue_restart_all(&req->wait_queue);
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 17:20:48 +03:00
|
|
|
|
void block_copy_state_free(BlockCopyState *s)
|
|
|
|
|
{
|
|
|
|
|
if (!s) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-16 17:19:09 +03:00
|
|
|
|
bdrv_release_dirty_bitmap(s->copy_bitmap);
|
2019-10-22 14:18:04 +03:00
|
|
|
|
shres_destroy(s->mem);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
g_free(s);
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:29:58 +03:00
|
|
|
|
static uint32_t block_copy_max_transfer(BdrvChild *source, BdrvChild *target)
|
|
|
|
|
{
|
|
|
|
|
return MIN_NON_ZERO(INT_MAX,
|
|
|
|
|
MIN_NON_ZERO(source->bs->bl.max_transfer,
|
|
|
|
|
target->bs->bl.max_transfer));
|
|
|
|
|
}
|
|
|
|
|
|
block/backup: use backup-top instead of write notifiers
Drop write notifiers and use filter node instead.
= Changes =
1. Add filter-node-name argument for backup qmp api. We have to do it
in this commit, as 257 needs to be fixed.
2. There are no more write notifiers here, so is_write_notifier
parameter is dropped from block-copy paths.
3. To sync with in-flight requests at job finish we now have drained
removing of the filter, we don't need rw-lock.
4. Block-copy is now using BdrvChildren instead of BlockBackends
5. As backup-top owns these children, we also move block-copy state
into backup-top's ownership.
= Iotest changes =
56: op-blocker doesn't shoot now, as we set it on source, but then
check on filter, when trying to start second backup.
To keep the test we instead can catch another collision: both jobs will
get 'drive0' job-id, as job-id parameter is unspecified. To prevent
interleaving with file-posix locks (as they are dependent on config)
let's use another target for second backup.
Also, it's obvious now that we'd like to drop this op-blocker at all
and add a test-case for two backups from one node (to different
destinations) actually works. But not in these series.
141: Output changed: prepatch, "Node is in use" comes from bdrv_has_blk
check inside qmp_blockdev_del. But we've dropped block-copy blk
objects, so no more blk objects on source bs (job blk is on backup-top
filter bs). New message is from op-blocker, which is the next check in
qmp_blockdev_add.
257: The test wants to emulate guest write during backup. They should
go to filter node, not to original source node, of course. Therefore we
need to specify filter node name and use it.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20191001131409.14202-6-vsementsov@virtuozzo.com
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2019-10-01 16:14:09 +03:00
|
|
|
|
BlockCopyState *block_copy_state_new(BdrvChild *source, BdrvChild *target,
|
2019-10-01 16:14:07 +03:00
|
|
|
|
int64_t cluster_size,
|
|
|
|
|
BdrvRequestFlags write_flags, Error **errp)
|
2019-09-20 17:20:48 +03:00
|
|
|
|
{
|
|
|
|
|
BlockCopyState *s;
|
|
|
|
|
BdrvDirtyBitmap *copy_bitmap;
|
|
|
|
|
|
block/backup: use backup-top instead of write notifiers
Drop write notifiers and use filter node instead.
= Changes =
1. Add filter-node-name argument for backup qmp api. We have to do it
in this commit, as 257 needs to be fixed.
2. There are no more write notifiers here, so is_write_notifier
parameter is dropped from block-copy paths.
3. To sync with in-flight requests at job finish we now have drained
removing of the filter, we don't need rw-lock.
4. Block-copy is now using BdrvChildren instead of BlockBackends
5. As backup-top owns these children, we also move block-copy state
into backup-top's ownership.
= Iotest changes =
56: op-blocker doesn't shoot now, as we set it on source, but then
check on filter, when trying to start second backup.
To keep the test we instead can catch another collision: both jobs will
get 'drive0' job-id, as job-id parameter is unspecified. To prevent
interleaving with file-posix locks (as they are dependent on config)
let's use another target for second backup.
Also, it's obvious now that we'd like to drop this op-blocker at all
and add a test-case for two backups from one node (to different
destinations) actually works. But not in these series.
141: Output changed: prepatch, "Node is in use" comes from bdrv_has_blk
check inside qmp_blockdev_del. But we've dropped block-copy blk
objects, so no more blk objects on source bs (job blk is on backup-top
filter bs). New message is from op-blocker, which is the next check in
qmp_blockdev_add.
257: The test wants to emulate guest write during backup. They should
go to filter node, not to original source node, of course. Therefore we
need to specify filter node name and use it.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20191001131409.14202-6-vsementsov@virtuozzo.com
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2019-10-01 16:14:09 +03:00
|
|
|
|
copy_bitmap = bdrv_create_dirty_bitmap(source->bs, cluster_size, NULL,
|
|
|
|
|
errp);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
if (!copy_bitmap) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
bdrv_disable_dirty_bitmap(copy_bitmap);
|
|
|
|
|
|
|
|
|
|
s = g_new(BlockCopyState, 1);
|
|
|
|
|
*s = (BlockCopyState) {
|
block/backup: use backup-top instead of write notifiers
Drop write notifiers and use filter node instead.
= Changes =
1. Add filter-node-name argument for backup qmp api. We have to do it
in this commit, as 257 needs to be fixed.
2. There are no more write notifiers here, so is_write_notifier
parameter is dropped from block-copy paths.
3. To sync with in-flight requests at job finish we now have drained
removing of the filter, we don't need rw-lock.
4. Block-copy is now using BdrvChildren instead of BlockBackends
5. As backup-top owns these children, we also move block-copy state
into backup-top's ownership.
= Iotest changes =
56: op-blocker doesn't shoot now, as we set it on source, but then
check on filter, when trying to start second backup.
To keep the test we instead can catch another collision: both jobs will
get 'drive0' job-id, as job-id parameter is unspecified. To prevent
interleaving with file-posix locks (as they are dependent on config)
let's use another target for second backup.
Also, it's obvious now that we'd like to drop this op-blocker at all
and add a test-case for two backups from one node (to different
destinations) actually works. But not in these series.
141: Output changed: prepatch, "Node is in use" comes from bdrv_has_blk
check inside qmp_blockdev_del. But we've dropped block-copy blk
objects, so no more blk objects on source bs (job blk is on backup-top
filter bs). New message is from op-blocker, which is the next check in
qmp_blockdev_add.
257: The test wants to emulate guest write during backup. They should
go to filter node, not to original source node, of course. Therefore we
need to specify filter node name and use it.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20191001131409.14202-6-vsementsov@virtuozzo.com
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2019-10-01 16:14:09 +03:00
|
|
|
|
.source = source,
|
|
|
|
|
.target = target,
|
2019-09-20 17:20:48 +03:00
|
|
|
|
.copy_bitmap = copy_bitmap,
|
|
|
|
|
.cluster_size = cluster_size,
|
|
|
|
|
.len = bdrv_dirty_bitmap_size(copy_bitmap),
|
|
|
|
|
.write_flags = write_flags,
|
2019-10-22 14:18:04 +03:00
|
|
|
|
.mem = shres_create(BLOCK_COPY_MAX_MEM),
|
2019-09-20 17:20:48 +03:00
|
|
|
|
};
|
|
|
|
|
|
2020-03-11 13:29:58 +03:00
|
|
|
|
if (block_copy_max_transfer(source, target) < cluster_size) {
|
2019-10-22 14:18:05 +03:00
|
|
|
|
/*
|
|
|
|
|
* copy_range does not respect max_transfer. We don't want to bother
|
|
|
|
|
* with requests smaller than block-copy cluster size, so fallback to
|
|
|
|
|
* buffered copying (read and write respect max_transfer on their
|
|
|
|
|
* behalf).
|
|
|
|
|
*/
|
|
|
|
|
s->use_copy_range = false;
|
|
|
|
|
s->copy_size = cluster_size;
|
|
|
|
|
} else if (write_flags & BDRV_REQ_WRITE_COMPRESSED) {
|
2019-10-29 18:09:34 +03:00
|
|
|
|
/* Compression supports only cluster-size writes and no copy-range. */
|
2019-10-22 14:18:05 +03:00
|
|
|
|
s->use_copy_range = false;
|
2019-10-29 18:09:34 +03:00
|
|
|
|
s->copy_size = cluster_size;
|
2019-10-22 14:18:05 +03:00
|
|
|
|
} else {
|
|
|
|
|
/*
|
2020-03-11 13:29:58 +03:00
|
|
|
|
* We enable copy-range, but keep small copy_size, until first
|
|
|
|
|
* successful copy_range (look at block_copy_do_copy).
|
2019-10-22 14:18:05 +03:00
|
|
|
|
*/
|
|
|
|
|
s->use_copy_range = true;
|
2020-03-11 13:29:58 +03:00
|
|
|
|
s->copy_size = MAX(s->cluster_size, BLOCK_COPY_MAX_BUFFER);
|
2019-10-22 14:18:05 +03:00
|
|
|
|
}
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2019-10-01 16:14:05 +03:00
|
|
|
|
QLIST_INIT(&s->inflight_reqs);
|
|
|
|
|
|
2019-09-20 17:20:48 +03:00
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
|
block/block-copy: fix progress calculation
Assume we have two regions, A and B, and region B is in-flight now,
region A is not yet touched, but it is unallocated and should be
skipped.
Correspondingly, as progress we have
total = A + B
current = 0
If we reset unallocated region A and call progress_reset_callback,
it will calculate 0 bytes dirty in the bitmap and call
job_progress_set_remaining, which will set
total = current + 0 = 0 + 0 = 0
So, B bytes are actually removed from total accounting. When job
finishes we'll have
total = 0
current = B
, which doesn't sound good.
This is because we didn't considered in-flight bytes, actually when
calculating remaining, we should have set (in_flight + dirty_bytes)
as remaining, not only dirty_bytes.
To fix it, let's refactor progress calculation, moving it to block-copy
itself instead of fixing callback. And, of course, track in_flight
bytes count.
We still have to keep one callback, to maintain backup job bytes_read
calculation, but it will go on soon, when we turn the whole backup
process into one block_copy call.
Cc: qemu-stable@nongnu.org
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
Message-Id: <20200311103004.7649-3-vsementsov@virtuozzo.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2020-03-11 13:29:57 +03:00
|
|
|
|
void block_copy_set_progress_callback(
|
2019-10-01 16:14:07 +03:00
|
|
|
|
BlockCopyState *s,
|
|
|
|
|
ProgressBytesCallbackFunc progress_bytes_callback,
|
|
|
|
|
void *progress_opaque)
|
|
|
|
|
{
|
|
|
|
|
s->progress_bytes_callback = progress_bytes_callback;
|
|
|
|
|
s->progress_opaque = progress_opaque;
|
|
|
|
|
}
|
|
|
|
|
|
block/block-copy: fix progress calculation
Assume we have two regions, A and B, and region B is in-flight now,
region A is not yet touched, but it is unallocated and should be
skipped.
Correspondingly, as progress we have
total = A + B
current = 0
If we reset unallocated region A and call progress_reset_callback,
it will calculate 0 bytes dirty in the bitmap and call
job_progress_set_remaining, which will set
total = current + 0 = 0 + 0 = 0
So, B bytes are actually removed from total accounting. When job
finishes we'll have
total = 0
current = B
, which doesn't sound good.
This is because we didn't considered in-flight bytes, actually when
calculating remaining, we should have set (in_flight + dirty_bytes)
as remaining, not only dirty_bytes.
To fix it, let's refactor progress calculation, moving it to block-copy
itself instead of fixing callback. And, of course, track in_flight
bytes count.
We still have to keep one callback, to maintain backup job bytes_read
calculation, but it will go on soon, when we turn the whole backup
process into one block_copy call.
Cc: qemu-stable@nongnu.org
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
Message-Id: <20200311103004.7649-3-vsementsov@virtuozzo.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2020-03-11 13:29:57 +03:00
|
|
|
|
void block_copy_set_progress_meter(BlockCopyState *s, ProgressMeter *pm)
|
|
|
|
|
{
|
|
|
|
|
s->progress = pm;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 17:20:48 +03:00
|
|
|
|
/*
|
2019-10-22 14:18:02 +03:00
|
|
|
|
* block_copy_do_copy
|
|
|
|
|
*
|
2020-03-11 13:30:01 +03:00
|
|
|
|
* Do copy of cluster-aligned chunk. Requested region is allowed to exceed
|
|
|
|
|
* s->len only to cover last cluster when s->len is not aligned to clusters.
|
2019-10-22 14:18:02 +03:00
|
|
|
|
*
|
|
|
|
|
* No sync here: nor bitmap neighter intersecting requests handling, only copy.
|
|
|
|
|
*
|
|
|
|
|
* Returns 0 on success.
|
2019-09-20 17:20:48 +03:00
|
|
|
|
*/
|
2019-10-22 14:18:02 +03:00
|
|
|
|
static int coroutine_fn block_copy_do_copy(BlockCopyState *s,
|
2020-03-11 13:30:02 +03:00
|
|
|
|
int64_t offset, int64_t bytes,
|
2020-03-11 13:29:59 +03:00
|
|
|
|
bool zeroes, bool *error_is_read)
|
2019-09-20 17:20:48 +03:00
|
|
|
|
{
|
|
|
|
|
int ret;
|
2020-03-11 13:30:02 +03:00
|
|
|
|
int64_t nbytes = MIN(offset + bytes, s->len) - offset;
|
2019-10-22 14:18:02 +03:00
|
|
|
|
void *bounce_buffer = NULL;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
assert(offset >= 0 && bytes > 0 && INT64_MAX - offset >= bytes);
|
|
|
|
|
assert(QEMU_IS_ALIGNED(offset, s->cluster_size));
|
2020-03-11 13:30:01 +03:00
|
|
|
|
assert(QEMU_IS_ALIGNED(bytes, s->cluster_size));
|
2020-03-11 13:30:02 +03:00
|
|
|
|
assert(offset < s->len);
|
|
|
|
|
assert(offset + bytes <= s->len ||
|
|
|
|
|
offset + bytes == QEMU_ALIGN_UP(s->len, s->cluster_size));
|
2020-03-11 13:30:01 +03:00
|
|
|
|
assert(nbytes < INT_MAX);
|
2019-10-22 14:18:02 +03:00
|
|
|
|
|
2020-03-11 13:29:59 +03:00
|
|
|
|
if (zeroes) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
ret = bdrv_co_pwrite_zeroes(s->target, offset, nbytes, s->write_flags &
|
2020-03-11 13:29:59 +03:00
|
|
|
|
~BDRV_REQ_WRITE_COMPRESSED);
|
|
|
|
|
if (ret < 0) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
trace_block_copy_write_zeroes_fail(s, offset, ret);
|
2020-03-11 13:29:59 +03:00
|
|
|
|
if (error_is_read) {
|
|
|
|
|
*error_is_read = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-22 14:18:02 +03:00
|
|
|
|
if (s->use_copy_range) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
ret = bdrv_co_copy_range(s->source, offset, s->target, offset, nbytes,
|
2019-10-22 14:18:02 +03:00
|
|
|
|
0, s->write_flags);
|
|
|
|
|
if (ret < 0) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
trace_block_copy_copy_range_fail(s, offset, ret);
|
2019-10-22 14:18:02 +03:00
|
|
|
|
s->use_copy_range = false;
|
2019-10-22 14:18:05 +03:00
|
|
|
|
s->copy_size = MAX(s->cluster_size, BLOCK_COPY_MAX_BUFFER);
|
2019-10-22 14:18:02 +03:00
|
|
|
|
/* Fallback to read+write with allocated buffer */
|
|
|
|
|
} else {
|
2020-03-11 13:29:58 +03:00
|
|
|
|
if (s->use_copy_range) {
|
|
|
|
|
/*
|
|
|
|
|
* Successful copy-range. Now increase copy_size. copy_range
|
|
|
|
|
* does not respect max_transfer (it's a TODO), so we factor
|
|
|
|
|
* that in here.
|
|
|
|
|
*
|
|
|
|
|
* Note: we double-check s->use_copy_range for the case when
|
|
|
|
|
* parallel block-copy request unsets it during previous
|
|
|
|
|
* bdrv_co_copy_range call.
|
|
|
|
|
*/
|
|
|
|
|
s->copy_size =
|
|
|
|
|
MIN(MAX(s->cluster_size, BLOCK_COPY_MAX_COPY_RANGE),
|
|
|
|
|
QEMU_ALIGN_DOWN(block_copy_max_transfer(s->source,
|
|
|
|
|
s->target),
|
|
|
|
|
s->cluster_size));
|
|
|
|
|
}
|
2019-10-22 14:18:02 +03:00
|
|
|
|
goto out;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-22 14:18:05 +03:00
|
|
|
|
/*
|
|
|
|
|
* In case of failed copy_range request above, we may proceed with buffered
|
|
|
|
|
* request larger than BLOCK_COPY_MAX_BUFFER. Still, further requests will
|
2020-03-11 13:29:58 +03:00
|
|
|
|
* be properly limited, so don't care too much. Moreover the most likely
|
|
|
|
|
* case (copy_range is unsupported for the configuration, so the very first
|
|
|
|
|
* copy_range request fails) is handled by setting large copy_size only
|
|
|
|
|
* after first successful copy_range.
|
2019-10-22 14:18:05 +03:00
|
|
|
|
*/
|
|
|
|
|
|
2019-10-22 14:18:02 +03:00
|
|
|
|
bounce_buffer = qemu_blockalign(s->source->bs, nbytes);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
ret = bdrv_co_pread(s->source, offset, nbytes, bounce_buffer, 0);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
if (ret < 0) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
trace_block_copy_read_fail(s, offset, ret);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
if (error_is_read) {
|
|
|
|
|
*error_is_read = true;
|
|
|
|
|
}
|
2019-10-22 14:18:02 +03:00
|
|
|
|
goto out;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
ret = bdrv_co_pwrite(s->target, offset, nbytes, bounce_buffer,
|
block/backup: use backup-top instead of write notifiers
Drop write notifiers and use filter node instead.
= Changes =
1. Add filter-node-name argument for backup qmp api. We have to do it
in this commit, as 257 needs to be fixed.
2. There are no more write notifiers here, so is_write_notifier
parameter is dropped from block-copy paths.
3. To sync with in-flight requests at job finish we now have drained
removing of the filter, we don't need rw-lock.
4. Block-copy is now using BdrvChildren instead of BlockBackends
5. As backup-top owns these children, we also move block-copy state
into backup-top's ownership.
= Iotest changes =
56: op-blocker doesn't shoot now, as we set it on source, but then
check on filter, when trying to start second backup.
To keep the test we instead can catch another collision: both jobs will
get 'drive0' job-id, as job-id parameter is unspecified. To prevent
interleaving with file-posix locks (as they are dependent on config)
let's use another target for second backup.
Also, it's obvious now that we'd like to drop this op-blocker at all
and add a test-case for two backups from one node (to different
destinations) actually works. But not in these series.
141: Output changed: prepatch, "Node is in use" comes from bdrv_has_blk
check inside qmp_blockdev_del. But we've dropped block-copy blk
objects, so no more blk objects on source bs (job blk is on backup-top
filter bs). New message is from op-blocker, which is the next check in
qmp_blockdev_add.
257: The test wants to emulate guest write during backup. They should
go to filter node, not to original source node, of course. Therefore we
need to specify filter node name and use it.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20191001131409.14202-6-vsementsov@virtuozzo.com
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2019-10-01 16:14:09 +03:00
|
|
|
|
s->write_flags);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
if (ret < 0) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
trace_block_copy_write_fail(s, offset, ret);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
if (error_is_read) {
|
|
|
|
|
*error_is_read = false;
|
|
|
|
|
}
|
2019-10-22 14:18:02 +03:00
|
|
|
|
goto out;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2019-10-22 14:18:02 +03:00
|
|
|
|
out:
|
2019-10-22 14:18:00 +03:00
|
|
|
|
qemu_vfree(bounce_buffer);
|
|
|
|
|
|
2019-09-20 17:20:48 +03:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:29:59 +03:00
|
|
|
|
static int block_copy_block_status(BlockCopyState *s, int64_t offset,
|
|
|
|
|
int64_t bytes, int64_t *pnum)
|
|
|
|
|
{
|
|
|
|
|
int64_t num;
|
|
|
|
|
BlockDriverState *base;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
if (s->skip_unallocated && s->source->bs->backing) {
|
|
|
|
|
base = s->source->bs->backing->bs;
|
|
|
|
|
} else {
|
|
|
|
|
base = NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = bdrv_block_status_above(s->source->bs, base, offset, bytes, &num,
|
|
|
|
|
NULL, NULL);
|
|
|
|
|
if (ret < 0 || num < s->cluster_size) {
|
|
|
|
|
/*
|
|
|
|
|
* On error or if failed to obtain large enough chunk just fallback to
|
|
|
|
|
* copy one cluster.
|
|
|
|
|
*/
|
|
|
|
|
num = s->cluster_size;
|
|
|
|
|
ret = BDRV_BLOCK_ALLOCATED | BDRV_BLOCK_DATA;
|
|
|
|
|
} else if (offset + num == s->len) {
|
|
|
|
|
num = QEMU_ALIGN_UP(num, s->cluster_size);
|
|
|
|
|
} else {
|
|
|
|
|
num = QEMU_ALIGN_DOWN(num, s->cluster_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*pnum = num;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-20 17:20:48 +03:00
|
|
|
|
/*
|
|
|
|
|
* Check if the cluster starting at offset is allocated or not.
|
|
|
|
|
* return via pnum the number of contiguous clusters sharing this allocation.
|
|
|
|
|
*/
|
|
|
|
|
static int block_copy_is_cluster_allocated(BlockCopyState *s, int64_t offset,
|
|
|
|
|
int64_t *pnum)
|
|
|
|
|
{
|
block/backup: use backup-top instead of write notifiers
Drop write notifiers and use filter node instead.
= Changes =
1. Add filter-node-name argument for backup qmp api. We have to do it
in this commit, as 257 needs to be fixed.
2. There are no more write notifiers here, so is_write_notifier
parameter is dropped from block-copy paths.
3. To sync with in-flight requests at job finish we now have drained
removing of the filter, we don't need rw-lock.
4. Block-copy is now using BdrvChildren instead of BlockBackends
5. As backup-top owns these children, we also move block-copy state
into backup-top's ownership.
= Iotest changes =
56: op-blocker doesn't shoot now, as we set it on source, but then
check on filter, when trying to start second backup.
To keep the test we instead can catch another collision: both jobs will
get 'drive0' job-id, as job-id parameter is unspecified. To prevent
interleaving with file-posix locks (as they are dependent on config)
let's use another target for second backup.
Also, it's obvious now that we'd like to drop this op-blocker at all
and add a test-case for two backups from one node (to different
destinations) actually works. But not in these series.
141: Output changed: prepatch, "Node is in use" comes from bdrv_has_blk
check inside qmp_blockdev_del. But we've dropped block-copy blk
objects, so no more blk objects on source bs (job blk is on backup-top
filter bs). New message is from op-blocker, which is the next check in
qmp_blockdev_add.
257: The test wants to emulate guest write during backup. They should
go to filter node, not to original source node, of course. Therefore we
need to specify filter node name and use it.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20191001131409.14202-6-vsementsov@virtuozzo.com
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2019-10-01 16:14:09 +03:00
|
|
|
|
BlockDriverState *bs = s->source->bs;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
int64_t count, total_count = 0;
|
|
|
|
|
int64_t bytes = s->len - offset;
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
assert(QEMU_IS_ALIGNED(offset, s->cluster_size));
|
|
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
|
ret = bdrv_is_allocated(bs, offset, bytes, &count);
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
total_count += count;
|
|
|
|
|
|
|
|
|
|
if (ret || count == 0) {
|
|
|
|
|
/*
|
|
|
|
|
* ret: partial segment(s) are considered allocated.
|
|
|
|
|
* otherwise: unallocated tail is treated as an entire segment.
|
|
|
|
|
*/
|
|
|
|
|
*pnum = DIV_ROUND_UP(total_count, s->cluster_size);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Unallocated segment(s) with uncertain following segment(s) */
|
|
|
|
|
if (total_count >= s->cluster_size) {
|
|
|
|
|
*pnum = total_count / s->cluster_size;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
offset += count;
|
|
|
|
|
bytes -= count;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Reset bits in copy_bitmap starting at offset if they represent unallocated
|
|
|
|
|
* data in the image. May reset subsequent contiguous bits.
|
|
|
|
|
* @return 0 when the cluster at @offset was unallocated,
|
|
|
|
|
* 1 otherwise, and -ret on error.
|
|
|
|
|
*/
|
|
|
|
|
int64_t block_copy_reset_unallocated(BlockCopyState *s,
|
|
|
|
|
int64_t offset, int64_t *count)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
int64_t clusters, bytes;
|
|
|
|
|
|
|
|
|
|
ret = block_copy_is_cluster_allocated(s, offset, &clusters);
|
|
|
|
|
if (ret < 0) {
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bytes = clusters * s->cluster_size;
|
|
|
|
|
|
|
|
|
|
if (!ret) {
|
|
|
|
|
bdrv_reset_dirty_bitmap(s->copy_bitmap, offset, bytes);
|
block/block-copy: fix progress calculation
Assume we have two regions, A and B, and region B is in-flight now,
region A is not yet touched, but it is unallocated and should be
skipped.
Correspondingly, as progress we have
total = A + B
current = 0
If we reset unallocated region A and call progress_reset_callback,
it will calculate 0 bytes dirty in the bitmap and call
job_progress_set_remaining, which will set
total = current + 0 = 0 + 0 = 0
So, B bytes are actually removed from total accounting. When job
finishes we'll have
total = 0
current = B
, which doesn't sound good.
This is because we didn't considered in-flight bytes, actually when
calculating remaining, we should have set (in_flight + dirty_bytes)
as remaining, not only dirty_bytes.
To fix it, let's refactor progress calculation, moving it to block-copy
itself instead of fixing callback. And, of course, track in_flight
bytes count.
We still have to keep one callback, to maintain backup job bytes_read
calculation, but it will go on soon, when we turn the whole backup
process into one block_copy call.
Cc: qemu-stable@nongnu.org
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com>
Message-Id: <20200311103004.7649-3-vsementsov@virtuozzo.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2020-03-11 13:29:57 +03:00
|
|
|
|
progress_set_remaining(s->progress,
|
|
|
|
|
bdrv_get_dirty_count(s->copy_bitmap) +
|
|
|
|
|
s->in_flight_bytes);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
*count = bytes;
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:03 +03:00
|
|
|
|
/*
|
|
|
|
|
* block_copy_dirty_clusters
|
|
|
|
|
*
|
|
|
|
|
* Copy dirty clusters in @offset/@bytes range.
|
|
|
|
|
* Returns 1 if dirty clusters found and successfully copied, 0 if no dirty
|
|
|
|
|
* clusters found and -errno on failure.
|
|
|
|
|
*/
|
|
|
|
|
static int coroutine_fn block_copy_dirty_clusters(BlockCopyState *s,
|
|
|
|
|
int64_t offset, int64_t bytes,
|
|
|
|
|
bool *error_is_read)
|
2019-09-20 17:20:48 +03:00
|
|
|
|
{
|
|
|
|
|
int ret = 0;
|
2020-03-11 13:30:03 +03:00
|
|
|
|
bool found_dirty = false;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* block_copy() user is responsible for keeping source and target in same
|
|
|
|
|
* aio context
|
|
|
|
|
*/
|
block/backup: use backup-top instead of write notifiers
Drop write notifiers and use filter node instead.
= Changes =
1. Add filter-node-name argument for backup qmp api. We have to do it
in this commit, as 257 needs to be fixed.
2. There are no more write notifiers here, so is_write_notifier
parameter is dropped from block-copy paths.
3. To sync with in-flight requests at job finish we now have drained
removing of the filter, we don't need rw-lock.
4. Block-copy is now using BdrvChildren instead of BlockBackends
5. As backup-top owns these children, we also move block-copy state
into backup-top's ownership.
= Iotest changes =
56: op-blocker doesn't shoot now, as we set it on source, but then
check on filter, when trying to start second backup.
To keep the test we instead can catch another collision: both jobs will
get 'drive0' job-id, as job-id parameter is unspecified. To prevent
interleaving with file-posix locks (as they are dependent on config)
let's use another target for second backup.
Also, it's obvious now that we'd like to drop this op-blocker at all
and add a test-case for two backups from one node (to different
destinations) actually works. But not in these series.
141: Output changed: prepatch, "Node is in use" comes from bdrv_has_blk
check inside qmp_blockdev_del. But we've dropped block-copy blk
objects, so no more blk objects on source bs (job blk is on backup-top
filter bs). New message is from op-blocker, which is the next check in
qmp_blockdev_add.
257: The test wants to emulate guest write during backup. They should
go to filter node, not to original source node, of course. Therefore we
need to specify filter node name and use it.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Message-id: 20191001131409.14202-6-vsementsov@virtuozzo.com
Reviewed-by: Max Reitz <mreitz@redhat.com>
Signed-off-by: Max Reitz <mreitz@redhat.com>
2019-10-01 16:14:09 +03:00
|
|
|
|
assert(bdrv_get_aio_context(s->source->bs) ==
|
|
|
|
|
bdrv_get_aio_context(s->target->bs));
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
assert(QEMU_IS_ALIGNED(offset, s->cluster_size));
|
2020-03-11 13:30:01 +03:00
|
|
|
|
assert(QEMU_IS_ALIGNED(bytes, s->cluster_size));
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:01 +03:00
|
|
|
|
while (bytes) {
|
2020-03-11 13:30:03 +03:00
|
|
|
|
BlockCopyInFlightReq req;
|
2020-03-11 13:30:01 +03:00
|
|
|
|
int64_t next_zero, cur_bytes, status_bytes;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
if (!bdrv_dirty_bitmap_get(s->copy_bitmap, offset)) {
|
|
|
|
|
trace_block_copy_skip(s, offset);
|
|
|
|
|
offset += s->cluster_size;
|
2020-03-11 13:30:01 +03:00
|
|
|
|
bytes -= s->cluster_size;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
continue; /* already copied */
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:03 +03:00
|
|
|
|
found_dirty = true;
|
|
|
|
|
|
2020-03-11 13:30:01 +03:00
|
|
|
|
cur_bytes = MIN(bytes, s->copy_size);
|
2019-10-22 14:18:02 +03:00
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
next_zero = bdrv_dirty_bitmap_next_zero(s->copy_bitmap, offset,
|
2020-03-11 13:30:01 +03:00
|
|
|
|
cur_bytes);
|
2019-10-22 14:18:02 +03:00
|
|
|
|
if (next_zero >= 0) {
|
2020-03-11 13:30:02 +03:00
|
|
|
|
assert(next_zero > offset); /* offset is dirty */
|
|
|
|
|
assert(next_zero < offset + cur_bytes); /* no need to do MIN() */
|
|
|
|
|
cur_bytes = next_zero - offset;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
}
|
2020-03-11 13:30:03 +03:00
|
|
|
|
block_copy_inflight_req_begin(s, &req, offset, cur_bytes);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
ret = block_copy_block_status(s, offset, cur_bytes, &status_bytes);
|
2020-03-11 13:30:03 +03:00
|
|
|
|
assert(ret >= 0); /* never fail */
|
|
|
|
|
cur_bytes = MIN(cur_bytes, status_bytes);
|
|
|
|
|
block_copy_inflight_req_shrink(s, &req, cur_bytes);
|
2020-03-11 13:29:59 +03:00
|
|
|
|
if (s->skip_unallocated && !(ret & BDRV_BLOCK_ALLOCATED)) {
|
2020-03-11 13:30:03 +03:00
|
|
|
|
block_copy_inflight_req_end(s, &req, 0);
|
2020-03-11 13:29:59 +03:00
|
|
|
|
progress_set_remaining(s->progress,
|
|
|
|
|
bdrv_get_dirty_count(s->copy_bitmap) +
|
|
|
|
|
s->in_flight_bytes);
|
2020-03-11 13:30:02 +03:00
|
|
|
|
trace_block_copy_skip_range(s, offset, status_bytes);
|
|
|
|
|
offset += status_bytes;
|
2020-03-11 13:30:01 +03:00
|
|
|
|
bytes -= status_bytes;
|
2020-03-11 13:29:59 +03:00
|
|
|
|
continue;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:02 +03:00
|
|
|
|
trace_block_copy_process(s, offset);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
|
2020-03-11 13:30:01 +03:00
|
|
|
|
co_get_from_shres(s->mem, cur_bytes);
|
2020-03-11 13:30:02 +03:00
|
|
|
|
ret = block_copy_do_copy(s, offset, cur_bytes, ret & BDRV_BLOCK_ZERO,
|
2020-03-11 13:29:59 +03:00
|
|
|
|
error_is_read);
|
2020-03-11 13:30:01 +03:00
|
|
|
|
co_put_to_shres(s->mem, cur_bytes);
|
2020-03-11 13:30:03 +03:00
|
|
|
|
block_copy_inflight_req_end(s, &req, ret);
|
2019-09-20 17:20:48 +03:00
|
|
|
|
if (ret < 0) {
|
2020-03-11 13:30:03 +03:00
|
|
|
|
return ret;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:01 +03:00
|
|
|
|
progress_work_done(s->progress, cur_bytes);
|
|
|
|
|
s->progress_bytes_callback(cur_bytes, s->progress_opaque);
|
2020-03-11 13:30:02 +03:00
|
|
|
|
offset += cur_bytes;
|
2020-03-11 13:30:01 +03:00
|
|
|
|
bytes -= cur_bytes;
|
2019-09-20 17:20:48 +03:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-11 13:30:03 +03:00
|
|
|
|
return found_dirty;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* block_copy
|
|
|
|
|
*
|
|
|
|
|
* Copy requested region, accordingly to dirty bitmap.
|
|
|
|
|
* Collaborate with parallel block_copy requests: if they succeed it will help
|
|
|
|
|
* us. If they fail, we will retry not-copied regions. So, if we return error,
|
|
|
|
|
* it means that some I/O operation failed in context of _this_ block_copy call,
|
|
|
|
|
* not some parallel operation.
|
|
|
|
|
*/
|
|
|
|
|
int coroutine_fn block_copy(BlockCopyState *s, int64_t offset, int64_t bytes,
|
|
|
|
|
bool *error_is_read)
|
|
|
|
|
{
|
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
ret = block_copy_dirty_clusters(s, offset, bytes, error_is_read);
|
|
|
|
|
|
|
|
|
|
if (ret == 0) {
|
|
|
|
|
ret = block_copy_wait_one(s, offset, bytes);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* We retry in two cases:
|
|
|
|
|
* 1. Some progress done
|
|
|
|
|
* Something was copied, which means that there were yield points
|
|
|
|
|
* and some new dirty bits may have appeared (due to failed parallel
|
|
|
|
|
* block-copy requests).
|
|
|
|
|
* 2. We have waited for some intersecting block-copy request
|
|
|
|
|
* It may have failed and produced new dirty bits.
|
|
|
|
|
*/
|
|
|
|
|
} while (ret > 0);
|
2019-10-01 16:14:05 +03:00
|
|
|
|
|
2019-09-20 17:20:48 +03:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
2020-03-11 13:30:04 +03:00
|
|
|
|
|
|
|
|
|
BdrvDirtyBitmap *block_copy_dirty_bitmap(BlockCopyState *s)
|
|
|
|
|
{
|
|
|
|
|
return s->copy_bitmap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void block_copy_set_skip_unallocated(BlockCopyState *s, bool skip)
|
|
|
|
|
{
|
|
|
|
|
s->skip_unallocated = skip;
|
|
|
|
|
}
|