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 45242A00C3; Fri, 14 Jan 2022 17:27:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A3F664277C; Fri, 14 Jan 2022 17:26:57 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 153994116D for ; Fri, 14 Jan 2022 17:26:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177616; x=1673713616; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7ksZ0dEAJxhYkLZ4rq1vIzVsXl3hQNbCVQtL+YMbNFc=; b=juaaP8cr5BGrOyHo4f4y7iDx1PmQEgqon7IrION7aWw/gFW2ga2XQXHs d4/DAwG8IMSDcZybZWG4zBuPOx09lABjjLfzwoDB3zFZ/aLqiTtRwHpYD gbAqzq5fuSDSFvKD1vN1z9dcs57UL8ceib0h+jTzIgCsQEq4Q+zZaiiIh 3utfvrTphX3gq/YEKTaclGRA4zUS9gokRK44oqD/YTLThe22HWr79Eur5 LyC4XkwKXZaLTxLM/IdC8uI9QuYrKYraACwyJL9DV1A0aa4lzIBjQpJ1l 8DhDTpUYoy/2xohZ6gQGZPRh/9+nrqp8wzJXApPXLiP7SYLwIB2xRgfEO Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642527" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642527" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:26:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523377" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:26:53 -0800 From: Sean Morrissey To: Ciara Power Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 02/53] telemetry: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:18 +0000 Message-Id: <20220114162409.334437-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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