From patchwork Fri Jun 17 19:08: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: 113023 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 1D5FEA0032; Fri, 17 Jun 2022 21:08:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0C344415D7; Fri, 17 Jun 2022 21:08:52 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id CC4E340E2D for ; Fri, 17 Jun 2022 21:08: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=1655492931; x=1687028931; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kTgQJ7KodACv8jdYac0oUzXtBLxVmn8ZMKkaYVOcSvk=; b=GLTgIClamOaTuIsH5e7LYpZ2C5iMTLBa8xgdd1LP4C8uYbguqyHocNoj 67ffD2LWjfC+wVv+qZ/VesDrupf2XfTgXmT/RBUcRQoWXW7nOgfAU3/+G ArUXYiiCMSF2G5BvTRenqofyjTpidl36hel/3V3LsoZKU0HKdIiL10XRv twe5xOxGSzwVO2fo4aoZuscXT4jVWu6XtfSxVqgfXubG6cawKp59rG2G3 Pgy2UpehXcOyhRijLEamli3jDfYL6sffUzJ18O4dQDyz2cjzS1P432FEI EuBoCXlYi5MmDHl39zhste5jj0XKliMpsUMbGIZDBIoxvABYdSSbHIzNo A==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="280627747" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="280627747" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736955" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:48 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 01/18] cmdline: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:18 +0000 Message-Id: <20220617190835.1126602-2-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113024 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 4C302A0032; Fri, 17 Jun 2022 21:08:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F32F6427F9; Fri, 17 Jun 2022 21:08:52 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 7BC1140E2D for ; Fri, 17 Jun 2022 21:08: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=1655492931; x=1687028931; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=2xjOz8w05Qt/0nHcMQp8ZEU3R6GmaOTS84WOzuwsvKQ=; b=QJ+LefvgjeOA2+7BDmWI7Q+eqXhB4u4K2r0viIfCO3AAKkSRBCkCmzJY txRoCawfkObIoerYsQ22dCBbSHlmtC4m0PsA9tJIoZLZBocZHfgV69yiM hM78PuIpaJ0lRxZegAKnqnkBWaCZAVFEt/J28pVnAHw9dxJArNpPAP9GO ajZMoV16oRLFcX6hZo/CTt0uiFBb39Li8D4DN43MrZsD9lndhFMxwX8b1 fFRt4Orimzwqhrsd1fd80kzUqDbbjBKuXJIbThffSgtH8aZPYPVi7A/er b6iR1mckCQi4b2riTKfbUkRe71vywXZNlizM2qfFTLn+Yy3C+qJqDJyuC g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="280627752" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="280627752" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736960" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:49 -0700 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 02/18] eal: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:19 +0000 Message-Id: <20220617190835.1126602-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113025 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 BE21BA0032; Fri, 17 Jun 2022 21:09:01 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 13C064281E; Fri, 17 Jun 2022 21:08:57 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 0168B4281A for ; Fri, 17 Jun 2022 21:08:54 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492935; x=1687028935; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=leWblTsfwNNoeq23LutzRRsf6Ww70o4k/MMXpF9Bxls=; b=QztCXFmCKCiw3oF/WQ5EsdwjxNQoFeGE3YagOdqRtIG+DR/BFZhZNd7S nIXMwnlUCSJo+01VEJrYI8xl9mFXLmwgaJ4Ha7p1f7yu8CaL8cwQg5oY9 tHjyJdhJtxId3MkaQlGsa/H/Eh+0xFegLJapE9kKHpMEPst9JcN/zwMEZ aO33Myft/KZT3ilygNV1YeafVzk/e+mEZtRxpFgk4crh2dU3/i6GX4HXg rko+utKZsR0jwVnpI2haK2PPfqEFRpvVEES5wlFROcdHnj2edCiItQv5G Jb0nTVUTXdDjDOHCHbAw/hS3JL7m6++b+XDbETpehV60JW8GzzllP5Jxt w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="280627758" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="280627758" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736967" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:50 -0700 From: Sean Morrissey To: Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Ori Kam , Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 03/18] ethdev: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:20 +0000 Message-Id: <20220617190835.1126602-4-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113026 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 B5135A0032; Fri, 17 Jun 2022 21:09:09 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 59A4C42905; Fri, 17 Jun 2022 21:08:59 +0200 (CEST) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 2A0AB41148 for ; Fri, 17 Jun 2022 21:08:55 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492936; x=1687028936; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=TaCtUrax3nNIr14Q5Rkrp0fZbPp8DaFRggKJgLKP6VA=; b=enhYN7AfhsYXtrvxBsRCFaeanqd0ImRVUJRgMRD7yaNlvB3jwCpeAASa e3JNeujCeg2/ZXQ6CLT0wlG6IO2GWBkI8g5OFrPsXa/OjPt5UsA5OdnCR rW23xdumqrM3oLrPTj4BBNvLd/0M2tRvyrM47cm7a/lU7JcCuU07PaFkK /A46ml3rTM8WsTxpFfgkgqgfhLxIo7DnaRaBI2tiHn/VpcUmhZYcJc317 JlzHQ0tT+ZVDUFSoHMGMuDbhzoN9QrBoaDJ2i2Gv65pDbklTv9Xai3ZKy 6m9JftghBSOHZQkdyIvRblSEeQn4nrrkFq11cJEFNV4CqVm0hahI1ATQ4 g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="341251072" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="341251072" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736974" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:52 -0700 From: Sean Morrissey To: Elena Agostini Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 04/18] gpudev: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:21 +0000 Message-Id: <20220617190835.1126602-5-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113027 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 8D7D0A0032; Fri, 17 Jun 2022 21:09:15 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4D52542B6E; Fri, 17 Jun 2022 21:09:00 +0200 (CEST) Received: from mga06.intel.com (mga06b.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id DB7DC41148 for ; Fri, 17 Jun 2022 21:08:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492937; x=1687028937; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kPHIhD0BVPpcsUGuCO87uCxLPMgDVvYWe9pBSZVYlH0=; b=gvkj6rsUXmaULZH61uk9bl1I2oVxZnwQddr6Dpy0lryLyZr/rnsYANnC PXzMeiq83K+GnafsF/kI0KcLRdJS3HavW2zbyXiY+8tE7Mbc6gCcc8mT0 /lH5fp6BfVzdJryKRGB7nwNMDh3xD9PUzhYJ84U9+hrRoOlEPM4QlhGcA SALovaaU3PsSPwFb3ZN/MaTe5HV1dpuN6ebcuU+zCRjlbhnBjNsTbsV+P CCwWk91RRDq1EPNuF0JrUTNxy61nZsBucgypTsqevBRC/nMgPxZiWv9Em wFqODZj+zwg1qYPtR2u4ofO8v6AQWj4NVd+87mASLDPw7z64ymKQW3kNX w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="341251076" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="341251076" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:54 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736979" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:53 -0700 From: Sean Morrissey To: Jiayu Hu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 05/18] gso: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:22 +0000 Message-Id: <20220617190835.1126602-6-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113028 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 67CB6A0032; Fri, 17 Jun 2022 21:09:21 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 69EF442B71; Fri, 17 Jun 2022 21:09:01 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 0A4F2427F3 for ; Fri, 17 Jun 2022 21:08:56 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492937; x=1687028937; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mYmuQKjdU1BZDJ8osvjSyc4q7TGRxfvjnx5gc/surF0=; b=b7pg1AaedVs5dcV49ve5/7/5s5ooWI5+A3oLeGz0Z0lY4oCUFHXWChTS qmnoWC4G4bN5xSCWw8rKtfimUayiCEO518jtYYXO/S+YkjxXQaO574gxl TdMsilsW/hCgY0e6zhbuxm6EPdSNr2fXBhhbHbOe5MObK1h9zajYon/D6 d28kd/Yh14XKc9lacIfd6tgsC5JF2YeOZZWuSwhF0DfpJ/lehbtJCE3Gf m+FfNcVk2NBfzFRr+R4ERwfyW29eDaFYtWqHyi2TWPWPJgJaVKIPs9eyA 1aWtTxnKfA0jGY6R/RixJhwJfEslaD1tryJvfVNK66eGbC1HX/LUkMs+4 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389424" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389424" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736983" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:54 -0700 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 06/18] hash: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:23 +0000 Message-Id: <20220617190835.1126602-7-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/hash/rte_cuckoo_hash.c b/lib/hash/rte_cuckoo_hash.c index 490f94af4b..de7d941638 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,8 +20,6 @@ #include #include #include -#include -#include #include #include "rte_hash.h" From patchwork Fri Jun 17 19:08: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: 113029 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 1A1CCA0032; Fri, 17 Jun 2022 21:09:27 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6045342B78; Fri, 17 Jun 2022 21:09:02 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id BBAA7427F3 for ; Fri, 17 Jun 2022 21:08:57 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492937; x=1687028937; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=IkE9LIpgin214dy5shhnlKL7bqJK12tXFJd5P2J8QNo=; b=LlcTeFxP5J4Hnk78xVgudU+GPCvqN4doW693hG0s60jqzQCQ8BHIEpPE STDeptiz1ZEW3wPN9kanVS+FAqlNR/DzgeTi8LAuZBDyZ4tgtkYZL7E7s NMYRKtiIyaxlqYgZwhXBfb0I9GyR1cKwYlBxTr8nJkUwHU4Sugcaqg1R2 SKUu0PWp58e1boGpaYS+Ud+I4ZcIIUjrnuYs0K5XYNLQLETifBjl1f4fz 0B+9O9D4MEKMjXrhjNPosucvnBmHk/Rsr4WrJF7T45xX5aZYy/xDe9jHO DqWIr4VgyWsf/OXVn+k6zpkgUBzD/Q/6aosjUtRxUlO/Uh0varEO5r4Kz w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389428" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389428" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736989" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:56 -0700 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 07/18] ip_frag: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:24 +0000 Message-Id: <20220617190835.1126602-8-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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/ip_frag/ip_frag_internal.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/ip_frag/ip_frag_internal.c b/lib/ip_frag/ip_frag_internal.c index b436a4c931..043b0ffba3 100644 --- a/lib/ip_frag/ip_frag_internal.c +++ b/lib/ip_frag/ip_frag_internal.c @@ -4,7 +4,6 @@ #include -#include #include #include "ip_frag_common.h" From patchwork Fri Jun 17 19:08: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: 113030 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 51B1EA0032; Fri, 17 Jun 2022 21:09:32 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7E94142B7D; Fri, 17 Jun 2022 21:09:03 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 4D6DC4281B for ; Fri, 17 Jun 2022 21:08:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492939; x=1687028939; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=r9U45GWM7bkAHxpHgFd7Ab8vl0AcJT61kuM2S6pn3IU=; b=NcuovUTTfmfaRuJeWF8av8X8FNMYH42D2puA99uKthZ2OuhjkI50ZCgP TTXyKDk+RVIm8gkbJsARahsnAAp2RK6PF/yvpSYAwSis0KhTEs8mWcWKR zba/crvznU1wlD5rbqLBO9IUhIlx6zY4oNKBTe+UNiSrI0vF4f7aezxma j+UskhooyznWfjrm+U7m/C0SCWa13kalpHYaENW+QVjwUrXi0ZDdpfoEB YCT3p2EJ3wTEgmFKdrj+UzVXZxkqs+3cwpfgvCl8jmo+1ZPOa2IGNvOf8 NwDkGFRx6bXagcHTfjVh6rs9E6LV6rEHix5lOq+VmDiumTPQxz4Q2muqf Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389431" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389431" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653736996" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:57 -0700 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 08/18] jobstats: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:25 +0000 Message-Id: <20220617190835.1126602-9-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113031 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 D4FFAA0032; Fri, 17 Jun 2022 21:09:37 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6E9CD42B81; Fri, 17 Jun 2022 21:09:04 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 738AC42B6C for ; Fri, 17 Jun 2022 21:08:59 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492939; x=1687028939; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9/5+G7oNATtDxFHMbw7sKoAyM1airB5TPL7G+GLPHts=; b=hnIM9yebheo33/MW+YEnipUGVvEOqrlGQlYPfNmdupBT1tGPw03nqpC6 +LhyL+J5oBCh1vf8OE9b4eIYu7UlIcpvsb1lR0V9zjn3ODG18B7VHjuDm jk6J4in3MoVzRHe7W9yBuKQhTPb9NUD8/mxKoCAnnZP3oSd+dpbt/KcYE SQgB4HrdsuB/CrMIBKPR8Mmfom1F3niNoi4NlSoZKJfbEUxmfVAf0X7No 3OedRSOx7uVMNgj7Sf/FHDP3+AlOXBztTDygSeHo1m1qOM3VGM7EqtM6I qsU88XwrlSBjnMZ9EHtqLIqVbzhcuAiVOTtgSULBG0Ta7L+d5NtolfVO2 A==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389434" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389434" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:08:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737001" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:58 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 09/18] meter: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:26 +0000 Message-Id: <20220617190835.1126602-10-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113032 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 B17F8A0032; Fri, 17 Jun 2022 21:09:42 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5FD0642B84; Fri, 17 Jun 2022 21:09:06 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 9B33C42B74 for ; Fri, 17 Jun 2022 21:09:01 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492941; x=1687028941; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WTgl1EyY+amkBzMNdbSAt5b/dLqIInId4yqyL2Q4c6Y=; b=OeTiOome9aAX3XJILWaUjBg9xeXh/SObhQp7nqJY2tp2lHCatpj4tIfE 297qYSi/DuE6pWY/bFVy2eE+50ig411KGQOjzSHjHQGey6MAq9eOqJY0e 5rpQ67FmzGs2f0uyxg58S/c2A+UJEv+L+K9MZODjOIvARzhst3mpQygTJ 8M6irjzUMOgD55DsuXY1dafB551Kn4uftts1m6pe/s/6NkJNdVl5lBISR 7/Mewc+eCX4q9i/6xjym1hVvFSREryrQBdsry7x869IVSSqlZ4FoUrWXe GwgYtXffPFWXq/s8wIJOTOjlxJ/D2SA+yq2WZ4YT3UzZ6LKoEtT6rDKhg w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389443" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389443" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737007" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:08:59 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 10/18] net: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:27 +0000 Message-Id: <20220617190835.1126602-11-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113033 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 A73C1A0032; Fri, 17 Jun 2022 21:09:47 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 550BE42B87; Fri, 17 Jun 2022 21:09:07 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 3D16342B74 for ; Fri, 17 Jun 2022 21:09:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492942; x=1687028942; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ywZLM3tId6YOv0YHcMiA40bsRWSnpd6ULQDrTVowaXk=; b=RqpAFIerASFmk1sytberQEALE5tpaW/xI23z/4py98aCg6FlY/pVwbxb noAb7//of7HeuR0iVoL3JBalo4GhzQW9d0Q1ocWjxCLdCUTCWjZQ3s9qw zjnAB6BZvS0/Lu4wK6tfWUS+evOap2HIbU4UrMlf7I+tx+Jl7PVnxwUgt r088249/frzHgO31db0Vj89YJYXMvjmohYZ6OZU3T9XjDmvkN2kMAgfBI AL8rohWiBN1vkqDLdRGtxCfck+ZfZy+AgH+oZrwd01wk9m/Wfm/57QntT zPYlm0uQyI701Giv+YFefwZr/vLOojXx+X33c29xtrrMKqaA6XiGDAumW w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389449" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389449" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:01 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737014" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:00 -0700 From: Sean Morrissey To: David Hunt Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 11/18] power: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:28 +0000 Message-Id: <20220617190835.1126602-12-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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.c | 2 -- lib/power/rte_power_pmd_mgmt.h | 4 ---- 3 files changed, 9 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.c b/lib/power/rte_power_pmd_mgmt.c index a66e08e574..7f445479bb 100644 --- a/lib/power/rte_power_pmd_mgmt.c +++ b/lib/power/rte_power_pmd_mgmt.c @@ -4,10 +4,8 @@ #include #include -#include #include #include -#include #include "rte_power_pmd_mgmt.h" #include "power_common.h" 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 Fri Jun 17 19:08: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: 113034 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 B822FA0032; Fri, 17 Jun 2022 21:09:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4D42542B8A; Fri, 17 Jun 2022 21:09:08 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id D66E642847 for ; Fri, 17 Jun 2022 21:09:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492943; x=1687028943; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=uTHFrinGk+aE8JOl8K8zfq5itDMNfQ04qzq94MLQdn8=; b=O+BKpQcTZbbtZEgHTiGp040B01kySFWtLIuJiHI8ShjyqgQ+ag9xEWk1 WPhsqcdw/lKogMcfCdwMJPNFhvWiq9uNBDlWZQG8uLMDbWSukHTXPSMrU Pp5zPGuu6+xR+x7eVfG9bVcKqeWKQyFg5vjr8sNQP335dGnhVMVNXriJt M4dSyw9ZjBdh2/MTSpUEhKAyUDvw2pemfJNYuzSzYLFi4ns/O6VKYWVLI 0SXYBqLRtmKiewOcr1u0l6pCRcx5m/dlqh04aZH35I0lZFxILHqj9rZow Ix3PQUtXTxhieRb4yMGolE9MClzkJKU5usDbJ4OFciMtuDrQu9nmXw+OT g==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389458" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389458" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737024" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:01 -0700 From: Sean Morrissey To: Sachin Saxena , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 12/18] rawdev: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:29 +0000 Message-Id: <20220617190835.1126602-13-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08: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: 113035 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 E5879A0032; Fri, 17 Jun 2022 21:09:57 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4B60F42B90; Fri, 17 Jun 2022 21:09:09 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 0451742B80 for ; Fri, 17 Jun 2022 21:09:03 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492944; x=1687028944; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7hh/61MAy0v9DE69btyAR0qDn1I2enA1x3e+QBf1VaY=; b=E4mK7DanQR4PTjjM6ZrchaqFBehoJuVxi3pvq618q6hePg9N7pySohPq KnmfX6uT1NAGWnMGwzyQ4nzoneMR/ls0UBqoDnsagV5d3Oif/5wD4R7fV 6RP0D8gDlOFF47dYIJ5sCazMbZxXbJ2onplNlBr+R12gJwMhn6VR3Cks0 Q8/zzPltN4mkLVdeytQ+E89HB1F+a6h6wWSP0Xi2SkBHupoVuWv1o0NeS viUbPOhbfio+uwercNdL4F18YGnIl8Bc50Khcj72o/z39Cl72yDo/0mji VglurnWF0lKL09U4daoG+coXtUlDNXK8CiDexR8l4625WHqBePLRONvGM w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389465" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389465" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737029" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:02 -0700 From: Sean Morrissey To: Ori Kam Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 13/18] regexdev: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:30 +0000 Message-Id: <20220617190835.1126602-14-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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/regexdev/rte_regexdev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/regexdev/rte_regexdev.h b/lib/regexdev/rte_regexdev.h index 3bce8090f6..ce3dba5c10 100644 --- a/lib/regexdev/rte_regexdev.h +++ b/lib/regexdev/rte_regexdev.h @@ -200,7 +200,6 @@ extern "C" { #include #include -#include #define RTE_REGEXDEV_NAME_MAX_LEN RTE_DEV_NAME_MAX_LEN From patchwork Fri Jun 17 19:08:31 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113036 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 3B3F5A0093; Fri, 17 Jun 2022 21:10:03 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6045842B98; Fri, 17 Jun 2022 21:09:10 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 25D6542B82 for ; Fri, 17 Jun 2022 21:09:05 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492945; x=1687028945; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=fSDawLP68Rq6He+d0oBwaB2pH5A0+Qi6rggWuwxTUb4=; b=QaeCXDXyzFt8mSErqhxlpDc/eRn9H5D23L6JDVQefgssE65gKA5w0gqu eXtNJqfq/eNqfFPockg5ilHPs/C1A53F67aa98jR10Yp3pzT+Tv4q4Vq+ VbdY2ZwJm9fEEjEUItiVDbzaKU+rWA5JqdbDbuZUiEwSSOWYIXAF5NMrF oBl4YLjb7jQgtQFJ5WaSsSrQGWNgRWW1TEzXpLnAHiJaEfTOPkQ2hQF2Q 6xB4y6strMTNHdrVdWSQuwU15l3FpikBzUnGbg5FwYfvyu47G3rUAysz0 VzObZPIdalZFXMbVgEjAghBHE4FbqnEEs+U2+kO8kxjmflVq7jALA/rA+ A==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389470" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389470" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737033" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:03 -0700 From: Sean Morrissey To: Cristian Dumitrescu , Jasvinder Singh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 14/18] sched: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:31 +0000 Message-Id: <20220617190835.1126602-15-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 Fri Jun 17 19:08:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113037 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 B8E38A0032; Fri, 17 Jun 2022 21:10:09 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BCE7A42B7C; Fri, 17 Jun 2022 21:09:12 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 3436C42B77 for ; Fri, 17 Jun 2022 21:09:06 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492946; x=1687028946; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=hkMzgYmqjipZGVcL4cmHXHP+oUbStZizdmXNvpuZlj4=; b=dZeO7Iy+Kz3sXjO6c6VCn18n+Gk2w+DVcA5wAhSzBJaZrX29qf44Dxk9 rVQGDc4o3EReTx1a8GXFgUrN3G95veVdQ2OyewuFm0JWEo3I39CUoECzb +nHUGSUGtM6gB0ctrOMucpS65Ad7vbTjo4WLhrU5gqmE5AWL8m/Jcrkvz 7l5DVHaVeSYU08o6ns6W3HKTj8hzkC6lJceYyi/5y2NptW3Sb6HYJ+r7t 9OfnRx/kuejoAiR7JG1JIeQgFBLIjhIo9sJkA8kqmBpNunJzVexAMr/AV D//1bEZYY1cM+Uzax0Qwu57dt9qSMR8FnCLRjiUmn1/YjRngNTiHeWvV2 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389474" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389474" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737038" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:05 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 15/18] stack: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:32 +0000 Message-Id: <20220617190835.1126602-16-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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/stack/rte_stack.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/stack/rte_stack.h b/lib/stack/rte_stack.h index 91fc570767..af8c3804f3 100644 --- a/lib/stack/rte_stack.h +++ b/lib/stack/rte_stack.h @@ -22,7 +22,6 @@ extern "C" { #include #include #include -#include #define RTE_TAILQ_STACK_NAME "RTE_STACK" #define RTE_STACK_MZ_PREFIX "STK_" From patchwork Fri Jun 17 19:08:33 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113038 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 96D2EA0032; Fri, 17 Jun 2022 21:10:14 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AF97642BA5; Fri, 17 Jun 2022 21:09:13 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 5370142B86 for ; Fri, 17 Jun 2022 21:09:07 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492947; x=1687028947; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dphqw/zVs0VouPqL5TvjR548keSoskcd03r8z0We/FE=; b=gZy6hMkdHpK3sWSHuQTlC1Ic3lSAdQB7a6AH1mI/VEFPK7l7G+yOFcLe wUv+lv7E6a7W23D5Ptn9/FeP08u+bNdu+fZqv56/aNWXTVQ6M5vpoSsVr bI4odpEJKTSyShOVBEEiPrCkLl1ZpwgnPdY2fDpD4RPehtJfUGVaAjlgD TPaE6C5LmfcM6OXs0xtSi76edS6ay2QOVN9rep/8pEOrnL74bwkYAc9ES BuUfc3pPMpyl6VBFWTwbHBFR/oSaf2YAnNVLjlHOfrUA2AKrQmjqr9V1R V0jWH9LwYZW5oTCtTWzKF0XEV32apnz4O5luxlqxM8qQLBYSB61pIGN6O Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389478" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389478" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:07 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737046" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:06 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 16/18] table: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:33 +0000 Message-Id: <20220617190835.1126602-17-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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/table/rte_swx_table_learner.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/table/rte_swx_table_learner.c b/lib/table/rte_swx_table_learner.c index f7f8e8aea9..3502cbd2a4 100644 --- a/lib/table/rte_swx_table_learner.c +++ b/lib/table/rte_swx_table_learner.c @@ -6,7 +6,6 @@ #include #include -#include #include #include "rte_swx_table_learner.h" From patchwork Fri Jun 17 19:08:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113039 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 39C30A0032; Fri, 17 Jun 2022 21:10:19 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AEF0F42BA7; Fri, 17 Jun 2022 21:09:14 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 66E4042B8C for ; Fri, 17 Jun 2022 21:09:08 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492948; x=1687028948; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9e7/TuqsoH1jzNbL9uz/iLQK9cUX8JTPBZTAmpmLJr4=; b=aYfM0Srr8RuEQx/Gzkv1yoFJVCxClHk39eqNxMKnd5FaXva/FL41mT6V 64fIk3tIc3bifHbbOQ3I8oWAlLIbLW7wP70eFTE1+TaPFvl/cyy3dGdNX JCaF3RLR+MYwZNmHL69muGhLVNnmE/zHuhaFPqJpz+uFxdrJ15zS4SQ7x uhdgL7vlRkoKoCeQiDGzzZ8aJrDOz0BrUzJZzIbtZVuzOGXHIDZK+p0TK PSfsJ35thp56n1D8xfeI5mMTs75Vk6ECMLuL3U/tOZaRFmoqhbg1OfYrl 6TRNNrA3scXJW5kmytvKWDBfuYFRzZ5CrXuEHiOny5tG3wUfzaFF0EjBE Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389482" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389482" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737056" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:07 -0700 From: Sean Morrissey To: Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 17/18] timer: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:34 +0000 Message-Id: <20220617190835.1126602-18-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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 | 2 -- lib/timer/rte_timer.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/lib/timer/rte_timer.c b/lib/timer/rte_timer.c index c51a393e5c..d914fcbf60 100644 --- a/lib/timer/rte_timer.c +++ b/lib/timer/rte_timer.c @@ -7,10 +7,8 @@ #include #include #include -#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 Fri Jun 17 19:08:35 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 113040 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 24867A0032; Fri, 17 Jun 2022 21:10:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C1F8042BAD; Fri, 17 Jun 2022 21:09:15 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id A9F3142B92 for ; Fri, 17 Jun 2022 21:09:09 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655492949; x=1687028949; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vqcgATHPwv+QC4I0wnByj2NVeDzF0QJZgJDGIPsvjjk=; b=Ebd3g+dh44Mfs9g++RDBaWRGHqFfx0rV666lTeJh9h++SsxkG8VGiSAu AfiZUyfvP+Onx/R9TbbsOAhZHhUC//l9gDGlqj4/aklSD7TjeeeuWJ60j IlcdRmQPfB8vqWhbORAjQdu1qx8G7kV+GOiL+3lByAnABYASmb62CkgPd 3qJ5angEVRMu9anUnwJLZOTFTUWa97GZXHWLyLdHjw4yrN11EcibcTxke XFy4xQZTkoXUSkOZ+UFAex5zw0zs1eF8KzgGgsMM0svoc2uHa5jmu1sf+ 0FwaEFonhw3EbI2j7s2Thh+9/QdD2IiuGy4oQ9hUWxg3TYbZo+CVqADg0 Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10380"; a="259389488" X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="259389488" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jun 2022 12:09:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,306,1650956400"; d="scan'208";a="653737068" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by fmsmga004.fm.intel.com with ESMTP; 17 Jun 2022 12:09:08 -0700 From: Sean Morrissey To: Maxime Coquelin , Chenbo Xia Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v3 18/18] vhost: remove unneeded header includes Date: Fri, 17 Jun 2022 19:08:35 +0000 Message-Id: <20220617190835.1126602-19-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220617190835.1126602-1-sean.morrissey@intel.com> References: <20220616151728.339629-1-sean.morrissey@intel.com> <20220617190835.1126602-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"