From patchwork Mon Jun 20 10:40:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113099 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 D5550A0545; Mon, 20 Jun 2022 12:40:42 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1DCFA427F1; Mon, 20 Jun 2022 12:40:38 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 7C03040150 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=1655721636; x=1687257636; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kTgQJ7KodACv8jdYac0oUzXtBLxVmn8ZMKkaYVOcSvk=; b=M83RWHn+Cepzl70NZvHBFCrvkTx2Fmha7OOr+x5a9eTB7YqXtp4tEjRr of6HOMUcDKQmgNkho/EWEFBRXJO+KTqjkJ04PwOZG3OjzfN21zxk+ngXK thOA6h+uxvtGrJbr/hZNYpBwhZwXtoG6onKb1rn+a7IptjgGs5uwz56RV W27T/VItyavk1ZJtXnxwyQMvLI4OewRsRQryOvrilQ32pSTCWGJ/OULOR hnSkqKF0HB0oNkBbny2Cb9BdWiA1LTk7ONytn6iOR3VMH8asd+Hx4g5aU rvEccwsX+PYiPyfR7MNurXkOF2PgpPCVFqbwpvPk5I3YhDNnM96cVOiBq Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581640" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581640" 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:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121035" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:34 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 01/14] cmdline: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:17 +0000 Message-Id: <20220620104030.1889156-2-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 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/cmdline/cmdline_cirbuf.h | 1 - lib/cmdline/cmdline_parse_num.c | 3 --- lib/cmdline/cmdline_socket.c | 4 ---- lib/cmdline/cmdline_socket.h | 1 - 4 files changed, 9 deletions(-) diff --git a/lib/cmdline/cmdline_cirbuf.h b/lib/cmdline/cmdline_cirbuf.h index c23b211ad4..c58fdabf00 100644 --- a/lib/cmdline/cmdline_cirbuf.h +++ b/lib/cmdline/cmdline_cirbuf.h @@ -7,7 +7,6 @@ #ifndef _CIRBUF_H_ #define _CIRBUF_H_ -#include #ifdef __cplusplus extern "C" { diff --git a/lib/cmdline/cmdline_parse_num.c b/lib/cmdline/cmdline_parse_num.c index b37dd94ae9..820af071fb 100644 --- a/lib/cmdline/cmdline_parse_num.c +++ b/lib/cmdline/cmdline_parse_num.c @@ -7,10 +7,7 @@ #include #include #include -#include #include -#include -#include #include #include "cmdline_parse.h" diff --git a/lib/cmdline/cmdline_socket.c b/lib/cmdline/cmdline_socket.c index ebd5343754..78fb67c474 100644 --- a/lib/cmdline/cmdline_socket.c +++ b/lib/cmdline/cmdline_socket.c @@ -5,11 +5,7 @@ */ #include -#include #include -#include -#include -#include #include #include "cmdline.h" diff --git a/lib/cmdline/cmdline_socket.h b/lib/cmdline/cmdline_socket.h index 80542e5599..a9c4ea26ad 100644 --- a/lib/cmdline/cmdline_socket.h +++ b/lib/cmdline/cmdline_socket.h @@ -8,7 +8,6 @@ #define _CMDLINE_SOCKET_H_ #include -#include #ifdef __cplusplus extern "C" { From patchwork Mon Jun 20 10:40:18 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113100 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 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 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" From patchwork Mon Jun 20 10:40:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113101 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 2F0BFA0545; Mon, 20 Jun 2022 12:40:55 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 219C94281A; Mon, 20 Jun 2022 12:40:42 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id C10D2427F5 for ; Mon, 20 Jun 2022 12:40:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721638; x=1687257638; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=leWblTsfwNNoeq23LutzRRsf6Ww70o4k/MMXpF9Bxls=; b=moqdywAKgWiT1ddkxyW1UZyP5Ix46bgmgN5fVTQWp4dF2I9s+FisVVjx E4JCRezdCnIJ3dJhG9Wrv9VfjaqAzmQR8amHU7PabZn2v1wGQmk/E/ic5 qTiPFH7hKlHR1EXLsE4iJNHRZ6Bpc7Fvg8fYBsQikjRaBxZyWXDBxV6YX +w77GxGLFauumM/6GV7/iZSAi56uuDPlUoVmIkFmEmjz2qvhidG2+hE/6 4yEXV7SBrDd7H0HF75f847y7tlHKSLMXuYPZmPUhVd5Oy5IofMZXfHzDF XcTeO2Dz19/OquU5Id8PcvhvlcDkWA0aKuiLa/L9Z85Caj2MpMsBmNGW5 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581648" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581648" 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:38 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121073" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:36 -0700 From: Sean Morrissey To: Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Ori Kam , Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 03/14] ethdev: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:19 +0000 Message-Id: <20220620104030.1889156-4-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 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/ethdev/rte_class_eth.c | 2 -- lib/ethdev/rte_ethdev.c | 9 --------- lib/ethdev/rte_ethdev.h | 1 - lib/ethdev/rte_flow.c | 2 -- lib/ethdev/rte_flow.h | 3 --- lib/ethdev/rte_mtr.c | 1 - 6 files changed, 18 deletions(-) diff --git a/lib/ethdev/rte_class_eth.c b/lib/ethdev/rte_class_eth.c index c8e8fc9244..3be84dd45c 100644 --- a/lib/ethdev/rte_class_eth.c +++ b/lib/ethdev/rte_class_eth.c @@ -5,13 +5,11 @@ #include #include -#include #include #include #include #include "rte_ethdev.h" -#include "rte_ethdev_core.h" #include "ethdev_driver.h" #include "ethdev_private.h" diff --git a/lib/ethdev/rte_ethdev.c b/lib/ethdev/rte_ethdev.c index 90e50eb02b..1979dc0850 100644 --- a/lib/ethdev/rte_ethdev.c +++ b/lib/ethdev/rte_ethdev.c @@ -11,18 +11,9 @@ #include #include -#include #include -#include #include -#include #include -#include -#include -#include -#include -#include -#include #include #include #include diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h index 045ee64747..de9e970d4d 100644 --- a/lib/ethdev/rte_ethdev.h +++ b/lib/ethdev/rte_ethdev.h @@ -169,7 +169,6 @@ extern "C" { #include #include #include -#include #include #include "rte_ethdev_trace_fp.h" diff --git a/lib/ethdev/rte_flow.c b/lib/ethdev/rte_flow.c index 2c35a2f13e..501be9d602 100644 --- a/lib/ethdev/rte_flow.c +++ b/lib/ethdev/rte_flow.c @@ -6,13 +6,11 @@ #include #include #include -#include #include #include #include #include -#include #include #include "rte_ethdev.h" #include "rte_flow_driver.h" diff --git a/lib/ethdev/rte_flow.h b/lib/ethdev/rte_flow.h index 1b56f23cba..a79f1e7ef0 100644 --- a/lib/ethdev/rte_flow.h +++ b/lib/ethdev/rte_flow.h @@ -17,7 +17,6 @@ #include #include -#include #include #include #include @@ -26,12 +25,10 @@ #include #include #include -#include #include #include #include #include -#include #include #include #include diff --git a/lib/ethdev/rte_mtr.c b/lib/ethdev/rte_mtr.c index 441ea1dca9..c460e4f4e0 100644 --- a/lib/ethdev/rte_mtr.c +++ b/lib/ethdev/rte_mtr.c @@ -5,7 +5,6 @@ #include #include -#include "rte_compat.h" #include "rte_ethdev.h" #include "rte_mtr_driver.h" #include "rte_mtr.h" From patchwork Mon Jun 20 10:40:20 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113102 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 7908DA0545; Mon, 20 Jun 2022 12:41:01 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9EE0C4280E; Mon, 20 Jun 2022 12:40:45 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 91C3942802 for ; Mon, 20 Jun 2022 12:40:41 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721641; x=1687257641; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=TaCtUrax3nNIr14Q5Rkrp0fZbPp8DaFRggKJgLKP6VA=; b=BgQldDU1OU4VPxl28TgmCb2Drd27mfVgnfKUmSZWUVYw+g1v/E4RA6FT ksnGCPc7rmuBagQrV8pMMrI0tkinAgs2h38XNtNkcmTsG3Plka5TzjkmM /WS8BIlFwArUHoBbIIT/pgOsR6DYFFDfoPubpX2LXXg9LAzM6ydapSc2n Xy2iAPrddrOZAg+iBqUBSA2ZkZoN6RjeMAxcwUyk5OwwhDSdpn3xe311E oT2SDLp3vIersmIuXUhtuvfpX17h8tJoBNNMV8CXxI5Eg8jbmrDMSXdSO KAksW/8tlBt0Y9PYhLAxLCrQDp8R9VN9RqNExyll8mhyWOKfSUornOWDu A==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581657" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581657" 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:40 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121089" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:39 -0700 From: Sean Morrissey To: Elena Agostini Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 04/14] gpudev: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:20 +0000 Message-Id: <20220620104030.1889156-5-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 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/gpudev/gpudev.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/gpudev/gpudev.c b/lib/gpudev/gpudev.c index 56033f4a5f..ee3ae80f82 100644 --- a/lib/gpudev/gpudev.c +++ b/lib/gpudev/gpudev.c @@ -9,7 +9,6 @@ #include #include #include -#include #include "rte_gpudev.h" #include "gpudev_driver.h" From patchwork Mon Jun 20 10:40:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113103 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 F3462A0547; Mon, 20 Jun 2022 12:41:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B47BC42820; Mon, 20 Jun 2022 12:40:46 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 6009D42802 for ; Mon, 20 Jun 2022 12:40:42 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721642; x=1687257642; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kPHIhD0BVPpcsUGuCO87uCxLPMgDVvYWe9pBSZVYlH0=; b=m4SmpK8fRY4B4tykQYlvEdA5m+qkLMb0mwPuj/sgRrtZEUkNqSDynsb7 OW6mnxFeB6MPWGx7feBGdh9jyPbsldU7Pof2r+ErN317VpX/rLy7zV34g 2G0H/XV43EUEK4kFbkglj4Hwq+ehlYbpKGQQ8N2+UobSb4mzpcZrKRtS1 ndbxFAM3qhO68Y679CzcHXIdY+kYtHJqbqvuIAbDVPme93snK3GkrPK2e 7VuP3h2K95rU+iNEU9vf6zxG9ws/usQGyw/43P1OKChvLm18VzTiHHxyC kMTZ1RTnxBC8QWMTy/o0YcIXZnyBlKG8ceYBdTjmU+Sbq++1AgcO//lg1 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581662" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581662" 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:41 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121094" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:40 -0700 From: Sean Morrissey To: Jiayu Hu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 05/14] gso: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:21 +0000 Message-Id: <20220620104030.1889156-6-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 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/gso/gso_common.c | 1 - lib/gso/gso_common.h | 1 - lib/gso/gso_tcp4.h | 1 - lib/gso/gso_tunnel_tcp4.h | 1 - lib/gso/gso_tunnel_udp4.h | 1 - lib/gso/gso_udp4.h | 1 - 6 files changed, 6 deletions(-) diff --git a/lib/gso/gso_common.c b/lib/gso/gso_common.c index 0fad1132fc..378bf2c6aa 100644 --- a/lib/gso/gso_common.c +++ b/lib/gso/gso_common.c @@ -6,7 +6,6 @@ #include #include -#include #include "gso_common.h" diff --git a/lib/gso/gso_common.h b/lib/gso/gso_common.h index 2c258b22bf..9456d596d3 100644 --- a/lib/gso/gso_common.h +++ b/lib/gso/gso_common.h @@ -7,7 +7,6 @@ #include -#include #include #include #include diff --git a/lib/gso/gso_tcp4.h b/lib/gso/gso_tcp4.h index 10d4b3acdd..7527fa51c9 100644 --- a/lib/gso/gso_tcp4.h +++ b/lib/gso/gso_tcp4.h @@ -6,7 +6,6 @@ #define _GSO_TCP4_H_ #include -#include /** * Segment an IPv4/TCP packet. This function doesn't check if the input diff --git a/lib/gso/gso_tunnel_tcp4.h b/lib/gso/gso_tunnel_tcp4.h index c522ed27f2..3a7ea238c8 100644 --- a/lib/gso/gso_tunnel_tcp4.h +++ b/lib/gso/gso_tunnel_tcp4.h @@ -6,7 +6,6 @@ #define _GSO_TUNNEL_TCP4_H_ #include -#include /** * Segment a tunneling packet with inner TCP/IPv4 headers. This function diff --git a/lib/gso/gso_tunnel_udp4.h b/lib/gso/gso_tunnel_udp4.h index c49b43fe3e..214a69ccd5 100644 --- a/lib/gso/gso_tunnel_udp4.h +++ b/lib/gso/gso_tunnel_udp4.h @@ -6,7 +6,6 @@ #define _GSO_TUNNEL_UDP4_H_ #include -#include /** * Segment a tunneling packet with inner UDP/IPv4 headers. This function diff --git a/lib/gso/gso_udp4.h b/lib/gso/gso_udp4.h index b2a2908e54..8baa0ba6db 100644 --- a/lib/gso/gso_udp4.h +++ b/lib/gso/gso_udp4.h @@ -6,7 +6,6 @@ #define _GSO_UDP4_H_ #include -#include /** * Segment an UDP/IPv4 packet. This function doesn't check if the input From patchwork Mon Jun 20 10:40:22 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113104 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 52FE7A0545; Mon, 20 Jun 2022 12:41:14 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B7E5F42905; Mon, 20 Jun 2022 12:40:47 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id BE1AC427F5 for ; Mon, 20 Jun 2022 12:40:43 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721643; x=1687257643; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=y8v2icUo+QM5GQ3BsYwhlpUMlm1kcGe/zwN+ohTwN+U=; b=BknK00cxl5KP6AOa0PQTejyLNUHTcCY9UaKoCejP58NA2ubAvp6+dfDW y5XPbL043gqTJbmzIXWT0bLIUjqfe9zSOk/MasNwnkCIFNkPXRtG4KEG5 mRffOHoj8HRfBkeY5HhIsXfQeNIoFuDFXXH/fT75RMacR8BurCSzcqnIv bHKjhEkBO9tZOVCWx458z79upgCkgGKJQ3Nu6tKQ172ycwfd46r1+KXlF QVeOcoOz3Sw6Cuok0fT0Xfgei/swO/iZgemJw+fHumUrrIG4Ix/6fQIsz psqlr9AhjuXJudsFJxUtDhq7DeliSZbrMt2DanEYOm4HIAyAYQ7mMew2M w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581671" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581671" 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:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121098" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:41 -0700 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 06/14] hash: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:22 +0000 Message-Id: <20220620104030.1889156-7-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 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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/hash/rte_cuckoo_hash.c b/lib/hash/rte_cuckoo_hash.c index 490f94af4b..62c762439a 100644 --- a/lib/hash/rte_cuckoo_hash.c +++ b/lib/hash/rte_cuckoo_hash.c @@ -10,7 +10,6 @@ #include #include -#include /* for definition of RTE_CACHE_LINE_SIZE */ #include #include #include @@ -21,7 +20,6 @@ #include #include #include -#include #include #include From patchwork Mon Jun 20 10:40:23 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113105 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 A06C3A0545; Mon, 20 Jun 2022 12:41:23 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 573B442B75; Mon, 20 Jun 2022 12:40:49 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id A91A9427F5 for ; Mon, 20 Jun 2022 12:40:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721644; x=1687257644; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=r9U45GWM7bkAHxpHgFd7Ab8vl0AcJT61kuM2S6pn3IU=; b=V0VaxK0L1X4NoydAWX6v5XgBZjw7aYII7fyE5K8I9ECTE3GjBBPiz+jB uBSydPNN2qpKm6oJyCNk9TM7ffQtCF3Rgf2SV9st7NffFPMB0BeRYK3oC Z5q5OVYh6JcrZPM6KNZURp5cOIEAgCJVhOFlFZ/nBHdqx1cs4rtUI8fCs j5X85ObsNpRYqH1eYLVxW+UqTFoFeI83P2MsQYut9igX/FH89y1zToJdA TwOnunZd0za09GElYQ+8esNmySRYU0hP7L849XGU1+q792Qt7Zr9yuYlC wkDRqWPVaiEyQUBMIVkLhokiSiZo+SpDShX3jmWi7CDoPwSEL6seB5NEe Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581674" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581674" 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:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121104" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:43 -0700 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 07/14] jobstats: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:23 +0000 Message-Id: <20220620104030.1889156-8-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 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/jobstats/rte_jobstats.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/jobstats/rte_jobstats.h b/lib/jobstats/rte_jobstats.h index 023d9dd15c..45b460e603 100644 --- a/lib/jobstats/rte_jobstats.h +++ b/lib/jobstats/rte_jobstats.h @@ -8,7 +8,6 @@ #include #include -#include #ifdef __cplusplus extern "C" { From patchwork Mon Jun 20 10:40:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113106 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 A4A89A0545; Mon, 20 Jun 2022 12:41:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 52E7142B78; Mon, 20 Jun 2022 12:40:50 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 01F6442820 for ; Mon, 20 Jun 2022 12:40:45 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721646; x=1687257646; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9/5+G7oNATtDxFHMbw7sKoAyM1airB5TPL7G+GLPHts=; b=A0JHxQvPdeXJVXHFwAIC0JE4h7q49pyJUHWgYihrTJr6Ow8PT16MGKpK bvzwQiqZoL2rj7Fc1AZQRKMuFGTlKdz1exKbxM8KkCJ3ZXyMqlaXxBhor 8MANddKkjtHujjsBznbvOzRX+owlSpU69UZMGW9wXMfE22zZ6LRWnGIjc uJKwLzK7oT63YwkSy5LIZIyTuEv2nY7xwfdKN7K2Fm3swbTEYWa3OR+5Q kkoOOiW62GrvGdFpH6riWlYfUANN9Hm6ip3uSoK/eMZkAjVZCMCVVaCck hCYWzcN7ASHTvOVw17wNNlnaj1PHwFjoW8xCPTscWdVtYW9zoY0uN/1SC Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581680" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581680" 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:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121110" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:44 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 08/14] meter: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:24 +0000 Message-Id: <20220620104030.1889156-9-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 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/meter/rte_meter.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/meter/rte_meter.c b/lib/meter/rte_meter.c index da01429a8b..4549b97d36 100644 --- a/lib/meter/rte_meter.c +++ b/lib/meter/rte_meter.c @@ -2,12 +2,9 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include #include -#include -#include #include #include "rte_meter.h" From patchwork Mon Jun 20 10:40:25 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113107 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 7C9E1A0545; Mon, 20 Jun 2022 12:41:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4ACAC42B7D; Mon, 20 Jun 2022 12:40:51 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 4BC6942836 for ; Mon, 20 Jun 2022 12:40:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721647; x=1687257647; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WTgl1EyY+amkBzMNdbSAt5b/dLqIInId4yqyL2Q4c6Y=; b=Xom2vCPgkkYr3Uj3eJXcm8DlWkP0ypn6inby7FIKORtDtXYSGHmijA+t WbZlKvdwK1swNORQdSG7nGRfl4kiqpWyc+FRWQEBCIpzjPIGTp3iGtPDJ 4kgIYIyPmVHWBNf+1bMwoNt6lqezJEvrtCfWqLhqeR/3g5m9As0oqQu2a 8eIJ55e7Q1G6YNmlaJFPIPXOfFxTde6qibDmC/1EJ0JLyvPzBxAwRHq/w SuBZ1xGHpG2BS67fETirVXDTFi2D6eCtC9BXa3W0lZdVbo8CjJvj0uclB FP784n3j1UhWs9+pBdHW3HM/FI5t/eAGbY+/RgQ8zLgZ3M01RZJ4Fsmu9 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581684" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581684" 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:46 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121116" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:45 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 09/14] net: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:25 +0000 Message-Id: <20220620104030.1889156-10-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 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/rte_net.h | 1 - 1 file changed, 1 deletion(-) 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 From patchwork Mon Jun 20 10:40:26 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113108 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 D7FD5A0545; Mon, 20 Jun 2022 12:41:40 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 353B542B82; Mon, 20 Jun 2022 12:40:52 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 2DAEB42B6D for ; Mon, 20 Jun 2022 12:40:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721648; x=1687257648; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=D2+2jVsvkVHSfus+v/MudteVhtm7Hzr9gMrHHEGIpPk=; b=B8/ifPUPb2Lqg8QBZafXiYvOfFT9LlDkM/ABL/JWLSuYZHrsuWkWEI4+ S0vLeo2hx6K4eRbvFTO44urs/0W24hXXVV5yTArrWTI/DKXmWPqkyITMs 1m5d9oam7jnb4quDrhnxulvgmvI1B9k8NxzE3D/hoN1XTGLqJ/E7Vh7ZG BWB1oB6bHxGteXFmVJJc7o7/gSOaR5TqbBEM04xriGQMoBuRqZtXOT7dL 3WHPU2req2ayQB4PPl0YgLXqNbvvgoBAhvyXkeVkbVZWLes6+38pOfGhJ Dz6+TS/CsYyvKYMecxNsU7JgG33XPtkW5ATXx3cvjLdmZbJ7BuH1eDlD4 g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581688" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581688" 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:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121120" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:46 -0700 From: Sean Morrissey To: David Hunt Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 10/14] power: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:26 +0000 Message-Id: <20220620104030.1889156-11-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 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/power/rte_power_empty_poll.h | 3 --- lib/power/rte_power_pmd_mgmt.h | 4 ---- 2 files changed, 7 deletions(-) diff --git a/lib/power/rte_power_empty_poll.h b/lib/power/rte_power_empty_poll.h index 43fb276077..f6306fdcdf 100644 --- a/lib/power/rte_power_empty_poll.h +++ b/lib/power/rte_power_empty_poll.h @@ -13,10 +13,7 @@ #include #include -#include -#include #include -#include #include #ifdef __cplusplus diff --git a/lib/power/rte_power_pmd_mgmt.h b/lib/power/rte_power_pmd_mgmt.h index 789fbe0e4d..7ae6ef2d32 100644 --- a/lib/power/rte_power_pmd_mgmt.h +++ b/lib/power/rte_power_pmd_mgmt.h @@ -11,13 +11,9 @@ */ #include -#include -#include -#include #include #include -#include #ifdef __cplusplus extern "C" { From patchwork Mon Jun 20 10:40:27 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113109 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 286B2A0545; Mon, 20 Jun 2022 12:41:47 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8CF4C42B7C; Mon, 20 Jun 2022 12:40:56 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 7188242B77 for ; Mon, 20 Jun 2022 12:40:49 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721649; x=1687257649; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uTHFrinGk+aE8JOl8K8zfq5itDMNfQ04qzq94MLQdn8=; b=oHxdpOfSIDx+T1EaAwD0pCUWZlXpVGpfb2YQtaBNDiqUYKkjpMo/aDH4 jSfk0SK9JluKpIrqfOKKiZgEp5SkhbPvlIV3s5yNwBBJIG3drVGrrG3B/ f5ozmxCnpO14jtY+itqz4jevNiYjd80Xnnvp1+0pkQVflpqXrZFGa4CHW 4xJY+DqBeO1oUbnQJBz5ZF3hJFkUcmJqMb/QAgeTvgVq+MgY8lL9txgpf p7XGg2EJBUhHro3u6UO7FyQefWb6KNQWSjF8ZYFlprDWnT0b7KNB2cTAe 64x8lNCgVHHpDvNIcH2grvGi0LVEV+S4lWZQrXqHc7IyVmqpp/B1pck39 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581692" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581692" 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:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121125" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:48 -0700 From: Sean Morrissey To: Sachin Saxena , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 11/14] rawdev: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:27 +0000 Message-Id: <20220620104030.1889156-12-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 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 Acked-by: Hemant Agrawal --- lib/rawdev/rte_rawdev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/rawdev/rte_rawdev.h b/lib/rawdev/rte_rawdev.h index 14e8eb972f..66080eae9e 100644 --- a/lib/rawdev/rte_rawdev.h +++ b/lib/rawdev/rte_rawdev.h @@ -20,7 +20,6 @@ extern "C" { #include #include -#include /* Rawdevice object - essentially a void to be typecast by implementation */ typedef void *rte_rawdev_obj_t; From patchwork Mon Jun 20 10:40:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113110 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 7B68BA0545; Mon, 20 Jun 2022 12:41:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 96AFD42B89; Mon, 20 Jun 2022 12:40:57 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id C002C42B70 for ; Mon, 20 Jun 2022 12:40:50 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721650; x=1687257650; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=fSDawLP68Rq6He+d0oBwaB2pH5A0+Qi6rggWuwxTUb4=; b=Fkd1hkx7boe+fjFR2SWAbREvLJK9MmdE+Q69QN43NrIsgdB1s5YOFZfn Fkq/+Lb+xXVv3hNxBbHDkPSZkuuwA39OxBdJKNF1xpxN2UZuacVDhIBuI 44ZJM6zJI3fbjXSI/G2euN8PqTNoSh0po2wBcqN7NHRvQuihREL3rcsWI QuhhYauAbEBxfBbjjclh3OWV1TFQ4lNcBWPlP5AV8cyplsefLSAjumU59 6bfxtM0nSvVoS/1pNLoCkIdMRqWBIOpFej1hwfin6VYnSLGPx8vs43p2S QEcBiBQVpJQhHKO9KOtml6GR3nnMbyRMLXBMWfKdBLspRFBHo6vzQB+Gt w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581696" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581696" 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:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121130" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:49 -0700 From: Sean Morrissey To: Cristian Dumitrescu , Jasvinder Singh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 12/14] sched: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:28 +0000 Message-Id: <20220620104030.1889156-13-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 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/sched/rte_pie.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/sched/rte_pie.c b/lib/sched/rte_pie.c index d37b79e6dd..c84f75a18c 100644 --- a/lib/sched/rte_pie.c +++ b/lib/sched/rte_pie.c @@ -6,7 +6,6 @@ #include #include "rte_pie.h" -#include #ifdef __INTEL_COMPILER #pragma warning(disable:2259) /* conversion may lose significant bits */ From patchwork Mon Jun 20 10:40:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113111 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 15CA9A0545; Mon, 20 Jun 2022 12:41:58 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A4A0142B8E; Mon, 20 Jun 2022 12:40:58 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id C9F7A42B7E for ; Mon, 20 Jun 2022 12:40:51 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721652; x=1687257652; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=LRBRnzyW/uxS2wiJxFBaC8eROGgybIuEOUIHg9DHAd8=; b=QH7RY85RGUksuPjGytqNMNSWdy/y2vEgBVF4/jl60MaI6Wuz2Ig3dnKD qpJjAojNHNwjHnpGYQ8Zhz334qHLZqR4O8aSL/dwnwSuKysYmKL1AbHlt 2COQKApx7njqK65n0FcEhlwUwyL3VTahL8b4KAQ4PE7Exfd/s/CzirODp TqbS7omVDsFfaWqW0EqoPSk6W6B3JRkNn1erG9cWTp6AnoGltzA1O55k1 wlMs29k4qKSGBopN3tK4SOADRULM7NseDaTxugxUmMcraQiZOMUeyn7WH /e93aTJrT+rZuJoR/gKbhUjdlzZkaZtvIhublNt+hvIIkOUaKgkdEU6DD g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581699" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581699" 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:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121133" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:50 -0700 From: Sean Morrissey To: Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 13/14] timer: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:29 +0000 Message-Id: <20220620104030.1889156-14-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 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/timer/rte_timer.c | 1 - lib/timer/rte_timer.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/timer/rte_timer.c b/lib/timer/rte_timer.c index c51a393e5c..9994813d0d 100644 --- a/lib/timer/rte_timer.c +++ b/lib/timer/rte_timer.c @@ -7,7 +7,6 @@ #include #include #include -#include #include #include diff --git a/lib/timer/rte_timer.h b/lib/timer/rte_timer.h index 0f820555c0..503438a36b 100644 --- a/lib/timer/rte_timer.h +++ b/lib/timer/rte_timer.h @@ -36,9 +36,7 @@ #include #include -#include #include -#include #include #ifdef __cplusplus From patchwork Mon Jun 20 10:40:30 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113112 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 ED95EA0545; Mon, 20 Jun 2022 12:42:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9835442B91; Mon, 20 Jun 2022 12:40:59 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 1657942B84 for ; Mon, 20 Jun 2022 12:40:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655721653; x=1687257653; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZhIfcTjtR2zlEMN61rKRyp66gBs6ETyARUkivhXku04=; b=OwRnb5q+Dk6crmPRWL9MUterI8E1NhFTBlip3gW76h1/mwoTtjvNw4hW fF9lTAEBUQ5g2SW7JO5pc3LK+NdCmP4CieHjzQTE7DmJ9O4osvYh2ai55 9umY6uzC7xoxX+9ice4oAqB+xK4qEtq6HbweX5GQHWG4WsCD8ctgsVFuy EhU3n+RYZV8GcUEq5ieFN8qp1nnVkBa8RKXbV8/irAH9b7szira4hYVZX hDqMfY71P64bL2U9f0ZKfTPcEHkI7ZWKlnkvjOS0qQ2UdqZxi5EBj9oQ+ VI0G1jkHBRHB39YshcVo6OdBoLynqmou9BlfhBhdKsKa9MiwNq9t8KLkz g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="268581702" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="268581702" 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:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="591121143" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga007.fm.intel.com with ESMTP; 20 Jun 2022 03:40:51 -0700 From: Sean Morrissey To: Maxime Coquelin , Chenbo Xia Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 14/14] vhost: remove unneeded header includes Date: Mon, 20 Jun 2022 10:40:30 +0000 Message-Id: <20220620104030.1889156-15-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 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 Acked-by: Chenbo Xia --- lib/vhost/vhost.h | 2 -- lib/vhost/vhost_user.h | 1 - 2 files changed, 3 deletions(-) diff --git a/lib/vhost/vhost.h b/lib/vhost/vhost.h index 14235aaf81..4ebcb7448a 100644 --- a/lib/vhost/vhost.h +++ b/lib/vhost/vhost.h @@ -7,10 +7,8 @@ #include #include #include -#include #include #include -#include #include #include #include diff --git a/lib/vhost/vhost_user.h b/lib/vhost/vhost_user.h index c4d091e175..8ecca68597 100644 --- a/lib/vhost/vhost_user.h +++ b/lib/vhost/vhost_user.h @@ -6,7 +6,6 @@ #define _VHOST_NET_USER_H #include -#include #include "rte_vhost.h"