Re: [dpdk-dev] [PATCH v4 4/5] examples/l3fwd: implement FIB lookup method

2021-03-15 Thread Walsh, Conor
Hi Vladimir, > > + /* Add IPv4 and IPv6 hops to one array depending on type. */ > > + for (i = 0; i < nb_rx; i++) { > > + if (type_arr[i]) > > + nh = (uint16_t)hopsv4[ipv4_arr_assem++]; > > + else > > + nh = (uint16_t)hopsv6[ipv6_arr_as

Re: [dpdk-dev] [PATCH v4 4/5] examples/l3fwd: implement FIB lookup method

2021-03-12 Thread Medvedkin, Vladimir
Hi Conor, see comment inlined On 11/03/2021 12:01, Conor Walsh wrote: This patch implements the Forwarding Information Base (FIB) library in l3fwd using the function calls and infrastructure introduced in the previous patch. Signed-off-by: Conor Walsh Acked-by: Konstantin Ananyev --- examp