From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59071) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bk6ub-0004Ao-Ss for qemu-devel@nongnu.org; Wed, 14 Sep 2016 05:55:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bk6uZ-0007yn-VS for qemu-devel@nongnu.org; Wed, 14 Sep 2016 05:55:24 -0400 From: Yaowei Bai Date: Wed, 14 Sep 2016 07:03:38 -0400 Message-Id: <1473851019-7005-2-git-send-email-baiyaowei@cmss.chinamobile.com> In-Reply-To: <1473851019-7005-1-git-send-email-baiyaowei@cmss.chinamobile.com> References: <1473851019-7005-1-git-send-email-baiyaowei@cmss.chinamobile.com> Subject: [Qemu-devel] [PATCH 1/2] block: mirror: fix wrong comment of mirror_start List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: stefanha@redhat.com, famz@redhat.com, jcody@redhat.com, kwolf@redhat.com, mreitz@redhat.com Cc: qemu-block@nongnu.org, qemu-devel@nongnu.org, yjs-kernel@cmss.chinamobile.com, Yaowei Bai Obviously, we should write to '@target'. Signed-off-by: Yaowei Bai Reviewed-by: Xiubo Li --- include/block/block_int.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/block/block_int.h b/include/block/block_int.h index 1e939de..77d4e65 100644 --- a/include/block/block_int.h +++ b/include/block/block_int.h @@ -730,7 +730,7 @@ void commit_active_start(const char *job_id, BlockDriverState *bs, * @errp: Error object. * * Start a mirroring operation on @bs. Clusters that are allocated - * in @bs will be written to @bs until the job is cancelled or + * in @bs will be written to @target until the job is cancelled or * manually completed. At the end of a successful mirroring job, * @bs will be switched to read from @target. */ -- 1.8.3.1