Re: [PATCH] fib: network byte order IPv4 lookup

2024-10-04 Thread Vladimir Medvedkin
Hi David, Thanks for pointing out this problem, I'll send a fix and v2. пн, 30 сент. 2024 г. в 16:07, David Marchand : > On Sat, Sep 28, 2024 at 1:51 AM David Marchand > wrote: > > > > On Fri, Sep 6, 2024 at 1:07 PM Vladimir Medvedkin > > wrote: > > > > > > Previously when running rte_fib_loo

Re: [PATCH] fib: network byte order IPv4 lookup

2024-09-30 Thread David Marchand
On Sat, Sep 28, 2024 at 1:51 AM David Marchand wrote: > > On Fri, Sep 6, 2024 at 1:07 PM Vladimir Medvedkin > wrote: > > > > Previously when running rte_fib_lookup IPv4 addresses must have been in > > host byte order. > > > > This patch adds a new flag RTE_FIB_FLAG_LOOKUP_BE that can be passed on

Re: [PATCH] fib: network byte order IPv4 lookup

2024-09-27 Thread David Marchand
On Fri, Sep 6, 2024 at 1:07 PM Vladimir Medvedkin wrote: > > Previously when running rte_fib_lookup IPv4 addresses must have been in > host byte order. > > This patch adds a new flag RTE_FIB_FLAG_LOOKUP_BE that can be passed on > fib create, which will allow to have IPv4 in network byte order on >

[PATCH] fib: network byte order IPv4 lookup

2024-09-06 Thread Vladimir Medvedkin
Previously when running rte_fib_lookup IPv4 addresses must have been in host byte order. This patch adds a new flag RTE_FIB_FLAG_LOOKUP_BE that can be passed on fib create, which will allow to have IPv4 in network byte order on lookup. Signed-off-by: Vladimir Medvedkin --- app/test/test_fib.c