From patchwork Tue Sep 5 02:44:06 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Randy Dunlap X-Patchwork-Id: 9937717 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 123C06038C for ; Tue, 5 Sep 2017 02:44:11 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E48E328864 for ; Tue, 5 Sep 2017 02:44:10 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D91B128867; Tue, 5 Sep 2017 02:44:10 +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 5036028864 for ; Tue, 5 Sep 2017 02:44:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753774AbdIECoI (ORCPT ); Mon, 4 Sep 2017 22:44:08 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:47319 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753758AbdIECoI (ORCPT ); Mon, 4 Sep 2017 22:44:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=Content-Transfer-Encoding: Content-Type:MIME-Version:Date:Message-ID:Subject:From:To:Sender:Reply-To:Cc: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References:List-Id: List-Help:List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=0U3giuuKSoq4VQyIbR+Wf7xl5A1S0W/48kC8/FzjKC8=; b=fx8owGh+TQCRcK9Otfgt4jUM7 ztMuh+p3FzKU6cXEeyTkqs3GO9dIwANnuGcw3NbFbECM4HgTzArDKYAVE/4/W2+Gtj6xFwo7zXs5M lrQK5FUw4UYuvEXQmha8qnx7MVUPX9dRlOjuRwrJR5Jr5EFrfNAhGIIhIOdAGwJAaygzaMp84vohv NsUVGFMdNBt04sAryC3damoroQ4ZWaONLaTpHBSQdCJYk4iGy5f28BmiuGQ/gL2KhPb5P3a1NKkO3 WnVyWTw31A5q5/YLZWidNOPGyb/JamB80IkDBGSePlUWJJ30asRi4NSF/EO6CaccbnO9v8cC+yeCA wYD4kg4dw==; Received: from static-50-53-52-16.bvtn.or.frontiernet.net ([50.53.52.16] helo=midway.dunlap) by bombadil.infradead.org with esmtpsa (Exim 4.87 #1 (Red Hat Linux)) id 1dp3qR-0003gE-E1; Tue, 05 Sep 2017 02:44:07 +0000 To: LKML , axboe , linux-block@vger.kernel.org From: Randy Dunlap Subject: [PATCH] block: fix bio.c kernel-doc notation warning Message-ID: <187e2dfe-56b9-e112-cd4c-81b279df3528@infradead.org> Date: Mon, 4 Sep 2017 19:44:06 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0 MIME-Version: 1.0 Content-Language: en-US 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 From: Randy Dunlap Sphinx treats symbols that end with '_' as some kind of special documentation indicator, so fix that by adding an ending '*' to it. ../block/bio.c:404: ERROR: Unknown target name: "gfp". Signed-off-by: Randy Dunlap --- block/bio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- lnx-413.orig/block/bio.c +++ lnx-413/block/bio.c @@ -400,7 +400,7 @@ static void punt_bios_to_rescuer(struct /** * bio_alloc_bioset - allocate a bio for I/O - * @gfp_mask: the GFP_ mask given to the slab allocator + * @gfp_mask: the GFP_* mask given to the slab allocator * @nr_iovecs: number of iovecs to pre-allocate * @bs: the bio_set to allocate from. *