01/11/2019 16:21, Vladimir Medvedkin: > This is heavily reworked version of previous RIB library series: > https://mails.dpdk.org/archives/dev/2018-April/099492.html > > app/test/Makefile | 7 + > app/test/autotest_data.py | 48 +++ > app/test/meson.build | 16 + > app/test/test_fib.c | 414 ++++++++++++++++++++ > app/test/test_fib6.c | 423 +++++++++++++++++++++ > app/test/test_fib6_perf.c | 157 ++++++++ > app/test/test_fib_perf.c | 411 ++++++++++++++++++++ > app/test/test_rib.c | 351 +++++++++++++++++ > app/test/test_rib6.c | 357 +++++++++++++++++ > config/common_base | 11 + > doc/api/doxy-api.conf.in | 2 + > lib/Makefile | 4 + > lib/librte_fib/Makefile | 25 ++ > lib/librte_fib/dir24_8.c | 737 +++++++++++++++++++++++++++++++++++ > lib/librte_fib/dir24_8.h | 36 ++ > lib/librte_fib/meson.build | 8 + > lib/librte_fib/rte_fib.c | 319 ++++++++++++++++ > lib/librte_fib/rte_fib.h | 188 +++++++++ > lib/librte_fib/rte_fib6.c | 322 ++++++++++++++++ > lib/librte_fib/rte_fib6.h | 193 ++++++++++ > lib/librte_fib/rte_fib_version.map | 23 ++ > lib/librte_fib/trie.c | 760 > +++++++++++++++++++++++++++++++++++++ > lib/librte_fib/trie.h | 37 ++ > lib/librte_rib/Makefile | 25 ++ > lib/librte_rib/meson.build | 8 + > lib/librte_rib/rte_rib.c | 532 ++++++++++++++++++++++++++ > lib/librte_rib/rte_rib.h | 277 ++++++++++++++ > lib/librte_rib/rte_rib6.c | 598 +++++++++++++++++++++++++++++ > lib/librte_rib/rte_rib6.h | 334 ++++++++++++++++ > lib/librte_rib/rte_rib_version.map | 35 ++ > lib/meson.build | 4 +- > mk/rte.app.mk | 2 + > 32 files changed, 6663 insertions(+), 1 deletion(-)
You forgot to update MAINTAINERS and the release notes. I did it while merging. Applied, thanks

