From: Thomas Monjalon Date: Thu, 12 Nov 2015 21:58:37 +0000 (+0100) Subject: examples/ip_pipeline: remove references to deprecated statistics X-Git-Tag: spdx-start~8069 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=99dafd5bf3325fe7b5341d1bce0be5294f24dde1;p=dpdk.git examples/ip_pipeline: remove references to deprecated statistics Keep only basic statistics which should never been deprecated. Signed-off-by: Thomas Monjalon --- diff --git a/examples/ip_pipeline/pipeline/pipeline_common_fe.c b/examples/ip_pipeline/pipeline/pipeline_common_fe.c index fcda0ce71f..ed18f2cdfd 100644 --- a/examples/ip_pipeline/pipeline/pipeline_common_fe.c +++ b/examples/ip_pipeline/pipeline/pipeline_common_fe.c @@ -937,31 +937,12 @@ print_link_info(struct app_link_params *p) stats.ipackets, stats.ibytes); - printf("\tRX mcast %" PRIu64 - " fdirmatch %" PRIu64 - " fdirmiss %" PRIu64 - " lb-packets %" PRIu64 - " lb-bytes %" PRIu64 - " xon %" PRIu64 - " xoff %" PRIu64 "\n", - stats.imcasts, - stats.fdirmatch, - stats.fdirmiss, - stats.ilbpackets, - stats.ilbbytes, - stats.rx_pause_xon, - stats.rx_pause_xoff); - printf("\tRX errors %" PRIu64 " missed %" PRIu64 - " badcrc %" PRIu64 - " badlen %" PRIu64 " no-mbuf %" PRIu64 "\n", stats.ierrors, stats.imissed, - stats.ibadcrc, - stats.ibadlen, stats.rx_nombuf); printf("\tTX packets %" PRIu64 @@ -969,16 +950,6 @@ print_link_info(struct app_link_params *p) stats.opackets, stats.obytes); - printf("\tTX lb-packets %" PRIu64 - " lb-bytes %" PRIu64 - " xon %" PRIu64 - " xoff %" PRIu64 - "\n", - stats.olbpackets, - stats.olbbytes, - stats.tx_pause_xon, - stats.tx_pause_xoff); - printf("\tTX errors %" PRIu64 "\n", stats.oerrors);