From patchwork Fri Jan 14 16:23:53 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105860 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 597EAA00C3; Fri, 14 Jan 2022 17:31:09 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E82A142857; Fri, 14 Jan 2022 17:28:01 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id E02A142843 for ; Fri, 14 Jan 2022 17:27:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177679; x=1673713679; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BvTTtictC4X23XZOZ/TZi3Rrp6NCD08P285Eo++1DvU=; b=PB1zpTRbEMDuPSdDKun03RcuCdv2b1NrTCwqVByVjrV726B9schxsZam WoiwgJrhI9uBtBkIHqxUw3d5OgcyDcH+0ZmGgdH1yTecpp22oMBKrvtPJ hEqcxOd1xBwtNJ9t/ONXtTRGuPz78pdsZbHkKIoNt1xL/canRDjt1Sw2R mpI8RFEytu1HRhj+agPqqp3FESPTZO5uueQlJoAVI/IClP8/vQQcdaS0Q YJaJ3vLD10XNy/bU81eEkYSlNs88i714euzl1QjgrUw4HGf+wLZL4wme+ WbEgkfOt1/S4jhT7JV+HCil7vQvIlakPxBCeQbnngwk2/XSdNjtrzvmaG w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="244072217" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="244072217" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523676" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:43 -0800 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 37/53] hash: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:53 +0000 Message-Id: <20220114162409.334437-38-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 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