From 9f83b62f555998d7bc85400c3d5ea828f50919cf Mon Sep 17 00:00:00 2001 From: Sean Morrissey Date: Wed, 24 Jul 2019 16:20:59 +0100 Subject: [PATCH] eal: revert parsing option --telemetry This reverts commit debacba0297fbe214b4185a9791e6a9fdf6642ba. Reverting this patch as it currently breaks the initialization of telemetry, more investigation is ongoing to fix the issue for the printed error message for unrecognized argument. Fixes: debacba0297f ("eal: fix parsing option --telemetry") Cc: stable@dpdk.org Signed-off-by: Sean Morrissey --- lib/librte_eal/common/eal_common_options.c | 3 --- lib/librte_eal/common/eal_options.h | 4 ---- 2 files changed, 7 deletions(-) diff --git a/lib/librte_eal/common/eal_common_options.c b/lib/librte_eal/common/eal_common_options.c index 24e36cf239..512d5088e8 100644 --- a/lib/librte_eal/common/eal_common_options.c +++ b/lib/librte_eal/common/eal_common_options.c @@ -81,9 +81,6 @@ eal_long_options[] = { {OPT_LEGACY_MEM, 0, NULL, OPT_LEGACY_MEM_NUM }, {OPT_SINGLE_FILE_SEGMENTS, 0, NULL, OPT_SINGLE_FILE_SEGMENTS_NUM}, {OPT_MATCH_ALLOCATIONS, 0, NULL, OPT_MATCH_ALLOCATIONS_NUM}, -#ifdef RTE_LIBRTE_TELEMETRY - {OPT_TELEMETRY, 0, NULL, OPT_TELEMETRY_NUM }, -#endif {0, 0, NULL, 0 } }; diff --git a/lib/librte_eal/common/eal_options.h b/lib/librte_eal/common/eal_options.h index e4c8e25c28..9855429e58 100644 --- a/lib/librte_eal/common/eal_options.h +++ b/lib/librte_eal/common/eal_options.h @@ -69,10 +69,6 @@ enum { OPT_IOVA_MODE_NUM, #define OPT_MATCH_ALLOCATIONS "match-allocations" OPT_MATCH_ALLOCATIONS_NUM, -#ifdef RTE_LIBRTE_TELEMETRY - #define OPT_TELEMETRY "telemetry" - OPT_TELEMETRY_NUM, -#endif OPT_LONG_MAX_NUM }; -- 2.20.1