10/01/2019 22:36, Vipin Varghese: > Function show_port is used for displaying the port PMD information under > primary process. The information shows basic, per queue and security. > Also helper MACRO 'MAX_STRING_LEN, STATS_BDR_FMT and STATS_BDR_STR' and > meson build file is updated for new functionality. > > Signed-off-by: Vipin Varghese <vipin.vargh...@intel.com> > Acked-by: Reshma Pattan <reshma.pat...@intel.com> > Acked-by: John McNamara <john.mcnam...@intel.com> > --- > app/proc-info/main.c | 119 ++++++++++++++++++++++++++++++++- > app/proc-info/meson.build | 2 +- > doc/guides/tools/proc_info.rst | 9 ++- > 3 files changed, 126 insertions(+), 4 deletions(-) > > diff --git a/app/proc-info/main.c b/app/proc-info/main.c > index c20effa4f..2108c24b0 100644 > --- a/app/proc-info/main.c > +++ b/app/proc-info/main.c > @@ -29,6 +29,9 @@ > #include <rte_branch_prediction.h> > #include <rte_string_fns.h> > #include <rte_metrics.h> > +#include <rte_cycles.h> > +#include <rte_security.h> > +#include <rte_cryptodev.h>
Is the crypto include really required in this patch?