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 5E982A00C5; Wed, 2 Feb 2022 10:50:37 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 186C742736; Wed, 2 Feb 2022 10:49:09 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id D558B426EF for ; Wed, 2 Feb 2022 10:49:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1643795346; x=1675331346; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vHlQ64uz3Dgb1mKLToNRi7Pf8WCv4Cnh+ovSEE/ksgo=; b=lsjMDaJP5pnIZ0ICFwkAxKdpeFLTjBShSJj2yoSLTp+xC8GJ9rpEWt0k kiqwlb+v+3OmkTQWC5KLqmJucLMx/+b5J+yv+P0QhWK3fNmofx5pa0MVv 0mCjCApqF3jvPZbStwDniSe6MKeWtFplQ882QY5gtWi8Z+Blq4mIjCBz+ cVbD0fskcKGxTbEqdloeji16jux/97fdgFmGb+tgKLRoqoFL3erVgGqnS CuNqqnPNY5XzYN9jIh/QFmwb6eaTY+zjny5ZKxF2qewSx9Z0hZywWAbCZ Uf5Mmf61sDYE9syM5P9r+tdbMpjnpuhyaZXbEYPBV+RPwdwCRpA8iIU0Q Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10245"; a="247832205" X-IronPort-AV: E=Sophos;i="5.88,336,1635231600"; d="scan'208";a="247832205" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Feb 2022 01:48:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,336,1635231600"; d="scan'208";a="538182061" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga008.jf.intel.com with ESMTP; 02 Feb 2022 01:48:51 -0800 From: Sean Morrissey To: Jasvinder Singh , Bruce Richardson , Konstantin Ananyev , Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v6 24/50] net: remove unneeded header includes Date: Wed, 2 Feb 2022 09:47:36 +0000 Message-Id: <20220202094802.3618978-25-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220202094802.3618978-1-sean.morrissey@intel.com> References: <20220117201943.873922-1-sean.morrissey@intel.com> <20220202094802.3618978-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/net/net_crc_avx512.c | 3 --- lib/net/net_crc_sse.c | 1 - lib/net/rte_arp.c | 1 - lib/net/rte_ether.h | 1 - lib/net/rte_net.h | 1 - lib/net/rte_net_crc.c | 2 -- 6 files changed, 9 deletions(-) diff --git a/lib/net/net_crc_avx512.c b/lib/net/net_crc_avx512.c index 3740fe3c9d..f6a3ce9bcd 100644 --- a/lib/net/net_crc_avx512.c +++ b/lib/net/net_crc_avx512.c @@ -2,11 +2,8 @@ * Copyright(c) 2020 Intel Corporation */ -#include #include -#include -#include #include "net_crc.h" diff --git a/lib/net/net_crc_sse.c b/lib/net/net_crc_sse.c index 053b54b390..dd75845636 100644 --- a/lib/net/net_crc_sse.c +++ b/lib/net/net_crc_sse.c @@ -6,7 +6,6 @@ #include #include -#include #include "net_crc.h" diff --git a/lib/net/rte_arp.c b/lib/net/rte_arp.c index 9f7eb6b375..22af519586 100644 --- a/lib/net/rte_arp.c +++ b/lib/net/rte_arp.c @@ -3,7 +3,6 @@ */ #include -#include #define RARP_PKT_SIZE 64 struct rte_mbuf * diff --git a/lib/net/rte_ether.h b/lib/net/rte_ether.h index 3d9852d9e2..bf8a55ba06 100644 --- a/lib/net/rte_ether.h +++ b/lib/net/rte_ether.h @@ -18,7 +18,6 @@ extern "C" { #include #include -#include #include #include #include diff --git a/lib/net/rte_net.h b/lib/net/rte_net.h index 53a7f4d360..56611fc8f9 100644 --- a/lib/net/rte_net.h +++ b/lib/net/rte_net.h @@ -12,7 +12,6 @@ extern "C" { #include #include #include -#include /** * Structure containing header lengths associated to a packet, filled diff --git a/lib/net/rte_net_crc.c b/lib/net/rte_net_crc.c index d9a526ab7b..a685f9e7bb 100644 --- a/lib/net/rte_net_crc.c +++ b/lib/net/rte_net_crc.c @@ -3,13 +3,11 @@ */ #include -#include #include #include #include #include -#include #include #include -- 2.25.1