Re: [PATCH v4 2/2] lpm: add a scalar version of lookupx4 function

2022-06-03 Thread Thomas Monjalon
01/06/2022 13:52, Medvedkin, Vladimir: > On 01/06/2022 12:15, Stanislaw Kardach wrote: > > From: Michal Mazurek > > > > Add an implementation of the rte_lpm_lookupx4() function for platforms > > without support for vector operations. > > > > This will be useful in the upcoming RISC-V port as wel

Re: [PATCH v4 2/2] lpm: add a scalar version of lookupx4 function

2022-06-01 Thread Medvedkin, Vladimir
On 01/06/2022 12:15, Stanislaw Kardach wrote: From: Michal Mazurek Add an implementation of the rte_lpm_lookupx4() function for platforms without support for vector operations. This will be useful in the upcoming RISC-V port as well as any platform which may want to start with a basic level

[PATCH v4 2/2] lpm: add a scalar version of lookupx4 function

2022-06-01 Thread Stanislaw Kardach
From: Michal Mazurek Add an implementation of the rte_lpm_lookupx4() function for platforms without support for vector operations. This will be useful in the upcoming RISC-V port as well as any platform which may want to start with a basic level of LPM support. Signed-off-by: Michal Mazurek Si