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 49E57A00C3; Fri, 14 Jan 2022 17:27:46 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 23FE94279F; Fri, 14 Jan 2022 17:27:09 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 04A334279C for ; Fri, 14 Jan 2022 17:27:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177627; x=1673713627; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8n7uNAWvK5Pf6Iru/aZ+6Vk5CWQYZSMjVYa+VtnZgVM=; b=R3XCrw9WKyZMVuG+hi7kie7iIHrunhxKqVry/zvyMpO+qYe9AvQyM7Pj g3fGogpH1uaN9YKhUynau/GVBM97ZyXdMSiRUwiePiZht02UJcKJ8QnsF iw6QfdJIT/XQN9BdrZwzyEBtXwLkef7/whhGQT8H6qzi9jPfwBQf3jbyV 2GYfcTf4qJ8sfcrALYGKX3iT+ZVMKL8JkVDDUPXmxvEJqdQWRIR8vEDYw BbkK8OKCA8IfXFyYg8SsMI/PaMZIN8s0BFV1CWW3O/SMylPayDs0maGs9 5aqzGxmGE9b4K82+zyRcpUiqf4k7IurZr0+JLPxu7wWH4txnxQkprM2Pl g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642599" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642599" 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:27:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523433" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:04 -0800 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 08/53] table: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:24 +0000 Message-Id: <20220114162409.334437-9-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 --- lib/table/rte_swx_table_em.c | 1 - lib/table/rte_swx_table_em.h | 1 - lib/table/rte_swx_table_learner.c | 1 - lib/table/rte_swx_table_learner.h | 1 - lib/table/rte_swx_table_selector.c | 1 - lib/table/rte_swx_table_wm.c | 2 -- lib/table/rte_swx_table_wm.h | 1 - lib/table/rte_table_acl.c | 3 --- lib/table/rte_table_array.c | 2 -- lib/table/rte_table_hash_cuckoo.c | 2 -- lib/table/rte_table_hash_ext.c | 2 -- lib/table/rte_table_hash_key16.c | 2 -- lib/table/rte_table_hash_key32.c | 2 -- lib/table/rte_table_hash_key8.c | 2 -- lib/table/rte_table_hash_lru.c | 2 -- lib/table/rte_table_lpm.c | 2 -- lib/table/rte_table_lpm_ipv6.c | 3 --- lib/table/rte_table_stub.c | 1 - lib/table/rte_table_stub.h | 1 - 19 files changed, 32 deletions(-) diff --git a/lib/table/rte_swx_table_em.c b/lib/table/rte_swx_table_em.c index 03b28c4c9d..f783cfe282 100644 --- a/lib/table/rte_swx_table_em.c +++ b/lib/table/rte_swx_table_em.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2020 Intel Corporation */ -#include #include #include #include diff --git a/lib/table/rte_swx_table_em.h b/lib/table/rte_swx_table_em.h index 909ada483b..b7423dd060 100644 --- a/lib/table/rte_swx_table_em.h +++ b/lib/table/rte_swx_table_em.h @@ -13,7 +13,6 @@ extern "C" { * RTE SWX Exact Match Table */ -#include #include diff --git a/lib/table/rte_swx_table_learner.c b/lib/table/rte_swx_table_learner.c index c3c840ff06..15576c2aa3 100644 --- a/lib/table/rte_swx_table_learner.c +++ b/lib/table/rte_swx_table_learner.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2020 Intel Corporation */ -#include #include #include #include diff --git a/lib/table/rte_swx_table_learner.h b/lib/table/rte_swx_table_learner.h index d6ec733655..eb9d7689fd 100644 --- a/lib/table/rte_swx_table_learner.h +++ b/lib/table/rte_swx_table_learner.h @@ -22,7 +22,6 @@ extern "C" { */ #include -#include #include diff --git a/lib/table/rte_swx_table_selector.c b/lib/table/rte_swx_table_selector.c index 541ebc2213..ad99f18453 100644 --- a/lib/table/rte_swx_table_selector.c +++ b/lib/table/rte_swx_table_selector.c @@ -7,7 +7,6 @@ #include #include -#include #include "rte_swx_table_selector.h" diff --git a/lib/table/rte_swx_table_wm.c b/lib/table/rte_swx_table_wm.c index e260be1062..27a67b47bd 100644 --- a/lib/table/rte_swx_table_wm.c +++ b/lib/table/rte_swx_table_wm.c @@ -4,10 +4,8 @@ #include #include #include -#include #include -#include #include #include diff --git a/lib/table/rte_swx_table_wm.h b/lib/table/rte_swx_table_wm.h index 9e228f971c..4fd52c0a17 100644 --- a/lib/table/rte_swx_table_wm.h +++ b/lib/table/rte_swx_table_wm.h @@ -13,7 +13,6 @@ extern "C" { * RTE SWX Wildcard Match Table */ -#include #include diff --git a/lib/table/rte_table_acl.c b/lib/table/rte_table_acl.c index 14d54019f0..179a1da835 100644 --- a/lib/table/rte_table_acl.c +++ b/lib/table/rte_table_acl.c @@ -6,13 +6,10 @@ #include #include -#include -#include #include #include #include "rte_table_acl.h" -#include #ifdef RTE_TABLE_STATS_COLLECT diff --git a/lib/table/rte_table_array.c b/lib/table/rte_table_array.c index 8264c50c27..54a0c42f7d 100644 --- a/lib/table/rte_table_array.c +++ b/lib/table/rte_table_array.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_cuckoo.c b/lib/table/rte_table_hash_cuckoo.c index f024303330..c77eccf527 100644 --- a/lib/table/rte_table_hash_cuckoo.c +++ b/lib/table/rte_table_hash_cuckoo.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_ext.c b/lib/table/rte_table_hash_ext.c index 802a24fe0f..70ea84fa2e 100644 --- a/lib/table/rte_table_hash_ext.c +++ b/lib/table/rte_table_hash_ext.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_key16.c b/lib/table/rte_table_hash_key16.c index c4384b114d..ea8195dc17 100644 --- a/lib/table/rte_table_hash_key16.c +++ b/lib/table/rte_table_hash_key16.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_key32.c b/lib/table/rte_table_hash_key32.c index 3e0031fe1e..87f83ce6f5 100644 --- a/lib/table/rte_table_hash_key32.c +++ b/lib/table/rte_table_hash_key32.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_key8.c b/lib/table/rte_table_hash_key8.c index 34e3ed1af9..7779a9d1a3 100644 --- a/lib/table/rte_table_hash_key8.c +++ b/lib/table/rte_table_hash_key8.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_lru.c b/lib/table/rte_table_hash_lru.c index 5bcdb7ba02..c31acc11cf 100644 --- a/lib/table/rte_table_hash_lru.c +++ b/lib/table/rte_table_hash_lru.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_lpm.c b/lib/table/rte_table_lpm.c index 4dd8289ce5..9de9e8a20d 100644 --- a/lib/table/rte_table_lpm.c +++ b/lib/table/rte_table_lpm.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include #include diff --git a/lib/table/rte_table_lpm_ipv6.c b/lib/table/rte_table_lpm_ipv6.c index 4e068d79bf..8fde2c012f 100644 --- a/lib/table/rte_table_lpm_ipv6.c +++ b/lib/table/rte_table_lpm_ipv6.c @@ -6,10 +6,7 @@ #include #include -#include -#include #include -#include #include #include diff --git a/lib/table/rte_table_stub.c b/lib/table/rte_table_stub.c index 9ce7be9cec..23d0de5c79 100644 --- a/lib/table/rte_table_stub.c +++ b/lib/table/rte_table_stub.c @@ -4,7 +4,6 @@ #include -#include #include #include "rte_table_stub.h" diff --git a/lib/table/rte_table_stub.h b/lib/table/rte_table_stub.h index 2b40739790..9086e4edcc 100644 --- a/lib/table/rte_table_stub.h +++ b/lib/table/rte_table_stub.h @@ -17,7 +17,6 @@ extern "C" { * ***/ -#include #include "rte_table.h" -- 2.25.1