From patchwork Fri Sep 30 22:00:44 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Snow X-Patchwork-Id: 677263 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3sm5Jn2fDjz9s9N for ; Sat, 1 Oct 2016 08:12:09 +1000 (AEST) Received: from localhost ([::1]:47279 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bq62I-0005xA-8k for incoming@patchwork.ozlabs.org; Fri, 30 Sep 2016 18:12:06 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55322) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bq5rf-0004Au-W8 for qemu-devel@nongnu.org; Fri, 30 Sep 2016 18:01:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bq5rb-0000wU-2D for qemu-devel@nongnu.org; Fri, 30 Sep 2016 18:01:06 -0400 Received: from mx1.redhat.com ([209.132.183.28]:26616) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bq5rY-0000uq-Oo; Fri, 30 Sep 2016 18:01:00 -0400 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 307F07CDF9; Fri, 30 Sep 2016 22:01:00 +0000 (UTC) Received: from scv.usersys.redhat.com (vpn-59-41.rdu2.redhat.com [10.10.59.41]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u8UM0o5E019985; Fri, 30 Sep 2016 18:00:58 -0400 From: John Snow To: qemu-block@nongnu.org Date: Fri, 30 Sep 2016 18:00:44 -0400 Message-Id: <1475272849-19990-7-git-send-email-jsnow@redhat.com> In-Reply-To: <1475272849-19990-1-git-send-email-jsnow@redhat.com> References: <1475272849-19990-1-git-send-email-jsnow@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.24 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.28]); Fri, 30 Sep 2016 22:01:00 +0000 (UTC) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v2 06/11] blockjobs: fix documentation X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: kwolf@redhat.com, vsementsov@virtuozzo.com, famz@redhat.com, John Snow , jcody@redhat.com, qemu-devel@nongnu.org, stefanha@redhat.com Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: "Qemu-devel" Wrong function names in documentation. Signed-off-by: John Snow --- include/block/blockjob_int.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/block/blockjob_int.h b/include/block/blockjob_int.h index 0a2d41e..c6da7e4 100644 --- a/include/block/blockjob_int.h +++ b/include/block/blockjob_int.h @@ -305,7 +305,7 @@ void block_job_enter(BlockJob *job); void block_job_event_cancelled(BlockJob *job); /** - * block_job_ready: + * block_job_event_completed: * @job: The job which is now ready to complete. * @msg: Error message. Only present on failure. * @@ -314,8 +314,8 @@ void block_job_event_cancelled(BlockJob *job); void block_job_event_completed(BlockJob *job, const char *msg); /** - * block_job_ready: - * @job: The job which is now ready to complete. + * block_job_event_ready: + * @job: The job which is now ready to be completed. * * Send a BLOCK_JOB_READY event for the specified job. */