On Tue, Apr 6, 2021 at 1:10 AM Thomas Monjalon <tho...@monjalon.net> wrote: > > Use rte_set_application_usage_hook() in the test applications, > so the full help including EAL options can be printed in one go > with the EAL option -h or --help. > > Signed-off-by: Thomas Monjalon <tho...@monjalon.net> > Acked-by: Wisam Jaddo <wis...@nvidia.com> > Acked-by: Bruce Richardson <bruce.richard...@intel.com> > Acked-by: Andrew Rybchenko <andrew.rybche...@oktetlabs.ru> > --- > app/pdump/main.c | 2 ++ > app/proc-info/main.c | 2 ++ > app/test-acl/main.c | 2 ++ > app/test-bbdev/main.c | 3 ++- > app/test-compress-perf/comp_perf_options.h | 2 ++ > app/test-compress-perf/comp_perf_options_parse.c | 8 ++++---- > app/test-compress-perf/main.c | 3 ++- > app/test-crypto-perf/cperf_options.h | 2 ++ > app/test-crypto-perf/cperf_options_parsing.c | 8 ++++---- > app/test-crypto-perf/main.c | 3 ++- > app/test-fib/main.c | 8 ++++++++ > app/test-flow-perf/main.c | 4 +++- > app/test-pmd/parameters.c | 4 ++-- > app/test-pmd/testpmd.c | 2 ++ > app/test-pmd/testpmd.h | 1 + > app/test-regex/main.c | 3 ++- > app/test-sad/main.c | 7 +++++++
> > + rte_set_application_usage_hook(print_usage); All DPDK APIs, We are having rte_<subsystem><...><verb> kind of API name convention. I think, it is better to change to rte_application_usage_hook_set() to express the hierarchy.