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 01F4BA0545; Mon, 20 Jun 2022 12:40:49 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2E45240F19; Mon, 20 Jun 2022 12:40:41 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 1E1DE40150 for ; Mon, 20 Jun 2022 12:40:36 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721637; x=1687257637; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=2xjOz8w05Qt/0nHcMQp8ZEU3R6GmaOTS84WOzuwsvKQ=; b=S1Bdi+es6CKM6G4uwm1Wxhw67OLaABHXG9tgXLxcpoi81Ka+HBUkxLg9 /ad4WnMw8BlXu8YgvYlpUb0W1fAdjHR5vjOW7y5N7fdLhz+7GLhTsMMu6 7mgyHqndFhmr3TA3P1yJvRT618zLYFjQTBBL3uL/IIzoHOQlI93gR5+lI R0bZeXKyiauoF7tMCNqBbFqSqC4qbfWJ6YjHmBvnx1jhkZm1Kj9AR2LKB av6bROLNo03n9Tl1oapQJGPYtM7Gs9CU+hd/YkpJPeu8/K9ru6RlLfe4N 5OZRqXAgS3pSnE3LT/cZ8+H3TaeapDr2vHsGmf4kYL0d2ELJcpoWQDt5W g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581644" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581644" Received: from fmsmga007.fm.intel.com ([10.253.24.52]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Jun 2022 03:40:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121047" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:35 -0700 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 02/14] eal: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:18 +0000 Message-Id: <20220620104030.1889156-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220620104030.1889156-1-sean.morrissey@intel.com> References: <20220617190835.1126602-1-sean.morrissey@intel.com> <20220620104030.1889156-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 --- lib/eal/common/eal_common_config.c | 1 - lib/eal/common/eal_common_launch.c | 1 - lib/eal/common/eal_common_log.c | 1 - lib/eal/linux/eal_thread.c | 6 ------ lib/eal/unix/eal_filesystem.c | 2 -- 5 files changed, 11 deletions(-) diff --git a/lib/eal/common/eal_common_config.c b/lib/eal/common/eal_common_config.c index 3cef43a4f7..0daf0f3188 100644 --- a/lib/eal/common/eal_common_config.c +++ b/lib/eal/common/eal_common_config.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2020 Mellanox Technologies, Ltd */ -#include #include diff --git a/lib/eal/common/eal_common_launch.c b/lib/eal/common/eal_common_launch.c index 992f8e4631..462c886e30 100644 --- a/lib/eal/common/eal_common_launch.c +++ b/lib/eal/common/eal_common_launch.c @@ -6,7 +6,6 @@ #include #include -#include #include #include diff --git a/lib/eal/common/eal_common_log.c b/lib/eal/common/eal_common_log.c index d57dca9785..bd7b188ceb 100644 --- a/lib/eal/common/eal_common_log.c +++ b/lib/eal/common/eal_common_log.c @@ -13,7 +13,6 @@ #include #include -#include #include #include "eal_log.h" diff --git a/lib/eal/linux/eal_thread.c b/lib/eal/linux/eal_thread.c index 820cc905e0..e9294127d1 100644 --- a/lib/eal/linux/eal_thread.c +++ b/lib/eal/linux/eal_thread.c @@ -4,20 +4,14 @@ #include #include -#include #include #include #include -#include -#include -#include #include #include #include -#include "eal_private.h" -#include "eal_thread.h" /* require calling thread tid by gettid() */ int rte_sys_gettid(void) diff --git a/lib/eal/unix/eal_filesystem.c b/lib/eal/unix/eal_filesystem.c index 094a2bf7e4..afbab9368a 100644 --- a/lib/eal/unix/eal_filesystem.c +++ b/lib/eal/unix/eal_filesystem.c @@ -10,10 +10,8 @@ #include #include #include -#include #include -#include #include #include "eal_private.h" -- 2.25.1