Home
last modified time | relevance | path

Searched refs:rte_fib_add (Results 1 – 9 of 9) sorted by relevance

/dpdk/app/test/
H A Dtest_fib.c175 ret = rte_fib_add(NULL, ip, depth, nh); in test_add_del_invalid()
189 ret = rte_fib_add(fib, ip, RTE_FIB_MAXDEPTH + 1, nh); in test_add_del_invalid()
296 ret = rte_fib_add(fib, ip_add, i, i); in check_fib()
317 ret = rte_fib_add(fib, ip_add, RTE_FIB_MAXDEPTH - i, in check_fib()
H A Dtest_fib_perf.c364 if (rte_fib_add(fib, large_route_table[i].ip, in test_fib_perf()
/dpdk/lib/fib/
H A Dversion.map13 rte_fib_add;
H A Drte_fib.h147 rte_fib_add(struct rte_fib *fib, uint32_t ip, uint8_t depth, uint64_t next_hop);
H A Drte_fib.c119 rte_fib_add(struct rte_fib *fib, uint32_t ip, uint8_t depth, uint64_t next_hop) in rte_fib_add() function
/dpdk/doc/guides/prog_guide/
H A Drib_lib.rst167 rte_fib_add(fib, ip, depth, new_nh);
H A Dfib_lib.rst40 * ``rte_fib_add()``: Add a new route with a corresponding next hop ID to the
/dpdk/examples/l3fwd/
H A Dl3fwd_fib.c624 ret = rte_fib_add(ipv4_l3fwd_fib_lookup_struct[socketid], in setup_fib()
/dpdk/app/test-fib/
H A Dmain.c901 ret = rte_fib_add(fib, rt[i + j].addr, rt[i + j].depth, in run_v4()