From patchwork Tue Jan 16 18:31:39 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bart Van Assche X-Patchwork-Id: 10167901 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 03C1E601E7 for ; Tue, 16 Jan 2018 18:31:50 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id F1D722674B for ; Tue, 16 Jan 2018 18:31:49 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E680426B41; Tue, 16 Jan 2018 18:31:49 +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.8 required=2.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id B5BD72674B for ; Tue, 16 Jan 2018 18:31:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751304AbeAPSbr (ORCPT ); Tue, 16 Jan 2018 13:31:47 -0500 Received: from esa5.hgst.iphmx.com ([216.71.153.144]:41543 "EHLO esa5.hgst.iphmx.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751779AbeAPSbp (ORCPT ); Tue, 16 Jan 2018 13:31:45 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=wdc.com; i=@wdc.com; q=dns/txt; s=dkim.wdc.com; t=1516127505; x=1547663505; h=from:to:cc:subject:date:message-id; bh=vIEU/T91XOWiMp/HhqwJo8pRRHTnzYtlz8CsPRoGiwQ=; b=Wncb2gwcrmzTFoOoizJj/ZzmihrYU7yotGPGYvdDGuv88FaWX7IbojmX OBXA5uiYKKdeqgPBGMGK0WjjJVbTpmnDgxmb3LsMQ2krDBTGlkWyeArVp WjYxvmf/zsY94+12aa3wCERuQMvVdhyK8lDg2pzwUD0oVFm6hjWjF9twa u64M6jHlMBzHe0B0uevzSVgYwW9khkOvwYqEbZ3Iq0bZSvJ15SvAB4EMF sWmvAA+7kAo4VXaKT8SV0Ndn3zcrOHSkHH9LLI8JTUBdJUaFJR+kv+d3D C9hUysxSH1wsSNhd1mZfYPd4OFXUvFUFCOWX1XuV550cvpLw+DeFbWZBn g==; X-IronPort-AV: E=Sophos;i="5.46,369,1511798400"; d="scan'208";a="69267117" Received: from uls-op-cesaip01.wdc.com (HELO uls-op-cesaep01.wdc.com) ([199.255.45.14]) by ob1.hgst.iphmx.com with ESMTP; 17 Jan 2018 02:31:40 +0800 Received: from uls-op-cesaip02.wdc.com ([10.248.3.37]) by uls-op-cesaep01.wdc.com with ESMTP; 16 Jan 2018 10:27:22 -0800 Received: from thinkpad-bart.sdcorp.global.sandisk.com (HELO thinkpad-bart.int.fusionio.com) ([10.11.171.236]) by uls-op-cesaip02.wdc.com with ESMTP; 16 Jan 2018 10:31:40 -0800 From: Bart Van Assche To: Jens Axboe Cc: linux-block@vger.kernel.org, Christoph Hellwig , Bart Van Assche Subject: [PATCH] block: Fix __bio_integrity_endio() documentation Date: Tue, 16 Jan 2018 10:31:39 -0800 Message-Id: <20180116183139.29777-1-bart.vanassche@wdc.com> X-Mailer: git-send-email 2.15.1 Sender: linux-block-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Fixes: 4246a0b63bd8 ("block: add a bi_error field to struct bio") Signed-off-by: Bart Van Assche Reviewed-by: Martin K. Petersen --- block/bio-integrity.c | 1 - 1 file changed, 1 deletion(-) diff --git a/block/bio-integrity.c b/block/bio-integrity.c index 23b42e8aa03e..9cfdd6c83b5b 100644 --- a/block/bio-integrity.c +++ b/block/bio-integrity.c @@ -374,7 +374,6 @@ static void bio_integrity_verify_fn(struct work_struct *work) /** * __bio_integrity_endio - Integrity I/O completion function * @bio: Protected bio - * @error: Pointer to errno * * Description: Completion for integrity I/O *