Re: [dpdk-dev] [PATCH v2] examples/ipsec-secgw: add per core packet stats

2020-05-05 Thread Ananyev, Konstantin
> > > @@ -1159,6 +1243,19 @@ ipsec_poll_mode_worker(void) > > > drain_tx_buffers(qconf); > > > drain_crypto_buffers(qconf); > > > prev_tsc = cur_tsc; > > > +#ifdef ENABLE_STATS > > > + if (lcore_id == rte_get_master_lcore()) {

Re: [dpdk-dev] [PATCH v2] examples/ipsec-secgw: add per core packet stats

2020-05-02 Thread Anoob Joseph
Raju Athreya ; dev@dpdk.org > Subject: [EXT] RE: [dpdk-dev] [PATCH v2] examples/ipsec-secgw: add per core > packet stats > > External Email > > -- > > > Adding per core packet handling stats to analyze

Re: [dpdk-dev] [PATCH v2] examples/ipsec-secgw: add per core packet stats

2020-04-24 Thread Ananyev, Konstantin
> Adding per core packet handling stats to analyze traffic distribution > when multiple cores are engaged. > > Since aggregating the packet stats across cores would affect > performance, keeping the feature disabled using compile time flags. > > Signed-off-by: Anoob Joseph > --- > > v2: > * A

[dpdk-dev] [PATCH v2] examples/ipsec-secgw: add per core packet stats

2020-04-23 Thread Anoob Joseph
Adding per core packet handling stats to analyze traffic distribution when multiple cores are engaged. Since aggregating the packet stats across cores would affect performance, keeping the feature disabled using compile time flags. Signed-off-by: Anoob Joseph --- v2: * Added lookup failure case