From patchwork Thu Apr 21 19:08:41 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110023 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 97E2AA0093; Thu, 21 Apr 2022 21:09:13 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3993B40042; Thu, 21 Apr 2022 21:09:13 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 2F3D540040 for ; Thu, 21 Apr 2022 21:09:11 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568151; x=1682104151; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=1Px6YEHrCC37m/Fx9jellvEZnVazR2tspLhON2eifIc=; b=BZro8kMWdVIOf3ggvualimrNi9xdupQ5YsyvO9loy1V2n4jUE+PvMDdc G+z2F7HSMf9wYoBnu0BqKYZmdPSeJUHkSCgnMs9QTSpxUdVXik5cAwKJw ml6c/TbtjDX48cBknrG9TxHjx36atf7FKgQtFfQtHr1tJ8OMzyvXUrvAB F1o3Gr2ajuuaqD7WRE+1E/xhIqIy7pbXSf20Mx4NPIzpvdyzKLRvl/tIo Q5Zigw66b3f9bbb3/HXBzKPeGjT6cU0NxGSP6O3Wf26YnahyEw5dnwWlU ge7CAM7et/rIFUrG7n75cBO8ETOrUcppRzePz05fDRu3GTa3QjV4pOO0A A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354149" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354149" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:10 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185499" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:09 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 01/19] cmdline: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:41 +0000 Message-Id: <20220421190859.264174-2-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 | 5 ----- lib/cmdline/cmdline_socket.h | 1 - 4 files changed, 10 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..d6c2431cb8 100644 --- a/lib/cmdline/cmdline_socket.c +++ b/lib/cmdline/cmdline_socket.c @@ -5,11 +5,6 @@ */ #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 Thu Apr 21 19:08:42 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110025 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 94F30A0093; Thu, 21 Apr 2022 21:09:24 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 01AE2427EB; Thu, 21 Apr 2022 21:09:15 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 4EE9340042 for ; Thu, 21 Apr 2022 21:09:12 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568152; x=1682104152; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=aq1v38ME5n0AH77W1ANTUL5Zs32BVcfMuEfrabJzlIg=; b=IfAk1kmp7aOiI35Da2gcdqbBwvzH4R3NxvlgfprkUvYuMTSbkxU33xSU g1qG7TlabfI9Gh9ahKlRI6kZ8z28zEwGrn1oRulxD9HYq78/qS/iAOAzY GhJb8vbJyjgUFN+3ZDUAc1dRmRFu8nXABCOBZJksVYKvv5X8xlI6ScT1i B/dLDoTK1RSy7ZOqPreNrQXpvdos/3BqivvRfwIL/taZ5avLWI2R7hmt/ DSkqqqJUCHM2HARpzXZV0B1zzQwhpbXMtNiDVIL91UU1JgNsl1zxQWPl/ OeOXKp9ckmEMIoWJ9RVxOyUcx95DAD/dh5hRSMoQjuGQOeckdioOjmQj7 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354154" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354154" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185515" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:10 -0700 From: Sean Morrissey To: Anatoly Burakov Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 02/19] eal: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:42 +0000 Message-Id: <20220421190859.264174-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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/common/malloc_heap.h | 1 - lib/eal/linux/eal.c | 1 - lib/eal/linux/eal_thread.c | 6 ------ lib/eal/linux/eal_vfio.c | 1 - lib/eal/unix/eal_filesystem.c | 2 -- 8 files changed, 14 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/common/malloc_heap.h b/lib/eal/common/malloc_heap.h index 3b2fbc0aa0..1d5c348530 100644 --- a/lib/eal/common/malloc_heap.h +++ b/lib/eal/common/malloc_heap.h @@ -9,7 +9,6 @@ #include #include -#include /* Number of free lists per heap, grouped by size. */ #define RTE_HEAP_NUM_FREELISTS 13 diff --git a/lib/eal/linux/eal.c b/lib/eal/linux/eal.c index 1ef263434a..1390b6cf47 100644 --- a/lib/eal/linux/eal.c +++ b/lib/eal/linux/eal.c @@ -34,7 +34,6 @@ #include #include #include -#include #include #include #include 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/linux/eal_vfio.c b/lib/eal/linux/eal_vfio.c index 549b86ae1d..c4fd7d63b0 100644 --- a/lib/eal/linux/eal_vfio.c +++ b/lib/eal/linux/eal_vfio.c @@ -15,7 +15,6 @@ #include #include "eal_filesystem.h" -#include "eal_memcfg.h" #include "eal_vfio.h" #include "eal_private.h" #include "eal_internal_cfg.h" 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 Thu Apr 21 19:08:43 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110026 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 CFBE4A0093; Thu, 21 Apr 2022 21:09:31 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 31F27427EC; Thu, 21 Apr 2022 21:09:16 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 05290427EC for ; Thu, 21 Apr 2022 21:09:14 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568155; x=1682104155; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=cecyqbHm9Xg1Y3zJazOZEZjrnggC7rWm75jJevYyPYQ=; b=TcLGYuYl22Ao606vUIqT3/CBinLErZb7R2VFJF9gUfMGpk7XvhP2h2I4 xyxCxmrMQIz8hmQ0mP/O8Hnt1v4P/OlblEy8SY4hKXStfZGMqMvFMBUoA 5NS+ATnFeIijmm6bsWBZJE078NE//KL6lZ5V8W+K1y4RFq1zljnhNVpeK UcWC/lC1TdNG7GzfagrUiRiDZ1vMSzl2jU/wQalHTZYPNOZU6ZpUrN9Fr KlM9weBHDqCFwRd3R1hu4MMd0309vrImlw//1lxGuMNHfjG6bpFqNXxkb ZO5PIiSyTbXw8XaThCgr6YcHH3fA7wHrCQs65vRFCQT5Ry6CSnj3JH7LN w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354164" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354164" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:14 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185535" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:12 -0700 From: Sean Morrissey To: Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Ori Kam , Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 03/19] ethdev: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:43 +0000 Message-Id: <20220421190859.264174-4-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 - lib/ethdev/rte_mtr.h | 1 - 7 files changed, 19 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 29a3d80466..c4120e6d51 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 04cff8ee10..131be93f6e 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 d8827dd184..5e9d206986 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 e49fcf271c..754872f6af 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" diff --git a/lib/ethdev/rte_mtr.h b/lib/ethdev/rte_mtr.h index 40df0888c8..d8c1066c9b 100644 --- a/lib/ethdev/rte_mtr.h +++ b/lib/ethdev/rte_mtr.h @@ -49,7 +49,6 @@ #include #include #include -#include #ifdef __cplusplus extern "C" { From patchwork Thu Apr 21 19:08:44 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110027 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 86EBEA0093; Thu, 21 Apr 2022 21:09:38 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1FA8242802; Thu, 21 Apr 2022 21:09:17 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id A7FD8427EC for ; Thu, 21 Apr 2022 21:09:15 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568155; x=1682104155; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=TaCtUrax3nNIr14Q5Rkrp0fZbPp8DaFRggKJgLKP6VA=; b=emnEvzWyQT5xiPruZMwPa9KOQ3EV7q/0i7X4j0LyqLoApA0rDDWKfA1s +Tb3LaEvAibvQb/MHU4TSp41Jjo83meTQtZv6V8KdE3tRfsr5H49IeQPF E29s8ujNrj0rhav13ePFk//74GXh4GlIre+/uC2N8TIUxcsZALkJlz83R jW7R89RUsST88ITmeOJyW7n5wl6yDV4jpAmNaSMdLWlLW09FcB4ckPyok +ZlF9kacTrevj5AOt3MW3zNMAvomskEwx3blz4ewsEObGfEu0Jp9xr3Ht WEtPSk34LdzCEFnLr61f+FpruaLyvkdhKx4i+ayTeYM91w2GjyvsNTFVo Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354167" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354167" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:15 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185542" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:14 -0700 From: Sean Morrissey To: Elena Agostini Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 04/19] gpudev: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:44 +0000 Message-Id: <20220421190859.264174-5-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:45 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110028 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 99793A0093; Thu, 21 Apr 2022 21:09:43 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 025AC427F8; Thu, 21 Apr 2022 21:09:20 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id D5834427FF for ; Thu, 21 Apr 2022 21:09:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568157; x=1682104157; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kPHIhD0BVPpcsUGuCO87uCxLPMgDVvYWe9pBSZVYlH0=; b=nnR8GBNG5So8AtOiy/ASFeBnhyEJ6+YuoMiJH6mvcWJB9vxxWRSgsphm cVcqimswfaNGBhO+yoePmxPvDmLNVfVScQZtA4CgoJd2Tcp/wMwDPZmL+ d1XtIG3Ihti7wJ9RJlf7d1efcSmt0JR0K9kAOUg7zg59IM0j91bpnq/BY yOd/R06i0B9I4wYK04ZBKE/25q1KXOSCrUeKchSQ1yg0mXaCgUI4b0eEZ 7M6yph5VYtiFuPx1En0CXkqPyy3L0k+pqGuSQylrvjYn+3sILPTb8fIIp zC+vZm5fQhqSHmtZaEZCpu8N8Ov1Pqky9z8zTC/pXJPgC97CS+5hAy30x w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354170" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354170" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185552" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:15 -0700 From: Sean Morrissey To: Jiayu Hu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 05/19] gso: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:45 +0000 Message-Id: <20220421190859.264174-6-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110029 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 519D3A0093; Thu, 21 Apr 2022 21:09:49 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D1FF542807; Thu, 21 Apr 2022 21:09:20 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id C899442804 for ; Thu, 21 Apr 2022 21:09:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568159; x=1682104159; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mYmuQKjdU1BZDJ8osvjSyc4q7TGRxfvjnx5gc/surF0=; b=ayZI5e3dXuswb8NPrye7ZWrVmNkHKiGAtMiMN8S3av976mi4kNHbniji /1Bnw4oBAVfOYCmVqYfkz8stqj8VmZ1sbf0HU6s9AAgJt5BUGootKgQqv CVOZvcTO7N6LBAOp/ZPrJlB0ucPMdYWGac+T9k4zlqS93mNk5H5GTqU8w nWqy+AKHFeXOUlW6CfVKV4MRTO963DFNEawRamGQRfLmLwPZbVbEHKx1f T43pa/vVyZzYfSFD5IBeQmp1tY1UU75+1PkMhbhaFemxN++/Ktbr/N4xr lEVWZOAZYaJymObaUD6KaDfB1WvKeXNEjFvRMOlH/5LzXXarB1C6XPCyA w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354172" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354172" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:18 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185562" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:16 -0700 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 06/19] hash: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:46 +0000 Message-Id: <20220421190859.264174-7-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:47 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110030 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 DF09FA0093; Thu, 21 Apr 2022 21:09:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B161A4280C; Thu, 21 Apr 2022 21:09:21 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id F1FBA427F6 for ; Thu, 21 Apr 2022 21:09:19 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568160; x=1682104160; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=IkE9LIpgin214dy5shhnlKL7bqJK12tXFJd5P2J8QNo=; b=Hk3I2/+bZcCe3Lyi9tYhgu24AHz2LWfDisomoyhFEOg0ilBEQ/LxqyAC kF/9H6CEoX0ACONXe6aQKCnncKwdWJ2ACszBTCl9roKvxDds1VUf73hRF tKdbdIIHiLkFu9RS8Y8W5u58hLo9rr6RHl/Cc13lLL4de5NbPVwFP//Vl OHm5Gc2xgUJ/6K9k8hAoFhyyz33tKiHpx3vTcu85BKdxtj9gW+PwH6oeg TdW25q0cq/3ynXUrTFzqAjz5rI7CXZuABWPipTurqL7Q+1iSQzCxevkS1 0enKXohlE3sWV0wVPLjkx/iidwex6/bD/Yutn6iw334gIKRjBSi5EDL3K A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354175" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354175" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:19 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185569" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:18 -0700 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 07/19] ip_frag: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:47 +0000 Message-Id: <20220421190859.264174-8-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:48 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110031 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 49BD2A0093; Thu, 21 Apr 2022 21:10:00 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9767D42811; Thu, 21 Apr 2022 21:09:22 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id EC31742809 for ; Thu, 21 Apr 2022 21:09:20 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568161; x=1682104161; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=r9U45GWM7bkAHxpHgFd7Ab8vl0AcJT61kuM2S6pn3IU=; b=OvTwKZoiXpACaHDBTaN7uZEDMICp20xTpLrE0+YXMYKTNXQKuAglUIE+ ly+uZNLOLLLWDrBxQrrFFV+Rh+0a6kLvw0MkRbJzdQYGTKnPZuSGqX02u 201ojpiVgZFQgtN8anNsE5B9wBDcOH3lJmM5csOcWZLQPHOtuI9WzonC0 Bb+Azx/HBSxNyXcRMOR/tMBayuRULvqIrAbZTAtljQTKirpfuWdrtwyIt qyN+Cvva06bQRaJVa3Z7/Zg9+/3BjXMH9t3S3uzXeIad/6qv1hbs4uHRF gcV8du9SHGxkJGpFSuBDQEklqdbNYNw5qGNmDniU39WaAd2oYdXcB28qG g==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354178" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354178" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:20 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185579" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:19 -0700 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 08/19] jobstats: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:48 +0000 Message-Id: <20220421190859.264174-9-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:49 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110032 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 8ACE9A0093; Thu, 21 Apr 2022 21:10:05 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8145F42814; Thu, 21 Apr 2022 21:09:24 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 4ABE4427FD for ; Thu, 21 Apr 2022 21:09:22 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568162; x=1682104162; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=rzsvy3jeRVGFyl3974yAmRv3UMBb+TyaNVF3usLJanE=; b=kvBlHmSz36G357UrHYb1EQuZdZo0fHws1r8/ayr6hxE2bwrJKFEOWaLk r5VAFzk51fqdDnqr3lbXlgpf34s0OE0uJdncjVs1va21atruRVQkmkJod MibuhQlGhKfo8QWIDeQzn9TpvoyZeeIN0oiu/vbP69N2EmRKotWiNqDS3 EsZIvdXoYHMe1KGH93p85ESBrecTRx/Q+OwVKEt7WripOHSKbBR/ynuYV QNGkPdi2jSFds98NNVERV6RkcnpEWXznSxeD/0myMowsDkDjWxCTILNMJ aTfvYlM3VS9xfi3t2epYST1kS2gK9gfxFNXEwKocPAGZM/D7/udaQcReQ A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354182" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354182" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185588" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:20 -0700 From: Sean Morrissey To: Olivier Matz , Andrew Rybchenko Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 09/19] mempool: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:49 +0000 Message-Id: <20220421190859.264174-10-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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/mempool/rte_mempool.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/mempool/rte_mempool.h b/lib/mempool/rte_mempool.h index 3ada37cb86..8d6554fbae 100644 --- a/lib/mempool/rte_mempool.h +++ b/lib/mempool/rte_mempool.h @@ -38,7 +38,6 @@ #include #include -#include #include #include #include From patchwork Thu Apr 21 19:08:50 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110033 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 DB7C3A0093; Thu, 21 Apr 2022 21:10:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8FBA04281E; Thu, 21 Apr 2022 21:09:25 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 9610242814 for ; Thu, 21 Apr 2022 21:09:23 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568163; x=1682104163; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9/5+G7oNATtDxFHMbw7sKoAyM1airB5TPL7G+GLPHts=; b=Sx454qxFeKHa2D+lHvKHKy3S3eICibi733RNsLeRo0pRK/QlOCtgs/kX KQt8jOXIQTlHGelsoFxvq6qYutORGjY+uUGnk1eHhhsUTe4Ub08PaQt02 TTHcgpFvt++VU0PdiDt7CQU3i22sZW5DRZU4bggxnV15CQFlueSRYGV/f fmOJVM2Y7G9M8b6+EXAO4u2JOTgvtszXZXe+ybToUj2q5zuUuyYzjdPVx MsX0XPSQdZExSSAaJ0XU51mc1wh4kjt/T7SQhStPL9DRMQ9o3qE/TX83f gKVpgghN9DzfQwEC6n/X8M2ozOxqSvfwstf2dwvZEFE4miwfgcxZop88a g==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354186" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354186" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:23 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185598" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:22 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 10/19] meter: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:50 +0000 Message-Id: <20220421190859.264174-11-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:51 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110034 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 7EA7BA0093; Thu, 21 Apr 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 79ADA42823; Thu, 21 Apr 2022 21:09:26 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 0C49242817 for ; Thu, 21 Apr 2022 21:09:24 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568165; x=1682104165; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WTgl1EyY+amkBzMNdbSAt5b/dLqIInId4yqyL2Q4c6Y=; b=aaNw8WhDHr33Ht9aGFnpB7lfAKNnBe5dDNYLGNW2ysCtqshWuojG4lKn paCZkQTlaxVPehua7OsAnnREoT6LwYAUBOhEFfSy388/1XE0wqlQN5H9t zGZg3dTqH7qKnZvoMgaqKNMhp633/FKnf63sqK3r9YA5UJ6Ag1sX8YNKC WT+na62KNzjLTilepOMXFTHqZyUNlqo7NvZYEbIumOY5ua7mLRWta8yhg RFP/T1JOK9CpSbvvHaKDDvuNC2c9zJfGQhESkFyxtc2x07cjYzK/CGHeY s5YJt9rn7RulS26hIaOypH1ANwOi19t3ruziUZPnfSvUh9sRF7+q7jhqL w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354191" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354191" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185615" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:23 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 11/19] net: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:51 +0000 Message-Id: <20220421190859.264174-12-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:52 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110035 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 9808AA0093; Thu, 21 Apr 2022 21:10:26 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4980942825; Thu, 21 Apr 2022 21:09:28 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id A4F5342825 for ; Thu, 21 Apr 2022 21:09:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568166; x=1682104166; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8whBorLyN5V1napSo357B4983HlGSJrhPhXDPTh+6k0=; b=Vwz/0A/DcZl0NI33uoPwoxHOsl2IA4FkGmUvzmFD7RUqAIhxftHC6Ul9 2HFG2z/lySEl/suGEc1CsTZc9HtrPoPeu7JCZ/oGfbDCGc8psh7peRsWm trwp6lZyhSVWWYVNx3RnASekvmFq2/b1311P+SPfQVs/9mFZbQ/wY8uIM Ns0izLsXpGi9lxw9nnVxbWzmiqw8d+KpzPwFsCP5WbR6h/IYlTCPgXna3 SYZvaWo7PdIokcjpBC5DUtrLFVZtlihqsk0JD5o6UTgyh7b23x38AF2SD GqTg4p0FGH9DJzGFR+Vfk5A0YkntElhMFMZ8ShF5eE172XDbq/hv2fdGb g==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354197" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354197" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185640" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:24 -0700 From: Sean Morrissey To: David Hunt Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 12/19] power: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:52 +0000 Message-Id: <20220421190859.264174-13-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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/power_pstate_cpufreq.c | 1 - lib/power/rte_power_empty_poll.h | 3 --- lib/power/rte_power_pmd_mgmt.c | 2 -- lib/power/rte_power_pmd_mgmt.h | 5 ----- 4 files changed, 11 deletions(-) diff --git a/lib/power/power_pstate_cpufreq.c b/lib/power/power_pstate_cpufreq.c index f4c36179ec..959eccffd8 100644 --- a/lib/power/power_pstate_cpufreq.c +++ b/lib/power/power_pstate_cpufreq.c @@ -8,7 +8,6 @@ #include #include #include -#include #include 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 39a2b4cd23..e6fab9639e 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" diff --git a/lib/power/rte_power_pmd_mgmt.h b/lib/power/rte_power_pmd_mgmt.h index 444e7b8a66..e83aec3484 100644 --- a/lib/power/rte_power_pmd_mgmt.h +++ b/lib/power/rte_power_pmd_mgmt.h @@ -11,13 +11,8 @@ */ #include -#include -#include -#include -#include #include -#include #ifdef __cplusplus extern "C" { From patchwork Thu Apr 21 19:08:53 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110036 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 C5620A0093; Thu, 21 Apr 2022 21:10:33 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 247EF42819; Thu, 21 Apr 2022 21:09:31 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id BFD5A42825 for ; Thu, 21 Apr 2022 21:09:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568168; x=1682104168; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3ToskZ8FxRMJavWygWEvvNX3XDFakE7XCMzKrmiTjB4=; b=nqkVuAM6Eedj7qKZ12DyQJhH+MrsBrufXFqtMQTElRYAQx3ScUUlOcHF rR6+8trz1fG8x9Mb8oyOid1z9BjliRuCjUlwX0YTL1xu6f9aBoT+kkykn vUSnIdYrU4zLEYgGBZgzNFBabLhEF3/6jQd6PvPgKf/46MwJwTv/dwXaU krVoNPteU/NYIS12J9Lo9i8yBfjNKahLmDA8NCL8qYxMVVctgf9gs6Y/2 axKbxatzH6K7lghWlbRgU10GL7FR4oDccc1a2BzwJzc0cN5bRJ+72xkpC r9qO8/G59ECEKwOo73Wh5tiKnrEq6jZbvxWKDLMKaWJfTwytUQPZbYzkD A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354200" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354200" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185673" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:26 -0700 From: Sean Morrissey To: Nipun Gupta , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 13/19] rawdev: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:53 +0000 Message-Id: <20220421190859.264174-14-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:54 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110037 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 7F8FFA0093; Thu, 21 Apr 2022 21:10:39 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 09E9D4280B; Thu, 21 Apr 2022 21:09:32 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id ECE9142819 for ; Thu, 21 Apr 2022 21:09:28 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568169; x=1682104169; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7hh/61MAy0v9DE69btyAR0qDn1I2enA1x3e+QBf1VaY=; b=XPHoEp+YDAumGmGTOCLpBfcdLhGaQEmgCLmc5M5t3uXTfgYNfjzbD9xy FzdUQ+xvbphUtyUJHc+Whivw+h6mVvhX6eCXwNuOfjXYQwq2HNkJNf5aS yDMfarMAe+dG+RAp/OwUcnuLFKfGbUdcJGR6J6xUhm0SkwVI43vjzPb3w mzbC4eJf0+ryQa//kLZuoNTm1HveQgOhoel8gIO0IcIK2rH/np4oinbBw U4EGFwIiul1MgoO7YvW/KiwV3zzVAOIjHRerrcHMZHvBKLZRPQMoApLqW abfhAi+mS2Znsqiv8jWBOS5hGOHIwDvWJs8eXJMNs0O0Qc3q4DGRtE6oE A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354207" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354207" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185685" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:27 -0700 From: Sean Morrissey To: Ori Kam Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 14/19] regexdev: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:54 +0000 Message-Id: <20220421190859.264174-15-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:55 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110038 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 ACBFDA0093; Thu, 21 Apr 2022 21:10:44 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D4BAD42810; Thu, 21 Apr 2022 21:09:32 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 558A642819 for ; Thu, 21 Apr 2022 21:09:30 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568170; x=1682104170; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=fSDawLP68Rq6He+d0oBwaB2pH5A0+Qi6rggWuwxTUb4=; b=T/ZFQk0Nvfln1xE3xAA/k6NMias7QhsxyzjqmKn3jRPLRmCbGD7xChSD pyVS0boStvn1ceY2wgDThEC4H3mLKC4QXoP8cFAljEnEKhYADDVkSQNVw sP1UWzLOBUnDVp5VGFTTfhqXiYUghF5VTDRPzPIS+u1tyyKkKKww1W7Yr Z3nyXSVKdQhsgzqXxOjXMuT7HHRlrWuXejvCtID9+bkn2lTczb212QAAT Dec3/Fcl1CMy1GW5O9fVlLfOLbM44ZRAU+NSqqDgPcyAZZNeIo2v1/5vT QxqKYZZ+meym14+p4jC1xHFJxpvXkVi8VxdJgLrjFe8ImiIjJaqrciqkW w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354216" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354216" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185692" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:28 -0700 From: Sean Morrissey To: Cristian Dumitrescu , Jasvinder Singh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 15/19] sched: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:55 +0000 Message-Id: <20220421190859.264174-16-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:56 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110039 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 9CC78A0093; Thu, 21 Apr 2022 21:10:49 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B541442835; Thu, 21 Apr 2022 21:09:33 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 765594280B for ; Thu, 21 Apr 2022 21:09:31 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568171; x=1682104171; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=hkMzgYmqjipZGVcL4cmHXHP+oUbStZizdmXNvpuZlj4=; b=nhMYkj49LSwp7nGxAI80QcIfiIqxHp8hqoQPbzzrTO8ygV9ybhtOH/pX m/bBrQgWipcph5XIOmZHOFUSLVsyBNwJ0hSPpxMnbG+PT6ZMOx20O0Q6W YEyRS7e4udGuatgRzO+YEYR4ru503Im932s1oq4AdM6mZ2e8xYoP0/Oy9 Hhf3GoTn81dbpLHLroP2oLTx5VWlR/4xTLnYdR5RkAiss6C+9N8vB58WN CF61ietBHFT1yXC6plI7hdaq0m03X55BGEBwEUY+PGXqpuTE/Y+aGZfF4 6yXzKAwRmY+dgxi7bTmhih87di3KRx7iMJy5YsQB5AMlF96y570pcNz0C A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354223" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354223" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185699" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:30 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 16/19] stack: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:56 +0000 Message-Id: <20220421190859.264174-17-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 Thu Apr 21 19:08:57 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110040 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 9840DA0093; Thu, 21 Apr 2022 21:10:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A08DB42839; Thu, 21 Apr 2022 21:09:34 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id BBA114282F for ; Thu, 21 Apr 2022 21:09:32 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568172; x=1682104172; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=K2UafzcfmmrepT4zpsqsK4NMN0Gs2DdXm0Wff96NMqQ=; b=au+rsYqy4G2jItm3YK4eGKIGseXZaQTtWz+h8zBteC33WyUW/Urtu4t+ Fkp+N4BCk0wQkpkIR26t0qiLBCJy6FG3LxMh7JosODBLq0u7VDRESEh/x t+Cld7NPAeQXVJr41s9CPS6HXBCSNXlwhdzTSdKFQ8J3ONdvH5gRH7Jzc 0KamRmBIHx//EqCyo8V2wJx8eskkWsAzD9BO2eu85BAH25Clqyka8sJ62 PCUjqB66VAsQC4B30LSJxijtXkPprBaq+6WC0ev9WozyDGDp/nOorqfNp IVbFzM2m6763epbZnMh386sEFq92089dZymrxPNsexKJoa7VwkxK8yxrn w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354230" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354230" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185707" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:31 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 17/19] table: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:57 +0000 Message-Id: <20220421190859.264174-18-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 15576c2aa3..f9d4d7faac 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 Thu Apr 21 19:08:58 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110041 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 B5F4EA0093; Thu, 21 Apr 2022 21:10:59 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8DFFB42817; Thu, 21 Apr 2022 21:09:37 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 0A3A742837 for ; Thu, 21 Apr 2022 21:09:33 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568174; x=1682104174; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=zitXXAt6bD7dtxYTf5sbfm3ibilX8fpzHya+C3uWE6o=; b=VWFZpX5HzVSNSxGhqE79ev1O1XIxmtSMivNxqLlWZY/YVxmeIdMIIwQj eUKSDuJK2wDHpVEK/wKHoup2SqpX7P/4AlxGOv842d/IU6AzRxlJn21vb blUj45gGlPlRq8RC1ir11/csx/OsjThRSBm3KrN9fYBcybNMjZj6w2VPm PrrXjFkQ9W3Gw31ZGsZLTsn3JY2rs26w5Lws7o58RnmhCnJcYcRQ6Cw4R zUs/ka9NZia9KMI9NSif3FdcrPPVdPtwVFZrVnE4FpfTs2vTDEajsoMiG jzLGoLqY0hhKxdc1Yo8WW40yB+ai/7GTomDyBTCuFEiZMbGn9gefnbiW6 w==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354235" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354235" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185718" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:32 -0700 From: Sean Morrissey To: Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 18/19] timer: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:58 +0000 Message-Id: <20220421190859.264174-19-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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 | 3 --- lib/timer/rte_timer.h | 2 -- 2 files changed, 5 deletions(-) diff --git a/lib/timer/rte_timer.c b/lib/timer/rte_timer.c index c51a393e5c..f52ccc33ed 100644 --- a/lib/timer/rte_timer.c +++ b/lib/timer/rte_timer.c @@ -5,12 +5,9 @@ #include #include #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 Thu Apr 21 19:08:59 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 110042 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 94AA1A0093; Thu, 21 Apr 2022 21:11:04 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 73C5642841; Thu, 21 Apr 2022 21:09:38 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 5FC484283C for ; Thu, 21 Apr 2022 21:09:35 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1650568175; x=1682104175; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=1kADCV23Dkt+lSlltNY+uSqYNvoVA4pxY87nFICDkUc=; b=hfTw5K2CrS/4pVV+VEgBxt0bBVIZmCf6hHM+tAS9L3ehb4atgPUD2iTX 1lzOaS8VeBG1jx1l/rsvnJYry1dUkcJuRuVmA2p6HDzojvr+/R6hO+O3j 42EwsnXvPhNoI4jfk3mCeeLSpZrfVMCtZ6UQnzXN7B86BckH75mlQ2xQH EHW15jvdn5WIkraMmqqQBD74bC/miOyH6courzsdAckJj5G+adT33UruH W/7xD2ozScOU7nihAzAvHEMIH9X9Xe3XPfEr08rkW4cClvT01QDyYIaSG ivyxeUwbi1jd8i1mm9G+G0u7OjFs0til1N1IJD0Fob4TQGbJCvH4Ac1kZ A==; X-IronPort-AV: E=McAfee;i="6400,9594,10324"; a="246354238" X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="246354238" Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 21 Apr 2022 12:09:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.90,279,1643702400"; d="scan'208";a="671185729" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by orsmga004.jf.intel.com with ESMTP; 21 Apr 2022 12:09:34 -0700 From: Sean Morrissey To: Maxime Coquelin , Chenbo Xia Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v1 19/19] vhost: remove unneeded header includes Date: Thu, 21 Apr 2022 19:08:59 +0000 Message-Id: <20220421190859.264174-20-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220421190859.264174-1-sean.morrissey@intel.com> References: <20220421190859.264174-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/vhost/vhost.h | 3 --- lib/vhost/vhost_user.h | 1 - 2 files changed, 4 deletions(-) diff --git a/lib/vhost/vhost.h b/lib/vhost/vhost.h index a9edc271aa..711bb8cd83 100644 --- a/lib/vhost/vhost.h +++ b/lib/vhost/vhost.h @@ -7,12 +7,9 @@ #include #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 c946cc2ef4..8d216c380f 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"