From: Stefan Hajnoczi <stefanha@redhat.com>
To: qemu-devel@nongnu.org
Cc: Kevin Wolf <kwolf@redhat.com>,
dietmar@proxmox.com, Stefan Hajnoczi <stefanha@redhat.com>,
Markus Armbruster <armbru@redhat.com>
Subject: [Qemu-devel] [RFC 3/8] backup: write to BlockDriverState instead of BackupDumpFunc
Date: Sat, 9 Mar 2013 23:22:23 +0100 [thread overview]
Message-ID: <1362867748-30528-4-git-send-email-stefanha@redhat.com> (raw)
In-Reply-To: <1362867748-30528-1-git-send-email-stefanha@redhat.com>
Remove the BackupDumpFunc function pointer and write directly to a
BlockDriverState. This allows the 'backup' command to copy out into a
fresh qcow2 or raw image. If no built-in image format is suitable, use
NBD to export the data to an external process.
A few other things in this commit:
* Detect zero clusters with buffer_is_zero()
* Skip zero clusters, don't write them to the target
* Use 0 delay instead of 1us, like other block jobs
* Delete the backup.h header file, it is no longer necessary
* Unify creation/start functions into backup_start()
* Simplify cleanup, free bitmap in backup_run() instead of cb function
* Use bdrv_getlength() instead of accessing ->total_sectors directly
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
backup.c | 110 ++++++++++++++++------------------------------
backup.h | 30 -------------
include/block/block_int.h | 16 +++++++
3 files changed, 54 insertions(+), 102 deletions(-)
delete mode 100644 backup.h
diff --git a/backup.c b/backup.c
index 8955e1a..8ee3450 100644
--- a/backup.c
+++ b/backup.c
@@ -19,7 +19,6 @@
#include "block/block_int.h"
#include "block/blockjob.h"
#include "qemu/ratelimit.h"
-#include "backup.h"
#define DEBUG_BACKUP 0
@@ -29,19 +28,20 @@
do { if (DEBUG_BACKUP) { printf("backup: " fmt, ## __VA_ARGS__); } } \
while (0)
+#define BACKUP_CLUSTER_BITS 16
+#define BACKUP_CLUSTER_SIZE (1<<BACKUP_CLUSTER_BITS)
+#define BACKUP_BLOCKS_PER_CLUSTER (BACKUP_CLUSTER_SIZE/BDRV_SECTOR_SIZE)
#define SLICE_TIME 100000000ULL /* ns */
typedef struct BackupBlockJob {
BlockJob common;
+ BlockDriverState *target;
RateLimit limit;
CoRwlock rwlock;
uint64_t sectors_read;
unsigned long *bitmap;
int bitmap_size;
- BackupDumpFunc *backup_dump_cb;
- BlockDriverCompletionFunc *backup_complete_cb;
- void *opaque;
} BackupBlockJob;
static bool backup_get_bitmap(BackupBlockJob *job, int64_t cluster_num)
@@ -149,17 +149,22 @@ static int coroutine_fn backup_do_cow(BlockDriverState *bs,
start);
goto out;
}
+
+ zero = buffer_is_zero(bounce_buffer, BACKUP_CLUSTER_SIZE);
#if USE_ALLOCATION_CHECK
}
#endif
job->sectors_read += BACKUP_BLOCKS_PER_CLUSTER;
- ret = job->backup_dump_cb(job->opaque, bs, start,
- zero ? NULL : bounce_buffer);
- if (ret < 0) {
- DPRINTF("brdv_co_backup_cow dump_cluster_cb C%" PRId64 " failed\n",
- start);
- goto out;
+ if (!zero) {
+ ret = bdrv_co_writev(job->target, start * BACKUP_BLOCKS_PER_CLUSTER,
+ BACKUP_BLOCKS_PER_CLUSTER,
+ &bounce_qiov);
+ if (ret < 0) {
+ DPRINTF("brdv_co_backup_cow dump_cluster_cb C%" PRId64
+ " failed\n", start);
+ goto out;
+ }
}
DPRINTF("brdv_co_backup_cow done C%" PRId64 "\n", start);
@@ -217,8 +222,8 @@ static void coroutine_fn backup_run(void *opaque)
int64_t start, end;
start = 0;
- end = (bs->total_sectors + BACKUP_BLOCKS_PER_CLUSTER - 1) /
- BACKUP_BLOCKS_PER_CLUSTER;
+ end = (bdrv_getlength(bs) / BDRV_SECTOR_SIZE +
+ BACKUP_BLOCKS_PER_CLUSTER - 1) / BACKUP_BLOCKS_PER_CLUSTER;
DPRINTF("backup_run start %s %" PRId64 " %" PRId64 "\n",
bdrv_get_device_name(bs), start, end);
@@ -233,7 +238,6 @@ static void coroutine_fn backup_run(void *opaque)
/* we need to yield so that qemu_aio_flush() returns.
* (without, VM does not reboot)
- * Note: use 1000 instead of 0 (0 prioritize this task too much)
*/
if (job->common.speed) {
uint64_t delay_ns = ratelimit_calculate_delay(
@@ -241,7 +245,7 @@ static void coroutine_fn backup_run(void *opaque)
job->sectors_read = 0;
block_job_sleep_ns(&job->common, rt_clock, delay_ns);
} else {
- block_job_sleep_ns(&job->common, rt_clock, 1000);
+ block_job_sleep_ns(&job->common, rt_clock, 0);
}
if (block_job_is_cancelled(&job->common)) {
@@ -272,84 +276,46 @@ static void coroutine_fn backup_run(void *opaque)
qemu_co_rwlock_wrlock(&job->rwlock);
qemu_co_rwlock_unlock(&job->rwlock);
- DPRINTF("backup_run complete %d\n", ret);
- block_job_completed(&job->common, ret);
-}
-
-static void backup_job_cleanup_cb(void *opaque, int ret)
-{
- BlockDriverState *bs = opaque;
- assert(bs);
- BackupBlockJob *job = (BackupBlockJob *)bs->job;
- assert(job);
-
- DPRINTF("backup_job_cleanup_cb start %d\n", ret);
-
- job->backup_complete_cb(job->opaque, ret);
-
- DPRINTF("backup_job_cleanup_cb end\n");
-
g_free(job->bitmap);
-}
-void
-backup_job_start(BlockDriverState *bs, bool cancel)
-{
- assert(bs);
- assert(bs->job);
- assert(bs->job->co == NULL);
+ bdrv_delete(job->target);
- if (cancel) {
- block_job_cancel(bs->job); /* set cancel flag */
- }
-
- bs->job->co = qemu_coroutine_create(backup_run);
- qemu_coroutine_enter(bs->job->co, bs->job);
+ DPRINTF("backup_run complete %d\n", ret);
+ block_job_completed(&job->common, ret);
}
-int
-backup_job_create(BlockDriverState *bs, BackupDumpFunc *backup_dump_cb,
- BlockDriverCompletionFunc *backup_complete_cb,
- void *opaque, int64_t speed)
+void backup_start(BlockDriverState *bs, BlockDriverState *target,
+ int64_t speed,
+ BlockDriverCompletionFunc *cb, void *opaque,
+ Error **errp)
{
- assert(bs);
- assert(backup_dump_cb);
- assert(backup_complete_cb);
-
- if (bs->job) {
- DPRINTF("bdrv_backup_init failed - running job on %s\n",
- bdrv_get_device_name(bs));
- return -1;
- }
-
int64_t bitmap_size;
- const char *devname = bdrv_get_device_name(bs);
- if (!devname || !devname[0]) {
- return -1;
- }
+ assert(bs);
+ assert(target);
+ assert(cb);
- DPRINTF("bdrv_backup_init %s\n", bdrv_get_device_name(bs));
+ DPRINTF("backup_start %s\n", bdrv_get_device_name(bs));
- Error *errp;
BackupBlockJob *job = block_job_create(&backup_job_type, bs, speed,
- backup_job_cleanup_cb, bs, &errp);
+ cb, opaque, errp);
+ if (!job) {
+ return;
+ }
qemu_co_rwlock_init(&job->rwlock);
+ job->target = target;
job->common.cluster_size = BACKUP_CLUSTER_SIZE;
+ job->common.len = bdrv_getlength(bs);
- bitmap_size = bs->total_sectors +
+ bitmap_size = job->common.len / BDRV_SECTOR_SIZE +
BACKUP_BLOCKS_PER_CLUSTER * BITS_PER_LONG - 1;
bitmap_size /= BACKUP_BLOCKS_PER_CLUSTER * BITS_PER_LONG;
- job->backup_dump_cb = backup_dump_cb;
- job->backup_complete_cb = backup_complete_cb;
- job->opaque = opaque;
job->bitmap_size = bitmap_size;
job->bitmap = g_new0(unsigned long, bitmap_size);
- job->common.len = bs->total_sectors*BDRV_SECTOR_SIZE;
-
- return 0;
+ job->common.co = qemu_coroutine_create(backup_run);
+ qemu_coroutine_enter(job->common.co, job);
}
diff --git a/backup.h b/backup.h
deleted file mode 100644
index 9b1ea1c..0000000
--- a/backup.h
+++ /dev/null
@@ -1,30 +0,0 @@
-/*
- * QEMU backup related definitions
- *
- * Copyright (C) 2013 Proxmox Server Solutions
- *
- * Authors:
- * Dietmar Maurer (dietmar@proxmox.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.
- *
- */
-
-#ifndef QEMU_BACKUP_H
-#define QEMU_BACKUP_H
-
-#define BACKUP_CLUSTER_BITS 16
-#define BACKUP_CLUSTER_SIZE (1<<BACKUP_CLUSTER_BITS)
-#define BACKUP_BLOCKS_PER_CLUSTER (BACKUP_CLUSTER_SIZE/BDRV_SECTOR_SIZE)
-
-typedef int BackupDumpFunc(void *opaque, BlockDriverState *bs,
- int64_t cluster_num, unsigned char *buf);
-
-void backup_job_start(BlockDriverState *bs, bool cancel);
-
-int backup_job_create(BlockDriverState *bs, BackupDumpFunc *backup_dump_cb,
- BlockDriverCompletionFunc *backup_complete_cb,
- void *opaque, int64_t speed);
-
-#endif /* QEMU_BACKUP_H */
diff --git a/include/block/block_int.h b/include/block/block_int.h
index eaad53e..ab8af77 100644
--- a/include/block/block_int.h
+++ b/include/block/block_int.h
@@ -366,4 +366,20 @@ void mirror_start(BlockDriverState *bs, BlockDriverState *target,
BlockDriverCompletionFunc *cb,
void *opaque, Error **errp);
+/*
+ * backup_start:
+ * @bs: Block device to operate on.
+ * @target: Block device to write to.
+ * @speed: The maximum speed, in bytes per second, or 0 for unlimited.
+ * @cb: Completion function for the job.
+ * @opaque: Opaque pointer value passed to @cb.
+ *
+ * Start a backup operation on @bs. Clusters in @bs are written to @target
+ * until the job is cancelled or manually completed.
+ */
+void backup_start(BlockDriverState *bs, BlockDriverState *target,
+ int64_t speed,
+ BlockDriverCompletionFunc *cb, void *opaque,
+ Error **errp);
+
#endif /* BLOCK_INT_H */
--
1.8.1.4
next prev parent reply other threads:[~2013-03-09 22:23 UTC|newest]
Thread overview: 37+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-03-09 22:22 [Qemu-devel] [RFC 0/8] block: Live backup prototype Stefan Hajnoczi
2013-03-09 22:22 ` [Qemu-devel] [RFC 1/8] block: add virtual_size to query-block QMP output Stefan Hajnoczi
2013-03-11 17:35 ` Eric Blake
2013-03-09 22:22 ` [Qemu-devel] [RFC 2/8] add basic backup support to block driver Stefan Hajnoczi
2013-03-09 22:22 ` Stefan Hajnoczi [this message]
2013-03-10 10:05 ` [Qemu-devel] [RFC 3/8] backup: write to BlockDriverState instead of BackupDumpFunc Dietmar Maurer
2013-03-10 11:13 ` Stefan Hajnoczi
2013-03-09 22:22 ` [Qemu-devel] [RFC 4/8] block: add block_backup QMP command Stefan Hajnoczi
2013-03-14 21:46 ` Eric Blake
2013-03-14 21:52 ` Eric Blake
2013-03-15 8:38 ` Stefan Hajnoczi
2013-04-11 12:32 ` Paolo Bonzini
2013-03-09 22:22 ` [Qemu-devel] [RFC 5/8] Add nbd server Python module Stefan Hajnoczi
2013-03-09 22:22 ` [Qemu-devel] [RFC 6/8] Add VMA backup archive writer " Stefan Hajnoczi
2013-03-09 22:22 ` [Qemu-devel] [RFC 7/8] Add vma-writer.py tool Stefan Hajnoczi
2013-03-09 22:22 ` [Qemu-devel] [RFC 8/8] Add backup.py tool Stefan Hajnoczi
2013-03-10 9:14 ` [Qemu-devel] [RFC 0/8] block: Live backup prototype Dietmar Maurer
2013-03-10 10:19 ` Stefan Hajnoczi
2013-03-10 10:38 ` Dietmar Maurer
2013-03-10 11:09 ` Stefan Hajnoczi
2013-03-10 10:50 ` Dietmar Maurer
2013-03-10 11:10 ` Stefan Hajnoczi
2013-03-11 8:58 ` Dietmar Maurer
2013-03-11 9:26 ` Dietmar Maurer
2013-03-11 14:27 ` Stefan Hajnoczi
2013-03-11 15:00 ` Dietmar Maurer
2013-03-11 17:11 ` Stefan Hajnoczi
2013-03-10 9:57 ` Dietmar Maurer
2013-03-10 10:41 ` Stefan Hajnoczi
2013-03-12 9:18 ` Kevin Wolf
2013-03-12 10:50 ` Stefan Hajnoczi
2013-03-12 11:15 ` Dietmar Maurer
2013-03-12 12:18 ` Stefan Hajnoczi
2013-03-12 11:22 ` Kevin Wolf
2013-03-12 11:31 ` Dietmar Maurer
2013-03-12 11:37 ` Dietmar Maurer
2013-03-12 12:17 ` Stefan Hajnoczi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1362867748-30528-4-git-send-email-stefanha@redhat.com \
--to=stefanha@redhat.com \
--cc=armbru@redhat.com \
--cc=dietmar@proxmox.com \
--cc=kwolf@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).