From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 19BA2C2D0A3 for ; Tue, 27 Oct 2020 03:06:52 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id CB35421707 for ; Tue, 27 Oct 2020 03:06:51 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603768011; bh=+iDp6qGbupqnPeHLiPOQ4jGGEsxVPDaHzfEp/5i5qNY=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=1nvUFg8LfvE8gvRj5MahrrLerupEA7dBL8lr1kH1OA4tElfB2S7EWzW++8DlB7S8o ef8xcCfeQq1Vsqg+DSrBo62SBmf2dhTBpM6QfYiZf6r98WTjUoUmlPOqq5qjCDbA7X 5wYtx14drbcHrgXRs7prhzpUHlPqrnrSi+H3A3lE= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2437204AbgJ0DGt (ORCPT ); Mon, 26 Oct 2020 23:06:49 -0400 Received: from mail.kernel.org ([198.145.29.99]:50622 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2437086AbgJ0DGt (ORCPT ); Mon, 26 Oct 2020 23:06:49 -0400 Received: from kicinski-fedora-PC1C0HJN.hsd1.ca.comcast.net (unknown [163.114.132.6]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 96EFB2151B; Tue, 27 Oct 2020 03:06:48 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1603768008; bh=+iDp6qGbupqnPeHLiPOQ4jGGEsxVPDaHzfEp/5i5qNY=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=HCsnwhxLxrF/z65WpDtJGj9olkTBwiPJNDBfp6PAB4dqShk4SV2RdPHsBYlDMCw+Z KpForSNsrZOwDSIme8N9a83a7847SkU5yka6ZU9J0X0PCZd5/NRulVeH5mgoEWUPwl wAkWYdeCBQo5+HKdK2nRSLlIBQpMRo6lK+nRrh5o= Date: Mon, 26 Oct 2020 20:06:46 -0700 From: Jakub Kicinski To: Mauro Carvalho Chehab Cc: Linux Doc Mailing List , Mark Brown , "David S. Miller" , "Jonathan Corbet" , linux-kernel@vger.kernel.org, netdev@vger.kernel.org Subject: Re: [PATCH RESEND 3/3] net: core: fix some kernel-doc markups Message-ID: <20201026200646.50dbb231@kicinski-fedora-PC1C0HJN.hsd1.ca.comcast.net> In-Reply-To: <492b5ee3aca655ffad6e95e61d9b4019e69b8e3a.1603705472.git.mchehab+huawei@kernel.org> References: <492b5ee3aca655ffad6e95e61d9b4019e69b8e3a.1603705472.git.mchehab+huawei@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Mon, 26 Oct 2020 10:47:38 +0100 Mauro Carvalho Chehab wrote: > Some identifiers have different names between their prototypes > and the kernel-doc markup. > > In the specific case of netif_subqueue_stopped(), keep the > current markup for __netif_subqueue_stopped(), adding a > new one for netif_subqueue_stopped(). > > Signed-off-by: Mauro Carvalho Chehab > @@ -3590,6 +3590,13 @@ static inline bool __netif_subqueue_stopped(const struct net_device *dev, > return netif_tx_queue_stopped(txq); > } > > +/** > + * netif_subqueue_stopped - test status of subqueue > + * @dev: network device > + * @skb: sub queue buffer pointer Ah, no: "socket buffer from which to get the mapping" > + * > + * Check individual transmit queue of a device with multiple transmit queues. > + */ > static inline bool netif_subqueue_stopped(const struct net_device *dev, > struct sk_buff *skb) > {