> From: Pavan Nikhilesh [mailto:pbhagavat...@caviumnetworks.com]
> Sent: Thursday, December 7, 2017 8:37 PM
> To: Eads, Gage <gage.e...@intel.com>; jerin.jacobkollanukka...@cavium.com;
> Van Haaren, Harry <harry.van.haa...@intel.com>; Rao, Nikhil
> <nikhil....@intel.com>; hemant.agra...@nxp.com; Ma, Liang J
> <liang.j...@intel.com>
> Cc: dev@dpdk.org; Pavan Nikhilesh <pbhagavat...@caviumnetworks.com>
> Subject: [PATCH 11/13] examples/eventdev: add atq single stage pipeline
> worker
> 
> Add optimized eventdev pipeline when ethdev supports thread safe Tx,
> number of configured stages is one and all type queue option is enabled.
> 
> Signed-off-by: Pavan Nikhilesh <pbhagavat...@caviumnetworks.com>
> ---
>  .../eventdev_pipeline_sw_pmd/pipeline_worker_tx.c  | 88
> +++++++++++++++++++++-
>  1 file changed, 86 insertions(+), 2 deletions(-)


>       if (cdata.num_stages == 1) {
> -             if (burst)
> +             if (burst && atq)
> +                     caps->worker_loop = worker_do_tx_single_burst_atq;
> +             if (burst && !atq)
>                       caps->worker_loop = worker_do_tx_single_burst;
> -             if (!burst)
> +             if (!burst && atq)
> +                     caps->worker_loop = worker_do_tx_single_atq;
> +             if (!burst && !atq)
>                       caps->worker_loop = worker_do_tx_single;
>       } else {
>               if (burst && atq)

As per previous notes, this doesn't scale.

Reply via email to