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

2021-03-08 Thread Walsh, Conor
> > #define CMD_LINE_OPT_CONFIG "config" > > @@ -596,6 +611,10 @@ parse_args(int argc, char **argv) > > l3fwd_lpm_on = 1; > > break; > > > > + case 'F': > > + l3fwd_fib_on = 1; > > + break; > > + > >

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

2021-03-08 Thread Medvedkin, Vladimir
On 19/02/2021 15:09, Walsh, Conor 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. The flag '-F' has been added to the applications options t

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

2021-03-03 Thread Burakov, Anatoly
On 19-Feb-21 3:09 PM, 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. The flag '-F' has been added to the applications options to a

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

2021-03-02 Thread Ananyev, Konstantin
> > 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. > The flag '-F' has been added to the applications options to allow > the user to specify that

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

2021-02-19 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. The flag '-F' has been added to the applications options to allow the user to specify that l3fwd uses FI