From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2F169A00C5; Tue, 15 Feb 2022 13:32:06 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 083E841152; Tue, 15 Feb 2022 13:32:01 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 3D26441147 for ; Tue, 15 Feb 2022 13:31:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1644928317; x=1676464317; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dFaJerY4vXwfMNXpVmfSGMyzBMVhDZ9JqTHonO+d1iI=; b=HDQ+LxKAVuFlIk5ickIqshkr9RqHS6r76IfJgK/diUI+WRf1NKqOgmeU 7hk2WHAlZ3qQCtUM3ZWH+98D9fmvT2v1dtG4butfyUfyiA0I9fj/pgUAD qjJhHT54icfZ+pKBXdeAmSM4TF4lEhl4kryxts3+XmCXvEtRTJq3tRiYn FWgXESmKuDGwdT7fgVj59R+ss29BtncIbbZSFIp1B37kvs9ISALneSrRj cpBAB0U3D0VVn/zKS7BReYhrr0YaDmPZEtag+BOHMkiMMMKGIrOHkhoK5 npNTBpDqewB61J9Q4F39z3YbR9JnxxO2a+YbJAaDsWxWgTJeFMnNESD7d w==; X-IronPort-AV: E=McAfee;i="6200,9189,10258"; a="247936523" X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="247936523" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Feb 2022 04:31:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,370,1635231600"; d="scan'208";a="544280254" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga008.jf.intel.com with ESMTP; 15 Feb 2022 04:31:55 -0800 From: Sean Morrissey To: Ciara Power Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v9 02/50] telemetry: remove unneeded header includes Date: Tue, 15 Feb 2022 12:29:49 +0000 Message-Id: <20220215123037.608981-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220215123037.608981-1-sean.morrissey@intel.com> References: <20220214144406.4192233-1-sean.morrissey@intel.com> <20220215123037.608981-1-sean.morrissey@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey Acked-by: Ciara Power --- lib/telemetry/telemetry.c | 1 - lib/telemetry/telemetry_data.h | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/telemetry/telemetry.c b/lib/telemetry/telemetry.c index e5ccfe47f7..c6fd03a5ab 100644 --- a/lib/telemetry/telemetry.c +++ b/lib/telemetry/telemetry.c @@ -8,7 +8,6 @@ #include #include #include -#include #endif /* !RTE_EXEC_ENV_WINDOWS */ /* we won't link against libbsd, so just always use DPDKs-specific strlcpy */ diff --git a/lib/telemetry/telemetry_data.h b/lib/telemetry/telemetry_data.h index adb84a09f1..26aa28e72c 100644 --- a/lib/telemetry/telemetry_data.h +++ b/lib/telemetry/telemetry_data.h @@ -5,7 +5,6 @@ #ifndef _TELEMETRY_DATA_H_ #define _TELEMETRY_DATA_H_ -#include #include "rte_telemetry.h" enum tel_container_types { -- 2.25.1