From: "Medvedkin, Vladimir" <vladimir.medvedkin@intel.com>
To: dev@dpdk.org
Cc: konstantin.ananyev@intel.com, akhil.goyal@nxp.com
Subject: Re: [dpdk-dev] [PATCH 1/4] ipsec: move ipsec sad name length into .h
Date: Wed, 11 Dec 2019 16:43:43 +0000 [thread overview]
Message-ID: <4d0f64de-897c-4a90-0156-516d13e4896c@intel.com> (raw)
In-Reply-To: <4697977e04cf3622d1752e171956709a3eff6e10.1576080741.git.vladimir.medvedkin@intel.com>
Self NACK for series
Forgot cover letter, will resend again.
On 11/12/2019 16:13, Vladimir Medvedkin wrote:
> Move IPSEC_SAD_NAMESIZE into public header
> and rename it to RTE_IPSEC_SAD_NAMESIZE
>
> Signed-off-by: Vladimir Medvedkin <vladimir.medvedkin@intel.com>
> ---
> lib/librte_ipsec/ipsec_sad.c | 20 ++++++++++----------
> lib/librte_ipsec/rte_ipsec_sad.h | 2 ++
> 2 files changed, 12 insertions(+), 10 deletions(-)
>
> diff --git a/lib/librte_ipsec/ipsec_sad.c b/lib/librte_ipsec/ipsec_sad.c
> index db2c44c..2c994ed 100644
> --- a/lib/librte_ipsec/ipsec_sad.c
> +++ b/lib/librte_ipsec/ipsec_sad.c
> @@ -20,7 +20,6 @@
> * indicate presence of entries with the same SPI in DIP and DIP+SIP tables.
> */
>
> -#define IPSEC_SAD_NAMESIZE 64
> #define SAD_PREFIX "SAD_"
> /* "SAD_<name>" */
> #define SAD_FORMAT SAD_PREFIX "%s"
> @@ -34,7 +33,7 @@ struct hash_cnt {
> };
>
> struct rte_ipsec_sad {
> - char name[IPSEC_SAD_NAMESIZE];
> + char name[RTE_IPSEC_SAD_NAMESIZE];
> struct rte_hash *hash[RTE_IPSEC_SAD_KEY_TYPE_MASK];
> /* Array to track number of more specific rules
> * (spi_dip or spi_dip_sip). Used only in add/delete
> @@ -231,7 +230,7 @@ struct rte_ipsec_sad *
> rte_ipsec_sad_create(const char *name, const struct rte_ipsec_sad_conf *conf)
> {
> char hash_name[RTE_HASH_NAMESIZE];
> - char sad_name[IPSEC_SAD_NAMESIZE];
> + char sad_name[RTE_IPSEC_SAD_NAMESIZE];
> struct rte_tailq_entry *te;
> struct rte_ipsec_sad_list *sad_list;
> struct rte_ipsec_sad *sad, *tmp_sad = NULL;
> @@ -249,8 +248,8 @@ rte_ipsec_sad_create(const char *name, const struct rte_ipsec_sad_conf *conf)
> return NULL;
> }
>
> - ret = snprintf(sad_name, IPSEC_SAD_NAMESIZE, SAD_FORMAT, name);
> - if (ret < 0 || ret >= IPSEC_SAD_NAMESIZE) {
> + ret = snprintf(sad_name, RTE_IPSEC_SAD_NAMESIZE, SAD_FORMAT, name);
> + if (ret < 0 || ret >= RTE_IPSEC_SAD_NAMESIZE) {
> rte_errno = ENAMETOOLONG;
> return NULL;
> }
> @@ -326,7 +325,8 @@ rte_ipsec_sad_create(const char *name, const struct rte_ipsec_sad_conf *conf)
> /* guarantee there's no existing */
> TAILQ_FOREACH(te, sad_list, next) {
> tmp_sad = (struct rte_ipsec_sad *)te->data;
> - if (strncmp(sad_name, tmp_sad->name, IPSEC_SAD_NAMESIZE) == 0)
> + if (strncmp(sad_name, tmp_sad->name,
> + RTE_IPSEC_SAD_NAMESIZE) == 0)
> break;
> }
> if (te != NULL) {
> @@ -354,14 +354,14 @@ rte_ipsec_sad_create(const char *name, const struct rte_ipsec_sad_conf *conf)
> struct rte_ipsec_sad *
> rte_ipsec_sad_find_existing(const char *name)
> {
> - char sad_name[IPSEC_SAD_NAMESIZE];
> + char sad_name[RTE_IPSEC_SAD_NAMESIZE];
> struct rte_ipsec_sad *sad = NULL;
> struct rte_tailq_entry *te;
> struct rte_ipsec_sad_list *sad_list;
> int ret;
>
> - ret = snprintf(sad_name, IPSEC_SAD_NAMESIZE, SAD_FORMAT, name);
> - if (ret < 0 || ret >= IPSEC_SAD_NAMESIZE) {
> + ret = snprintf(sad_name, RTE_IPSEC_SAD_NAMESIZE, SAD_FORMAT, name);
> + if (ret < 0 || ret >= RTE_IPSEC_SAD_NAMESIZE) {
> rte_errno = ENAMETOOLONG;
> return NULL;
> }
> @@ -372,7 +372,7 @@ rte_ipsec_sad_find_existing(const char *name)
> rte_mcfg_tailq_read_lock();
> TAILQ_FOREACH(te, sad_list, next) {
> sad = (struct rte_ipsec_sad *) te->data;
> - if (strncmp(sad_name, sad->name, IPSEC_SAD_NAMESIZE) == 0)
> + if (strncmp(sad_name, sad->name, RTE_IPSEC_SAD_NAMESIZE) == 0)
> break;
> }
> rte_mcfg_tailq_read_unlock();
> diff --git a/lib/librte_ipsec/rte_ipsec_sad.h b/lib/librte_ipsec/rte_ipsec_sad.h
> index 8386f73..dcc8224 100644
> --- a/lib/librte_ipsec/rte_ipsec_sad.h
> +++ b/lib/librte_ipsec/rte_ipsec_sad.h
> @@ -47,6 +47,8 @@ union rte_ipsec_sad_key {
> struct rte_ipsec_sadv6_key v6;
> };
>
> +/** Max number of characters in SAD name. */
> +#define RTE_IPSEC_SAD_NAMESIZE 64
> /** Flag to create SAD with ipv6 dip and sip addresses */
> #define RTE_IPSEC_SAD_FLAG_IPV6 0x1
> /** Flag to support reader writer concurrency */
--
Regards,
Vladimir
next prev parent reply other threads:[~2019-12-11 16:43 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-11 16:13 Vladimir Medvedkin
2019-12-11 16:13 ` [dpdk-dev] [PATCH 2/4] examples/ipsec-secgw: implement inbound SAD Vladimir Medvedkin
2019-12-11 16:13 ` [dpdk-dev] [PATCH 3/4] examples/ipsec-secgw: integrate " Vladimir Medvedkin
2019-12-11 16:13 ` [dpdk-dev] [PATCH 4/4] examples/ipsec-secgw: get rid of maximum sa limitation Vladimir Medvedkin
2019-12-11 16:43 ` Medvedkin, Vladimir [this message]
2019-12-11 16:45 [dpdk-dev] [PATCH 0/4] integrate librte_ipsec SAD into ipsec-secgw Vladimir Medvedkin
2019-12-11 16:45 ` [dpdk-dev] [PATCH 1/4] ipsec: move ipsec sad name length into .h Vladimir Medvedkin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=4d0f64de-897c-4a90-0156-516d13e4896c@intel.com \
--to=vladimir.medvedkin@intel.com \
--cc=akhil.goyal@nxp.com \
--cc=dev@dpdk.org \
--cc=konstantin.ananyev@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).