Re: [dpdk-dev] [PATCH v2 1/4] ethdev: add group counter support to rte_flow

2018-04-06 Thread Mohammad Abdul Awal
On 05/04/2018 17:31, Thomas Monjalon wrote: 05/04/2018 15:51, Declan Doherty: +Group Count Query +~ + +Query group counter which can be associated with multiple flows on a specified +port. + +This function allows retrieving of group counters. Data +is gathered by special actions

Re: [dpdk-dev] [PATCH v2 1/4] ethdev: add group counter support to rte_flow

2018-04-05 Thread Thomas Monjalon
05/04/2018 15:51, Declan Doherty: > +Group Count Query > +~ > + > +Query group counter which can be associated with multiple flows on a > specified > +port. > + > +This function allows retrieving of group counters. Data > +is gathered by special actions which must be present in the

[dpdk-dev] [PATCH v2 1/4] ethdev: add group counter support to rte_flow

2018-04-05 Thread Declan Doherty
Add new RTE_FLOW_ACTION_TYPE_GROUP_COUNT action type to enable shared counters across multiple flows on a single port or across multiple flows on multiple ports within the same switch domain. Introduce new API rte_flow_query_group_count to allow querying of group counters. Signed-off-by: Declan D