DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] test/event: increase default queue depth for tests
@ 2024-06-19  6:32 Anoob Joseph
  2024-06-19  6:53 ` Gujjar, Abhinandan S
  0 siblings, 1 reply; 3+ messages in thread
From: Anoob Joseph @ 2024-06-19  6:32 UTC (permalink / raw)
  To: Abhinandan Gujjar, Akhil Goyal; +Cc: Jerin Jacob, dev

With crypto adapter, larger queue depths are desirable since same queue
could be used from multiple cores at the same time. With devices that
are capable of doing large bursts, larger queues would help in multi
core management of same queue.

Increase default queue depth in crypto adapter tests to cater to such
use cases.

Signed-off-by: Anoob Joseph <anoobj@marvell.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 0c56744ba0..9d38a66bfa 100644
--- a/app/test/test_event_crypto_adapter.c
+++ b/app/test/test_event_crypto_adapter.c
@@ -32,7 +32,7 @@ test_event_crypto_adapter(void)
 #define NUM_MBUFS                 (8191)
 #define MBUF_CACHE_SIZE           (256)
 #define MAXIMUM_IV_LENGTH         (16)
-#define DEFAULT_NUM_OPS_INFLIGHT  (128)
+#define DEFAULT_NUM_OPS_INFLIGHT   1024
 #define MAX_NB_SESSIONS            4
 #define TEST_APP_PORT_ID           0
 #define TEST_APP_EV_QUEUE_ID       0
-- 
2.45.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH] test/event: increase default queue depth for tests
  2024-06-19  6:32 [PATCH] test/event: increase default queue depth for tests Anoob Joseph
@ 2024-06-19  6:53 ` Gujjar, Abhinandan S
  2024-06-26 10:08   ` Jerin Jacob
  0 siblings, 1 reply; 3+ messages in thread
From: Gujjar, Abhinandan S @ 2024-06-19  6:53 UTC (permalink / raw)
  To: Anoob Joseph, Akhil Goyal; +Cc: Jerin Jacob, dev

Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>

> -----Original Message-----
> From: Anoob Joseph <anoobj@marvell.com>
> Sent: Wednesday, June 19, 2024 12:03 PM
> To: Gujjar, Abhinandan S <abhinandan.gujjar@intel.com>; Akhil Goyal
> <gakhil@marvell.com>
> Cc: Jerin Jacob <jerinj@marvell.com>; dev@dpdk.org
> Subject: [PATCH] test/event: increase default queue depth for tests
> 
> With crypto adapter, larger queue depths are desirable since same queue could
> be used from multiple cores at the same time. With devices that are capable of
> doing large bursts, larger queues would help in multi core management of same
> queue.
> 
> Increase default queue depth in crypto adapter tests to cater to such use cases.
> 
> Signed-off-by: Anoob Joseph <anoobj@marvell.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 0c56744ba0..9d38a66bfa 100644
> --- a/app/test/test_event_crypto_adapter.c
> +++ b/app/test/test_event_crypto_adapter.c
> @@ -32,7 +32,7 @@ test_event_crypto_adapter(void)
>  #define NUM_MBUFS                 (8191)
>  #define MBUF_CACHE_SIZE           (256)
>  #define MAXIMUM_IV_LENGTH         (16)
> -#define DEFAULT_NUM_OPS_INFLIGHT  (128)
> +#define DEFAULT_NUM_OPS_INFLIGHT   1024
>  #define MAX_NB_SESSIONS            4
>  #define TEST_APP_PORT_ID           0
>  #define TEST_APP_EV_QUEUE_ID       0
> --
> 2.45.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] test/event: increase default queue depth for tests
  2024-06-19  6:53 ` Gujjar, Abhinandan S
@ 2024-06-26 10:08   ` Jerin Jacob
  0 siblings, 0 replies; 3+ messages in thread
From: Jerin Jacob @ 2024-06-26 10:08 UTC (permalink / raw)
  To: Gujjar, Abhinandan S; +Cc: Anoob Joseph, Akhil Goyal, Jerin Jacob, dev

On Wed, Jun 19, 2024 at 12:23 PM Gujjar, Abhinandan S
<abhinandan.gujjar@intel.com> wrote:
>
> Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>

Updated the git commit as follows and applied to
dpdk-next-net-eventdev/for-main. Thanks

    test/event: increase default crypto queue depth

    With crypto adapter, larger queue depths are desirable since same queue
    could be used from multiple cores at the same time. With devices that
    are capable of doing large bursts, larger queues would help in multi
    core management of same queue.

    Increase default queue depth in crypto adapter tests to cater to such
    use cases.

    Signed-off-by: Anoob Joseph <anoobj@marvell.com>
    Acked-by: Abhinandan Gujjar <abhinandan.gujjar@intel.com>

>
> > -----Original Message-----
> > From: Anoob Joseph <anoobj@marvell.com>
> > Sent: Wednesday, June 19, 2024 12:03 PM
> > To: Gujjar, Abhinandan S <abhinandan.gujjar@intel.com>; Akhil Goyal
> > <gakhil@marvell.com>
> > Cc: Jerin Jacob <jerinj@marvell.com>; dev@dpdk.org
> > Subject: [PATCH] test/event: increase default queue depth for tests
> >
> > With crypto adapter, larger queue depths are desirable since same queue could
> > be used from multiple cores at the same time. With devices that are capable of
> > doing large bursts, larger queues would help in multi core management of same
> > queue.
> >
> > Increase default queue depth in crypto adapter tests to cater to such use cases.
> >
> > Signed-off-by: Anoob Joseph <anoobj@marvell.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 0c56744ba0..9d38a66bfa 100644
> > --- a/app/test/test_event_crypto_adapter.c
> > +++ b/app/test/test_event_crypto_adapter.c
> > @@ -32,7 +32,7 @@ test_event_crypto_adapter(void)
> >  #define NUM_MBUFS                 (8191)
> >  #define MBUF_CACHE_SIZE           (256)
> >  #define MAXIMUM_IV_LENGTH         (16)
> > -#define DEFAULT_NUM_OPS_INFLIGHT  (128)
> > +#define DEFAULT_NUM_OPS_INFLIGHT   1024
> >  #define MAX_NB_SESSIONS            4
> >  #define TEST_APP_PORT_ID           0
> >  #define TEST_APP_EV_QUEUE_ID       0
> > --
> > 2.45.2
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-06-26 10:21 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-06-19  6:32 [PATCH] test/event: increase default queue depth for tests Anoob Joseph
2024-06-19  6:53 ` Gujjar, Abhinandan S
2024-06-26 10:08   ` Jerin Jacob

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).