From patchwork Sun Jun 28 21:39:38 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colton Lewis X-Patchwork-Id: 216948 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=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH, MAILING_LIST_MULTI, SIGNED_OFF_BY, SPF_HELO_NONE, SPF_PASS, URIBL_BLOCKED autolearn=ham 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 6ADE6C433E0 for ; Sun, 28 Jun 2020 21:39:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 470F320663 for ; Sun, 28 Jun 2020 21:39:43 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=protonmail.com header.i=@protonmail.com header.b="sWRCbXZ9" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726609AbgF1Vjm (ORCPT ); Sun, 28 Jun 2020 17:39:42 -0400 Received: from mail-40136.protonmail.ch ([185.70.40.136]:25434 "EHLO mail-40136.protonmail.ch" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726188AbgF1Vjm (ORCPT ); Sun, 28 Jun 2020 17:39:42 -0400 Date: Sun, 28 Jun 2020 21:39:38 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail; t=1593380380; bh=A+f3FHAixuOpth56vJ/0YcOYxJzSe8XBooG6LYoJkIE=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References:From; b=sWRCbXZ9LMVBYDaYjfVuKmcI7c4jOgo14cbEcxsPXWrGtMsYklHXsZ5e4+iECz81f wXlIlkeRrEGldq/tPMptpx29RGGuU3FXjmgtsi8Pvq8A2duSWjOvm6taJEbhwum5CX oA6FlnwzUk8nBgjR3Yr4jhHHFricTBi/FybFcUSE= To: linux@armlinux.org.uk From: Colton Lewis Cc: netdev@vger.kernel.org, Colton Lewis Reply-To: Colton Lewis Subject: [PATCH v4 2/2] net: core: correct trivial kernel-doc inconsistencies Message-ID: <20200628213912.116330-2-colton.w.lewis@protonmail.com> In-Reply-To: <3034206.AJdgDx1Vlc@laptop.coltonlewis.name> References: <20200621154248.GB338481@lunn.ch> <20200621155345.GV1551@shell.armlinux.org.uk> <3315816.iIbC2pHGDl@laptop.coltonlewis.name> <20200621234431.GZ1551@shell.armlinux.org.uk> <3034206.AJdgDx1Vlc@laptop.coltonlewis.name> MIME-Version: 1.0 Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Silence documentation build warnings by correcting kernel-doc comments. ./include/linux/netdevice.h:2138: warning: Function parameter or member 'napi_defer_hard_irqs' not described in 'net_device' Signed-off-by: Colton Lewis --- include/linux/netdevice.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 6fc613ed8eae..515791a9b299 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1742,6 +1742,7 @@ enum netdev_priv_flags { * @real_num_rx_queues: Number of RX queues currently active in device * @xdp_prog: XDP sockets filter program pointer * @gro_flush_timeout: timeout for GRO layer in NAPI + * @napi_defer_hard_irqs: count of deferred hardware interrupt requests * * @rx_handler: handler for received packets * @rx_handler_data: XXX: need comments on this one