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 B6150A00C3; Mon, 17 Jan 2022 21:23:37 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E9703427F2; Mon, 17 Jan 2022 21:21:24 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 44D80427ED for ; Mon, 17 Jan 2022 21:21:22 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450882; x=1673986882; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BvTTtictC4X23XZOZ/TZi3Rrp6NCD08P285Eo++1DvU=; b=aZeAQrq5ls9VQgn/5wPyNOwSYEUfy66dX8aWpGzRF5RAC+wzQgiXr+8F oWyfB1OSZGXrxPtEXjikKOaojMIKU5Pgk0VPhw4S62hIZXJRMDW6bt0WS ohqF5HjqF+21n1rwkklHaGAgvIE6b77EPmxB/o6BcesEUiS4U+CJK5UhW 4eC/YxUKmX5DWpOlm0zOoWpJOi5mdiEXlffWKqpeDmN26plAZzaihRpU4 tDv0v9piw1Falwr5sBJIrFR0AxfDyjFNRWojaLw4VNoL7pc6u2ypi2o0N o1Xx7FfFAbuLv37uDdDXbnhS0dehK75ZqcEIz1JJ+OmbctH2e48ZWHgQi A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038131" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038131" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:21 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521004" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:20 -0800 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 35/50] hash: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:28 +0000 Message-Id: <20220117201943.873922-36-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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/hash/rte_cuckoo_hash.c | 4 ---- lib/hash/rte_fbk_hash.c | 6 ------ lib/hash/rte_fbk_hash.h | 1 - lib/hash/rte_thash.c | 1 - lib/hash/rte_thash.h | 1 - 5 files changed, 13 deletions(-) diff --git a/lib/hash/rte_cuckoo_hash.c b/lib/hash/rte_cuckoo_hash.c index 1191dfd81a..490f94af4b 100644 --- a/lib/hash/rte_cuckoo_hash.c +++ b/lib/hash/rte_cuckoo_hash.c @@ -7,7 +7,6 @@ #include #include #include -#include #include #include @@ -16,14 +15,11 @@ #include #include #include -#include #include -#include #include #include #include #include -#include #include #include #include diff --git a/lib/hash/rte_fbk_hash.c b/lib/hash/rte_fbk_hash.c index 576e8e6662..538b23a403 100644 --- a/lib/hash/rte_fbk_hash.c +++ b/lib/hash/rte_fbk_hash.c @@ -4,22 +4,16 @@ #include #include -#include #include #include #include -#include -#include #include #include #include -#include #include #include -#include #include -#include #include #include "rte_fbk_hash.h" diff --git a/lib/hash/rte_fbk_hash.h b/lib/hash/rte_fbk_hash.h index 9c3a61c1d6..b01126999b 100644 --- a/lib/hash/rte_fbk_hash.h +++ b/lib/hash/rte_fbk_hash.h @@ -24,7 +24,6 @@ extern "C" { #include -#include #include #include diff --git a/lib/hash/rte_thash.c b/lib/hash/rte_thash.c index 6847e36f4b..0249883b8d 100644 --- a/lib/hash/rte_thash.c +++ b/lib/hash/rte_thash.c @@ -9,7 +9,6 @@ #include #include #include -#include #include #include #include diff --git a/lib/hash/rte_thash.h b/lib/hash/rte_thash.h index c11ca0d5b8..451f64043a 100644 --- a/lib/hash/rte_thash.h +++ b/lib/hash/rte_thash.h @@ -21,7 +21,6 @@ extern "C" { #include #include -#include #include #include #include -- 2.25.1