From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id F3258A0C41; Wed, 4 Aug 2021 11:56:32 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E2BA34122A; Wed, 4 Aug 2021 11:56:28 +0200 (CEST) Received: from mail-108-mta108.mxroute.com (mail-108-mta108.mxroute.com [136.175.108.108]) by mails.dpdk.org (Postfix) with ESMTP id 111544014F for ; Wed, 4 Aug 2021 11:56:25 +0200 (CEST) Received: from filter004.mxroute.com ([149.28.56.236] filter004.mxroute.com) (Authenticated sender: mN4UYu2MZsgR) by mail-108-mta108.mxroute.com (ZoneMTA) with ESMTPSA id 17b1097b35200074ba.001 for (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES128-GCM-SHA256); Wed, 04 Aug 2021 09:56:22 +0000 X-Zone-Loop: 10420d9bd1bd45804f9620e29adfd696c7211c5bff7a X-Originating-IP: [149.28.56.236] DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=ashroe.eu; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:MIME-Version:Date: Message-ID:From:References:Cc:To:Subject:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=g/I/Syb5aReC6aSnMNHmfjy9gV13KqJus1ZdkPlCUEw=; b=Ad6QHWbPePe3aad5uHyz/qDWsn 38suIiHjA8B9G5W1/yb2mSprrBpFwIFHBgkv46vTCN2ODfagc22nalwUxm6n2D8hMVORn6hVjAnFm bzQ0GP1g/CgQAJgyvpM/ygDYPWm17GjY52pcWcKahdppUV9jj2zXTCQcA3buhqPrSYuvUJ/6JdkdE S53af1OtvZ8ESpz9KW41TbdSZ4I2qWxOUhZ4QIthGk31Eh7FJQPsoElSUPkFx8Lf6POXmaJnfCB60 9Q5IigkJQxLq+bxf5P+DFtMxsU5W38Ck6tyVEDoYxeVyijc1WHZRTa7u40EgkUEF4+t9WTckOoasG rg5A8KVg==; To: Radu Nicolau , Konstantin Ananyev , Bernard Iremonger , Vladimir Medvedkin , Neil Horman Cc: dev@dpdk.org, Declan Doherty , Abhijit Sinha , Daniel Martin Buckley References: <20210706112904.3094598-1-radu.nicolau@intel.com> <20210706112904.3094598-9-radu.nicolau@intel.com> From: "Kinsella, Ray" Message-ID: Date: Wed, 4 Aug 2021 10:56:18 +0100 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:78.0) Gecko/20100101 Thunderbird/78.12.0 MIME-Version: 1.0 In-Reply-To: <20210706112904.3094598-9-radu.nicolau@intel.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-AuthUser: mdr@ashroe.eu X-Zone-Spam-Resolution: no action X-Zone-Spam-Status: No, score=-0.1, required=15, tests=[ARC_NA=0, RCPT_COUNT_SEVEN=0, FROM_HAS_DN=0, TO_DN_SOME=0, MIME_GOOD=-0.1, FROM_EQ_ENVFROM=0, MIME_TRACE=0, RCVD_COUNT_ZERO=0, NEURAL_SPAM=0, MID_RHS_MATCH_FROM=0] Subject: Re: [dpdk-dev] [RFC 08/10] ipsec: add support for SA telemetry 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" On 06/07/2021 12:29, Radu Nicolau wrote: > Add telemetry support for ipsec SAs > > Signed-off-by: Declan Doherty > Signed-off-by: Radu Nicolau > Signed-off-by: Abhijit Sinha > Signed-off-by: Daniel Martin Buckley > --- > lib/ipsec/esp_inb.c | 1 + > lib/ipsec/esp_outb.c | 12 +- > lib/ipsec/meson.build | 2 +- > lib/ipsec/rte_ipsec.h | 11 ++ > lib/ipsec/sa.c | 255 +++++++++++++++++++++++++++++++++++++++++- > lib/ipsec/sa.h | 21 ++++ > lib/ipsec/version.map | 8 ++ > 7 files changed, 304 insertions(+), 6 deletions(-) > [SNIP] > diff --git a/lib/ipsec/version.map b/lib/ipsec/version.map > index ad3e38b7c8..c181c1fb04 100644 > --- a/lib/ipsec/version.map > +++ b/lib/ipsec/version.map > @@ -19,3 +19,11 @@ DPDK_21 { > > local: *; > }; > + > +EXPERIMENTAL { > + global:> + Need to add a comment indicating when the symbols where added here. > + rte_ipsec_telemetry_init; > + rte_ipsec_telemetry_sa_add; > + > +}; >