Re: [dpdk-dev] [PATCH v6 3/5] examples/l3fwd: add FIB infrastructure

2021-04-06 Thread Walsh, Conor
> > Acked-by: Anatoly Burako > > --- > > Burakov* Sorry about that! > > > break; > > > > case 'L': > > - l3fwd_lpm_on = 1; > > + if (lookup_mode != L3FWD_LOOKUP_DEFAULT) { > > + fprintf(stderr, "Onl

Re: [dpdk-dev] [PATCH v6 3/5] examples/l3fwd: add FIB infrastructure

2021-04-02 Thread Burakov, Anatoly
On 02-Apr-21 11:52 AM, Conor Walsh wrote: The purpose of this commit is to add the necessary function calls and supporting infrastructure to allow the Forwarding Information Base (FIB) library to be integrated into the l3fwd sample app. Instead of adding an individual flag for FIB, a new flag '--

[dpdk-dev] [PATCH v6 3/5] examples/l3fwd: add FIB infrastructure

2021-04-02 Thread Conor Walsh
The purpose of this commit is to add the necessary function calls and supporting infrastructure to allow the Forwarding Information Base (FIB) library to be integrated into the l3fwd sample app. Instead of adding an individual flag for FIB, a new flag '--lookup' has been added that allows the user