From patchwork Mon Sep 6 16:02:43 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vladimir Medvedkin X-Patchwork-Id: 98092 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 505BCA0C55; Mon, 6 Sep 2021 18:02:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F7F8410FA; Mon, 6 Sep 2021 18:02:52 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 12DF7410ED; Mon, 6 Sep 2021 18:02:49 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10099"; a="199529942" X-IronPort-AV: E=Sophos;i="5.85,272,1624345200"; d="scan'208";a="199529942" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 06 Sep 2021 09:02:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,272,1624345200"; d="scan'208";a="537158507" Received: from silpixa00400072.ir.intel.com ([10.237.222.213]) by FMSMGA003.fm.intel.com with ESMTP; 06 Sep 2021 09:02:45 -0700 From: Vladimir Medvedkin To: dev@dpdk.org Cc: john.mcnamara@intel.com, stable@dpdk.org Date: Mon, 6 Sep 2021 17:02:43 +0100 Message-Id: <1630944163-363580-1-git-send-email-vladimir.medvedkin@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH] hash: fix doxygen comments X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Fixes: 7574c3ef7428 ("hash: add toeplitz algorithm used by RSS") Cc: stable@dpdk.org Signed-off-by: Vladimir Medvedkin Acked-by: John McNamara --- lib/hash/rte_thash.h | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/lib/hash/rte_thash.h b/lib/hash/rte_thash.h index 6e6861c..b3cedea 100644 --- a/lib/hash/rte_thash.h +++ b/lib/hash/rte_thash.h @@ -9,20 +9,17 @@ /** * @file * - * toeplitz hash functions. - */ - -#ifdef __cplusplus -extern "C" { -#endif - -/** * Software implementation of the Toeplitz hash function used by RSS. * Can be used either for packet distribution on single queue NIC * or for simulating of RSS computation on specific NIC (for example * after GRE header decapsulating) + * */ +#ifdef __cplusplus +extern "C" { +#endif + #include #include #include