Re: [PATCH v2 1/1] examples/l3fwd: fix scalar LPM compilation

2022-05-23 Thread David Marchand
On Thu, May 19, 2022 at 4:53 PM David Marchand wrote: > On Wed, May 11, 2022 at 4:57 PM Stanislaw Kardach wrote: > > > > The lpm_process_event_pkt() can either process a packet using an > > architecture specific (defined for X86/SSE, ARM/Neon and PPC64/Altivec) > > path or a scalar one. The choic

Re: [PATCH v2 1/1] examples/l3fwd: fix scalar LPM compilation

2022-05-19 Thread David Marchand
On Wed, May 11, 2022 at 4:57 PM Stanislaw Kardach wrote: > > The lpm_process_event_pkt() can either process a packet using an > architecture specific (defined for X86/SSE, ARM/Neon and PPC64/Altivec) > path or a scalar one. The choice is however done using an ifdef > pre-processor macro. Because o

[PATCH v2 1/1] examples/l3fwd: fix scalar LPM compilation

2022-05-11 Thread Stanislaw Kardach
The lpm_process_event_pkt() can either process a packet using an architecture specific (defined for X86/SSE, ARM/Neon and PPC64/Altivec) path or a scalar one. The choice is however done using an ifdef pre-processor macro. Because of that the scalar version was apparently not widely excersized/compi