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: 9358979 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 358FD600C8 for ; Fri, 30 Sep 2016 22:11:26 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 15A7C29ED0 for ; Fri, 30 Sep 2016 22:11:26 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 0A6A529F75; Fri, 30 Sep 2016 22:11:26 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.wl.linuxfoundation.org (Postfix) with ESMTPS id B6C4029ED0 for ; Fri, 30 Sep 2016 22:11:25 +0000 (UTC) Received: from localhost ([::1]:47276 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bq61d-0004rj-08 for patchwork-qemu-devel@patchwork.kernel.org; Fri, 30 Sep 2016 18:11:25 -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+patchwork-qemu-devel=patchwork.kernel.org@nongnu.org Sender: "Qemu-devel" X-Virus-Scanned: ClamAV using ClamSMTP 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. */