From: Fam Zheng Date: Fri, 3 Apr 2015 14:05:21 +0000 (+0800) Subject: blockjob: Update function name in comments X-Git-Tag: v2.4.0-rc0~158^2~47 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a7282330c01364ef00260749bc6a37c7f16ec047;p=thirdparty%2Fqemu.git blockjob: Update function name in comments Signed-off-by: Fam Zheng Reviewed-by: Stefan Hajnoczi Reviewed-by: Paolo Bonzini Reviewed-by: Alberto Garcia Message-id: 1428069921-2957-5-git-send-email-famz@redhat.com Signed-off-by: Stefan Hajnoczi Signed-off-by: Kevin Wolf --- diff --git a/block/backup.c b/block/backup.c index 1c535b1ab98..3312476d66d 100644 --- a/block/backup.c +++ b/block/backup.c @@ -287,7 +287,7 @@ static void coroutine_fn backup_run(void *opaque) break; } - /* we need to yield so that qemu_aio_flush() returns. + /* we need to yield so that bdrv_drain_all() returns. * (without, VM does not reboot) */ if (job->common.speed) { diff --git a/block/mirror.c b/block/mirror.c index 65b17186712..d421fceac1d 100644 --- a/block/mirror.c +++ b/block/mirror.c @@ -475,7 +475,7 @@ static void coroutine_fn mirror_run(void *opaque) (cnt + s->sectors_in_flight) * BDRV_SECTOR_SIZE; /* Note that even when no rate limit is applied we need to yield - * periodically with no pending I/O so that qemu_aio_flush() returns. + * periodically with no pending I/O so that bdrv_drain_all() returns. * We do so every SLICE_TIME nanoseconds, or when there is an error, * or when the source is clean, whichever comes first. */