test/event_crypto: fix mempool name

Message ID 20190927081606.22931-1-hemant.agrawal@nxp.com (mailing list archive)
State Accepted, archived
Delegated to: Jerin Jacob
Headers
Series test/event_crypto: fix mempool name |

Checks

Context Check Description
ci/Intel-compilation fail Compilation issues
ci/checkpatch success coding style OK
ci/iol-dpdk_compile success Compile Testing PASS
ci/iol-dpdk_compile_ovs success Compile Testing PASS
ci/iol-dpdk_compile_spdk success Compile Testing PASS
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS

Commit Message

Hemant Agrawal Sept. 27, 2019, 8:16 a.m. UTC
  The longer mempool name size is causing error in
rte_mempool_create_empty for dpaa1

ret = snprintf(mz_name, sizeof(mz_name), RTE_MEMPOOL_MZ_FORMAT, name);
This patch reduce the size of mempool name string

Fixes: 24054e3640a2 ("test/crypto: use separate session mempools")
Cc: stable@dpdk.org

Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
---
 app/test/test_event_crypto_adapter.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Gujjar, Abhinandan S Sept. 27, 2019, 10:09 a.m. UTC | #1
Acked-by: abhinandan.gujjar@intel.com


> -----Original Message-----
> From: Hemant Agrawal <hemant.agrawal@nxp.com>
> Sent: Friday, September 27, 2019 1:46 PM
> To: dev@dpdk.org; Gujjar, Abhinandan S <abhinandan.gujjar@intel.com>
> Cc: stable@dpdk.org; Hemant Agrawal <hemant.agrawal@nxp.com>
> Subject: [PATCH] test/event_crypto: fix mempool name
> 
> The longer mempool name size is causing error in rte_mempool_create_empty
> for dpaa1
> 
> ret = snprintf(mz_name, sizeof(mz_name), RTE_MEMPOOL_MZ_FORMAT,
> name); This patch reduce the size of mempool name string
> 
> Fixes: 24054e3640a2 ("test/crypto: use separate session mempools")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> ---
>  app/test/test_event_crypto_adapter.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/app/test/test_event_crypto_adapter.c
> b/app/test/test_event_crypto_adapter.c
> index 73655020d..cff7ad61f 100644
> --- a/app/test/test_event_crypto_adapter.c
> +++ b/app/test/test_event_crypto_adapter.c
> @@ -536,7 +536,7 @@ configure_cryptodev(void)
>  			"session mempool allocation failed\n");
> 
>  	params.session_priv_mpool = rte_mempool_create(
> -				"CRYPTO_ADAPTER_SESSION_MP_PRIV",
> +				"CRYPTO_AD_SESS_MP_PRIV",
>  				MAX_NB_SESSIONS,
>  				session_size,
>  				0, 0, NULL, NULL, NULL,
> --
> 2.17.1
  
Jerin Jacob Sept. 30, 2019, 8:18 a.m. UTC | #2
On Fri, Sep 27, 2019 at 3:45 PM Gujjar, Abhinandan S
<abhinandan.gujjar@intel.com> wrote:
>
> Acked-by: abhinandan.gujjar@intel.com

Changed to  Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>
and Applied to dpdk-next-eventdev/master. Thanks.

>
>
> > -----Original Message-----
> > From: Hemant Agrawal <hemant.agrawal@nxp.com>
> > Sent: Friday, September 27, 2019 1:46 PM
> > To: dev@dpdk.org; Gujjar, Abhinandan S <abhinandan.gujjar@intel.com>
> > Cc: stable@dpdk.org; Hemant Agrawal <hemant.agrawal@nxp.com>
> > Subject: [PATCH] test/event_crypto: fix mempool name
> >
> > The longer mempool name size is causing error in rte_mempool_create_empty
> > for dpaa1
> >
> > ret = snprintf(mz_name, sizeof(mz_name), RTE_MEMPOOL_MZ_FORMAT,
> > name); This patch reduce the size of mempool name string
> >
> > Fixes: 24054e3640a2 ("test/crypto: use separate session mempools")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com>
> > ---
> >  app/test/test_event_crypto_adapter.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/app/test/test_event_crypto_adapter.c
> > b/app/test/test_event_crypto_adapter.c
> > index 73655020d..cff7ad61f 100644
> > --- a/app/test/test_event_crypto_adapter.c
> > +++ b/app/test/test_event_crypto_adapter.c
> > @@ -536,7 +536,7 @@ configure_cryptodev(void)
> >                       "session mempool allocation failed\n");
> >
> >       params.session_priv_mpool = rte_mempool_create(
> > -                             "CRYPTO_ADAPTER_SESSION_MP_PRIV",
> > +                             "CRYPTO_AD_SESS_MP_PRIV",
> >                               MAX_NB_SESSIONS,
> >                               session_size,
> >                               0, 0, NULL, NULL, NULL,
> > --
> > 2.17.1
>
  

Patch

diff --git a/app/test/test_event_crypto_adapter.c b/app/test/test_event_crypto_adapter.c
index 73655020d..cff7ad61f 100644
--- a/app/test/test_event_crypto_adapter.c
+++ b/app/test/test_event_crypto_adapter.c
@@ -536,7 +536,7 @@  configure_cryptodev(void)
 			"session mempool allocation failed\n");
 
 	params.session_priv_mpool = rte_mempool_create(
-				"CRYPTO_ADAPTER_SESSION_MP_PRIV",
+				"CRYPTO_AD_SESS_MP_PRIV",
 				MAX_NB_SESSIONS,
 				session_size,
 				0, 0, NULL, NULL, NULL,