RE: [EXT] Re: [PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-07-05 Thread Rahul Bhansali
ct: [EXT] Re: [PATCH v3 1/2] examples/l3fwd: common packet group > functionality > > External Email > > -- > 23/06/2022 11:38, Rahul Bhansali: > > +#ifndef _PORT_GROUP_H_ > > +#define _P

Re: [PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-07-04 Thread Thomas Monjalon
23/06/2022 11:38, Rahul Bhansali: > +#ifndef _PORT_GROUP_H_ > +#define _PORT_GROUP_H_ No need of underscores at begin and end. > + > +#include "pkt_group.h" > + > +/* > + * Group consecutive packets with the same destination port in bursts of 4. > + * Suppose we have array of destination ports: >

Re: [EXT] Re: [PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-07-04 Thread Thomas Monjalon
04/07/2022 14:49, Rahul Bhansali: > From: Thomas Monjalon > > 23/06/2022 11:38, Rahul Bhansali: > > > This will make the packet grouping function common, so that other > > > examples can utilize as per need. > > > > > > For each architecture sse/neon/altivec, port group headers will be > > > creat

RE: [EXT] Re: [PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-07-04 Thread Rahul Bhansali
rch...@redhat.com > Subject: [EXT] Re: [PATCH v3 1/2] examples/l3fwd: common packet group > functionality > > External Email > > -- > 23/06/2022 11:38, Rahul Bhansali: > > This will make the packet gr

Re: [PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-07-03 Thread Thomas Monjalon
23/06/2022 11:38, Rahul Bhansali: > This will make the packet grouping function common, so > that other examples can utilize as per need. > > For each architecture sse/neon/altivec, port group > headers will be created under examples/common/. > > Signed-off-by: Rahul Bhansali > --- > Changes in

RE: [EXT] Re: [PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-06-28 Thread Akhil Goyal
> 23/06/2022 10:38, Rahul Bhansali пишет: > > This will make the packet grouping function common, so > > that other examples can utilize as per need. > > > > For each architecture sse/neon/altivec, port group > > headers will be created under examples/common/. > > > > Signed-off-by: Rahul Bhansali

Re: [PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-06-26 Thread Konstantin Ananyev
23/06/2022 10:38, Rahul Bhansali пишет: This will make the packet grouping function common, so that other examples can utilize as per need. For each architecture sse/neon/altivec, port group headers will be created under examples/common/. Signed-off-by: Rahul Bhansali --- Changes in v3: Create

[PATCH v3 1/2] examples/l3fwd: common packet group functionality

2022-06-23 Thread Rahul Bhansali
This will make the packet grouping function common, so that other examples can utilize as per need. For each architecture sse/neon/altivec, port group headers will be created under examples/common/. Signed-off-by: Rahul Bhansali --- Changes in v3: Created common port-group headers for architectu