From patchwork Thu Jun 16 15:17:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112904 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 D308EA00C2; Thu, 16 Jun 2022 17:17:53 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C23064281B; Thu, 16 Jun 2022 17:17:48 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 507C540141 for ; Thu, 16 Jun 2022 17:17:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392666; x=1686928666; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kTgQJ7KodACv8jdYac0oUzXtBLxVmn8ZMKkaYVOcSvk=; b=AMBQOj6QolkPIC8cOp1BnBUsMu73kkEVZ6Krcw1tSDqx/+LqXTwnJr3Y Cy3yNfcRRUPI3cNW4E3LV21xODlHNUVhBtTdJaXp0dZHeTZkygwhxbSfn Kz/Gwo5eFBCDpBzzNp8Uma5hWCviXCmsEIUdXgqAMdmSPZob+xlsp2DKj RLEmDxjPwLpdd8snsAs1txiVr58/Be3eXrUw6PaLF7Z/fkyOj1r6bmRbG fJ9Zz8WGeW06a5Y4QsZfDnNbDuHkGMwS/9kMqeI5A62SHnu931fT+Qcuc mCt/cx0uf5LntfhwzKTkoXmodtJpdZhzGomSYhSfadafZSRM5AGKqn+qW w==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624851" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624851" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066269" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:43 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 01/19] cmdline: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:09 +0000 Message-Id: <20220616151728.339629-2-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Thu Jun 16 15:17:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112905 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 15EBEA00C2; Thu, 16 Jun 2022 17:18:01 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BEBFB42823; Thu, 16 Jun 2022 17:17:49 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 70CC54014F for ; Thu, 16 Jun 2022 17:17:46 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392666; x=1686928666; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=R6KZp/Vm7KE5WqeuqRDa6k60xAo2U9qcvhhn38lH7tQ=; b=fz2Q0gQXBxjw1QHD+YcsczuLZT/Pp/3qPYR3sMwouq6d/ITiCNtHIFD6 eI7xNKzDIZRHySDL5zV27dpyJ07xpuZtKMU9wTObV2Cr80d+803NPyFMU F/ZGp3OSCBOOCt1TN6BL44vjsKcao0OJh9/R0cQ4GDimFDU01STh/rttF J8w4Y/1ggIJebnptSCgMivucqZGuw2u1X6VFe2C3VYhQy/JgUK3vQ2JWf tjoUglipJRHm4yIZ/jJXwWObaO9gNLONFvDObNToharmxvetyDEG6jxVw Udg18uzobCQoGEaTVPFr2gC8LX+CW5/V0/4BK+9CsQKtJLC8Tn6F0jtr+ Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624854" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624854" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066276" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:44 -0700 From: Sean Morrissey To: Anatoly Burakov Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 02/19] eal: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:10 +0000 Message-Id: <20220616151728.339629-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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.c | 1 - lib/eal/linux/eal_thread.c | 6 ------ lib/eal/linux/eal_vfio.c | 1 - lib/eal/unix/eal_filesystem.c | 2 -- 7 files changed, 13 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.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 Jun 16 15:17:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112906 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 143F2A00C2; Thu, 16 Jun 2022 17:18:08 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DB82842836; Thu, 16 Jun 2022 17:17:50 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 1A618410D3 for ; Thu, 16 Jun 2022 17:17:47 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392668; x=1686928668; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=leWblTsfwNNoeq23LutzRRsf6Ww70o4k/MMXpF9Bxls=; b=LqFUql1U52YNiLR3WuLFPuPPYTGeYRcUdKWIQajwvYLzQd+9L4kexrPo ob55EfFRxk60eerAt5LbRlCa/cLYDOCljspuTj3yppncC+VonyDNRpdB3 1zKXZmvDNH8xkTHGeLk0aK3qU3jfFaEiuTTUz/qmpp8FSIBo2/YXLh2j8 qv9sLa7g+rAFMrzzwME/yzUL5aea6e6yszhD9/PeHzlcQ3sACUeIP8kCQ swPtc6B1/6cRfhKwe3GRxIYrbZzthucka84Zxi8VDf0QULrU9TDqtBChf yRgmSku5EVtleO5WRXiTJ6BEodSfqCrD6UrFh5f6s8bUEM+BsFwC6aVOn g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624863" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624863" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066295" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:45 -0700 From: Sean Morrissey To: Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Ori Kam , Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 03/19] ethdev: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:11 +0000 Message-Id: <20220616151728.339629-4-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Thu Jun 16 15:17:12 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112907 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 47919A00C2; Thu, 16 Jun 2022 17:18:15 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D9FD942B6D; Thu, 16 Jun 2022 17:17:51 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id B68EF41614 for ; Thu, 16 Jun 2022 17:17:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392668; x=1686928668; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=TaCtUrax3nNIr14Q5Rkrp0fZbPp8DaFRggKJgLKP6VA=; b=DnxE0aBXp5wnh6psJ5lzKKfo5OEognATSEIuieCTsld6By46HmfGdexJ +bPS4UVE+9fsAAFfkWqb1JLOADnhaHBeL8tzdxupBn3beP8sk0lCV5QAY 17vCWuXg3P5SrxktUEDjuIZvNlYNz3dFYlHb9kgyVKB/ZwXs+DpZCSuMN HqF1jNYBH7It3k9pWQobspCxNp/598a3cA0ELp3ZjpI3uwzmx3KjY5yN1 yguNOBgEK07xWRmhsz0Ebwmx4xKCGwCCkjFKUScDfEEzeHuXaH5tB6cc+ POyTngxbQ2YQnsnBaOv5f7Y4JIv1qfBp9CLqX/Afhjvl1+ANw3L8++i3f w==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624869" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624869" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:48 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066303" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:47 -0700 From: Sean Morrissey To: Elena Agostini Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 04/19] gpudev: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:12 +0000 Message-Id: <20220616151728.339629-5-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17:13 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112908 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 8DF02A00C2; Thu, 16 Jun 2022 17:18:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EFE6342B71; Thu, 16 Jun 2022 17:17:53 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 260104282C for ; Thu, 16 Jun 2022 17:17: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=1655392670; x=1686928670; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=kPHIhD0BVPpcsUGuCO87uCxLPMgDVvYWe9pBSZVYlH0=; b=VnKfNB9b+nIE98i+ALyRcxQJpQz534CPeTGMUEx5zCw6SkcNy4KZf8Ho fFSqlkbF6aRRpP7WQxwJYgEoeAUgYoGA4eeWF9J0nyZlnJtqgBaeibuEU glWpSUXR7utQax0hNAVWx/yA7P0Ljw6jV7owX0FyqIYUUTuSzlJ9LgOC4 AycHqZf94DRzUln2s4mO3Bp+MyYEo1s6QgONBPiN/4dIgPeIbm+4VfQHv bEOGec5duOLyUtfD9j7bYMMLwVzU+ScrRkLNF0lpfBpbN8LeENdgQYNqk FOmSekW3ZB3PbvCkF1omZg+Enym0Yxgixzju+vJ2Pmnzm2AMBjXZ30lTH w==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624874" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624874" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:49 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066318" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:48 -0700 From: Sean Morrissey To: Jiayu Hu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 05/19] gso: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:13 +0000 Message-Id: <20220616151728.339629-6-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17:14 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112909 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 64C5FA00C2; Thu, 16 Jun 2022 17:18:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0ADB842B75; Thu, 16 Jun 2022 17:17:55 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id CCA9642B6C for ; Thu, 16 Jun 2022 17:17: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=1655392672; x=1686928672; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mYmuQKjdU1BZDJ8osvjSyc4q7TGRxfvjnx5gc/surF0=; b=jBpJ4K0qqx4HNUwfHDRqzKBLG3kxUtgdCXAZUOhfwpMKARV7xIHlr7rH frV1n+8kWjz/qhxPvQiP43rByBQl6Apv/cvhVubiYqkGnVLEaUNnC8+EP S5eVQ7C0+vMYxiI0UbFPjDQcB+AcnW+OXIDVMSz6GJPg65NiRYD52WQdO Buo+qr2NguQ1e5nasANE9RDd0rlQTk1N+yrK/HX7rrqNoiED9sAZEWun4 MmIwJAVNYKq3SAge5I0NAeQ5mEzWQFxJLwwpqxxm971G15N2egPb6mTPf 1eZbTPbDNo2IRj+kwbwJ3U3Jm7wBOMyllpa/mjBCp5lhFChx5++v15D7B Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624883" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624883" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:51 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066335" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:50 -0700 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 06/19] hash: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:14 +0000 Message-Id: <20220616151728.339629-7-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112910 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 5E843A00C2; Thu, 16 Jun 2022 17:18:35 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 180F042B7B; Thu, 16 Jun 2022 17:17:56 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id C627642B6C for ; Thu, 16 Jun 2022 17:17:52 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392673; x=1686928673; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=IkE9LIpgin214dy5shhnlKL7bqJK12tXFJd5P2J8QNo=; b=K4rSsTN3DPsiqCUXiT4lCKWiOvYYdKU6Qxs5U2y5tWh3jQL4xcjB+pEF YR6EVyyt4rnItePIEQ2f4NTd208crlrMjFRBv1QRRrQtRIG4eavn4qewW 1ZE2uv6wsXcG0DElBsguleK7k4AonPpAxguzqPsx+ENMIkkcW6tHk/NkY p/l1WG/ubXEIkZuaKx+rOTksCxIcHQHlLxh0oybJ1cVFIeiGxMKdLs8jX i5qC+7c1cHV+pWvO+lCjpwepfQbK8wdxXCbT/erP/q11K7repuy3flutR tWmnQHkyrM46eWkKCyu4DoRJFwWmD7Y6aNfA3cGnixeZ4Fkm0wYoh/KrO g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624891" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624891" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066350" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:51 -0700 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 07/19] ip_frag: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:15 +0000 Message-Id: <20220616151728.339629-8-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112911 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 194F5A00C2; Thu, 16 Jun 2022 17:18:44 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 89E6142B89; Thu, 16 Jun 2022 17:17:57 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id BFEC34282C for ; Thu, 16 Jun 2022 17:17:53 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392674; x=1686928674; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=r9U45GWM7bkAHxpHgFd7Ab8vl0AcJT61kuM2S6pn3IU=; b=ZBQUJj0qzSXNtdGmNABzkJcJii6WYmUB2fUOmRbqrtXpYOuSbmBWtWpu MtJGlYt2ZxgEHz4R1EVKw2mT31Q+XyGI4150DIuf1sJldm5uDPItv4Wot 2+CGef7c0wslDl6L2UTkLU08dD2FIou9K2ZYtgYwNzUXHxs7xcYd51wTi pnlF2m3KgTyOY1eB1aTOZLuzcBNbUnyhAwRBIMFjHokFBtceH2LD3AKH5 Zg6Xv0hx4n01t6ip+bZP60HTiXBX1dnbx08SwcgYHepeWoAPkWWPjl3Q+ IKX9Yz7Qc1yyOk324GITdHrwJKXD1Dplt4eGTOYg3kTJ0jTjs4d/WrnAL A==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624902" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624902" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066360" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:52 -0700 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 08/19] jobstats: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:16 +0000 Message-Id: <20220616151728.339629-9-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 112912 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 201DCA00C2; Thu, 16 Jun 2022 17:18:51 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A419842B81; Thu, 16 Jun 2022 17:17:59 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 5DB5D42B77 for ; Thu, 16 Jun 2022 17:17: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=1655392675; x=1686928675; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=rzsvy3jeRVGFyl3974yAmRv3UMBb+TyaNVF3usLJanE=; b=H6Rj7qZUuXSsUf2FB+QUb/JF2dtwb+70oL/RVcQ89GOMaL/AvtQ8TTb6 1upuL+g5+JNrjqhVz09vjtKKyCvmVh3Cf66QRn+1tFE7jW8HyfqpOnzG6 QMBNC2WjjMpSLb1w4GLGEZ4KV5618IH3lPyz3c8jrvaHFAirs0+oivLib pPB+w8trII08La5RmAvxXabZNKk9o267Uo5Y3ibok8lBS1T1d4jUX7KE6 We4gL/9Jp0UxaJIyLtQ9u0QEsxc33rl6EZEPhbxxD38NgtI9CoWgGtXfE czfwei07uvbHo7b45ZLFTLRB5K4uTLEE0htGTnP5LGeIkvJEeghwOocxH w==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624905" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624905" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066367" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:53 -0700 From: Sean Morrissey To: Olivier Matz , Andrew Rybchenko Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 09/19] mempool: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:17 +0000 Message-Id: <20220616151728.339629-10-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17: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: 112913 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 62058A00C2; Thu, 16 Jun 2022 17:18:58 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CF55842B83; Thu, 16 Jun 2022 17:18:00 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 5B8B142B7D for ; Thu, 16 Jun 2022 17:17: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=1655392676; x=1686928676; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9/5+G7oNATtDxFHMbw7sKoAyM1airB5TPL7G+GLPHts=; b=ldENzNGyCdbZTPnFRHJfx0M4jPDTCFTva89fwhXyCsXRhPiWUDa2xUWs zVVu02f0RCRltTHvPmbu0Y8bE+UmCJrIwoBf41P2tY575CUwS1HffLEOn +1Wwlbnht9TzVHFmexeZ2qI7LH72INpOktlcvrdKCEtfSHLpOQVOGJZUp 58onFyavJIiCUVt/T9pIsdob7eK1IFd7Xa3yZVLLhbgf9/2ik2tzk6mxq vhIInvlyfs57ozS5PCsADxZgLHy6G/T2c3PffcOd9ZVXNbKcoBpxo2g/d MTqXIjp2cv4K50tBNwOf/NpsTulgPsED98/S1hEuSWUrzua3iOCOrQlai g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624909" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624909" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066372" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:55 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 10/19] meter: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:18 +0000 Message-Id: <20220616151728.339629-11-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17: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: 112914 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 E6B17A00C2; Thu, 16 Jun 2022 17:19:05 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D3BF442B90; Thu, 16 Jun 2022 17:18:01 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 6694E42B86 for ; Thu, 16 Jun 2022 17:17: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=1655392677; x=1686928677; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WTgl1EyY+amkBzMNdbSAt5b/dLqIInId4yqyL2Q4c6Y=; b=c7EDwQu8YH0+NoWRFh+KJYHsAzuGzEXmh3eUcMR2idhJk8jsyKpQ+cLC L74kneSCTf07pLThdGHPJyTEfpqqVX6PC4nzISWBwM0fHeUtuVp7B4vOZ m3IVHfTpFk0yIqWb46jBzLfoLWrP7yGufP4AQ8f3h8Mdm8s/REKA98s3J OzcEPYgkTBhUVA4BATAPDcprb0tLQIYNAiR5epQjGajeFPSzdp15SscCo bDvhXagCWUPEXk/AcXcOmEe282hQ22pdK+1+s8iY1OjBIBnCyixzJVdns 8D8/088f+0sod9q37fxmq2nKQrDDBLk30A0JL66BTTYZE6QI4gW35c8aC g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624913" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624913" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066376" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:56 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 11/19] net: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:19 +0000 Message-Id: <20220616151728.339629-12-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17: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: 112915 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 B88A4A00C2; Thu, 16 Jun 2022 17:19:13 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DE76F42B9B; Thu, 16 Jun 2022 17:18:02 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id A448342B8B for ; Thu, 16 Jun 2022 17:17:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392678; x=1686928678; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ktKCjMHu0mmMBRte7KkrjOTP+ttTMprOwoKo+qQFB+4=; b=XptfrkkfLWE4eV+cv2JeFdJVCWmnE00PaWHzk9/sLfxNvJLuLK+FxRmV G/ztEgX0YJnhUeQLnR5QX9yYev+P0SmMH1CsNA95H7TUht6/gV7j+DQbg XtlXr+qosKB+X2Ev/6ScRKHAXZyKbFD03OAmUKb05IsrLf4tarNSl3bUJ GskijN4R7dWxnXLN3z2LqInCWDDkwvonlld/EoI/vQ7mSzvcEhS9noMZh zSoVLleE1plyAxtfQ6AIVPor0emCMYu56dLBECHejKRgFUR87K1L8oks2 Kf5XSCZP4HFgitdAXBqegoGveECpmonqv2U4HakKLyVtVNkhdnQ6lRHHF g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624920" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624920" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:58 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066380" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:57 -0700 From: Sean Morrissey To: David Hunt Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 12/19] power: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:20 +0000 Message-Id: <20220616151728.339629-13-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 78c9197695..fc258157a8 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 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..c5a420861c 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 Jun 16 15:17: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: 112916 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 264EEA00C2; Thu, 16 Jun 2022 17:19:22 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E4EC342B95; Thu, 16 Jun 2022 17:18:03 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id E5E7C42B8B for ; Thu, 16 Jun 2022 17:17: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=1655392680; x=1686928680; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3ToskZ8FxRMJavWygWEvvNX3XDFakE7XCMzKrmiTjB4=; b=fuf++HELkQ+vFVLIP/IxCI7BjXuSJFSRdiDARt6kjdYnExaTLpQQI/AI ddlhvw6eawDWKRmEOlBG7m7tdEUaLn8JcJM35G/ZFCt91uVfspTDBHG85 6NTVtK5Cbh3LMVXd1WmMmPtBD8w954Yi9I+LeHLP/la7bu6KtrWKxsgQl cF1r2xtmtz9vW3yDKV4ZCVcEG1NE8/Q+fQ8RAz3CI+Sic5WpfKfbF6VZu SB3RkgV43HztgE8Ct3f+gzX+qYJjK44lwPDR9wLvKTQWVJGar3cOIg+Gk k8+4U1cPl1bTHReRNGsZKmR4OOJYMQ1gYf7efy1jQXAYqohQjB6mXnQME g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624925" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624925" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:17:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066385" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:58 -0700 From: Sean Morrissey To: Sachin Saxena , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 13/19] rawdev: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:21 +0000 Message-Id: <20220616151728.339629-14-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17: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: 112917 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 4CE62A00C2; Thu, 16 Jun 2022 17:19:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 219F842BA3; Thu, 16 Jun 2022 17:18:05 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 0816342B8D for ; Thu, 16 Jun 2022 17:18:00 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392681; x=1686928681; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7hh/61MAy0v9DE69btyAR0qDn1I2enA1x3e+QBf1VaY=; b=RO59XkNVC9g0ySywtbSELSiWgLzX879b5Iq2lt0op3NmVzPfT+qRQnE/ Fq5pAvI/fwqQcqwz9fCwJKr+doKuztVu7ifUXxsqc6wyvGJBtZ9Teqm+y /2cRSHswVtpZa+7UvskcgiTiNVNR7fve+mhyeXGJGkcgd4gq9PJ3arra2 Cx9Cuetj0S/1UZB6v/v7ayRgt6gY1sfJxe+KX8FeAC01FikwSdvt0V9fM 4hzzx6OBRCIQEOR8NJgbjmZvbmGwtWAYgE2/0P5Tq+YfASsndSNVNYDR5 P12R1fSKmozfDV3ln7/QwpaAYAJKQnS1RTXO+vRDY7iVFdjwlf7mHR8pj g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624929" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624929" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:18:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066390" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:17:59 -0700 From: Sean Morrissey To: Ori Kam Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 14/19] regexdev: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:22 +0000 Message-Id: <20220616151728.339629-15-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17: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: 112918 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 305BCA00C2; Thu, 16 Jun 2022 17:19:36 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3F41842BA8; Thu, 16 Jun 2022 17:18:06 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 5446942B93 for ; Thu, 16 Jun 2022 17:18: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=1655392682; x=1686928682; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=fSDawLP68Rq6He+d0oBwaB2pH5A0+Qi6rggWuwxTUb4=; b=Bq+duQZUqAJd4wrY8GXWC+eaCdgAWyfeu9xKo5nHN2QlWLmJpKKhbZMb EfOd9D4eMeYSAc0GvC66ALb/LYTQVs9kOqykcNXzTHOlDVI0SKs+Ez8Wg foo+zTepyL8niVD7wjMVROCDYK87v32AFio8Tg/AHyZ4R/4CJX1e4yzCc h5IN6U6GRMo2lR8xLIC7WeJ7gMGwULPNbVzkBVWvcsXQaab1uK5RGgTVN /Gs3ySHTZRUc9usaaajE+C8S1zEt+bw/F9961KYOEqQmtMg3fYFcOACCZ IPDPP0JikiBor3HNSt7+Br83mm/C0Xiwy+pe3n2ngjgrqg/7bal7B6tku g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624937" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624937" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:18:02 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066400" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:18:00 -0700 From: Sean Morrissey To: Cristian Dumitrescu , Jasvinder Singh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 15/19] sched: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:23 +0000 Message-Id: <20220616151728.339629-16-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17: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: 112919 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 63DD1A00C2; Thu, 16 Jun 2022 17:19:44 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2F47942BB3; Thu, 16 Jun 2022 17:18:07 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 4DE1742B9D for ; Thu, 16 Jun 2022 17:18: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=1655392683; x=1686928683; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=hkMzgYmqjipZGVcL4cmHXHP+oUbStZizdmXNvpuZlj4=; b=aeu/aSxYiJYieO0KLGzYAkUCxBsfx38dtxmw/Co+M+1GgasnaccZJIIf X6yT4+3aEiLdfDRG3+aYHADbPnZ/QO9J/VSK68VSLwr1ZrZZudYkhkPJd khqW2vTLYJmNF5Re63xTA0rpRF69+G0wdrVELrzZadEqljqKNMORRb1kQ LDp4aGocqkfVTvtqYWa06VSqpc1NoeT97S3kGSDB8knv4KJp6QODPmQ9Z GHSN4MZTE8ds/1/zC3la5RGTCHEAt1nzxFP44wDWQvQrgRNLy9qKzCQh7 X5EcWGzb5RDJquDsnVMCOARE7rcmqd4YezwTRqoLOL92J0Nd2UiE2KDSx g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624938" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624938" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:18:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066411" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:18:02 -0700 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 16/19] stack: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:24 +0000 Message-Id: <20220616151728.339629-17-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Jun 16 15:17: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: 112920 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 6619CA00C2; Thu, 16 Jun 2022 17:19:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 978DB42BC1; Thu, 16 Jun 2022 17:18:08 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 5F02542B96 for ; Thu, 16 Jun 2022 17:18:04 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1655392684; x=1686928684; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=dphqw/zVs0VouPqL5TvjR548keSoskcd03r8z0We/FE=; b=hXM/2ZcKCnlE8f3aQvgfvqlDyzORVCc+d69ylRd9WaDOqw5R8ToEYYLN s48EJ9icxMYSDSPK5di35/3u+ChrFN8WYoUbCPf5ycUxY4y5+RoW9WqI2 zeugmelFeyAJynN1srotyQ/qfWXrTnpeN48LKbiS+leBr5y2YJvgI2l5P Dz3xot2XrRTwv1y34uMAIGt1RsIPZAqDj0PEfMPc4EHcactV8nX5214bu WwmhXj1K7e6FjoeXteKxlk5UpbCc+t3TBwE0sjtcuf9Q8ruxk2mm+Q0R/ wgJMRcgb0FNgimcbGXBkVWilFIzULgv02q0NZtIlMOJvs5uYL80rAvRoW g==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624945" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624945" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:18:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066420" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:18:03 -0700 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 17/19] table: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:25 +0000 Message-Id: <20220616151728.339629-18-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Thu Jun 16 15:17: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: 112921 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 7E8F6A00C2; Thu, 16 Jun 2022 17:20:02 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9404642BC3; Thu, 16 Jun 2022 17:18:09 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 7441542BA5 for ; Thu, 16 Jun 2022 17:18: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=1655392685; x=1686928685; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=9e7/TuqsoH1jzNbL9uz/iLQK9cUX8JTPBZTAmpmLJr4=; b=EbRSVK25/hXA+tHaBNdeml4rout1D2c2BoqLuq9OkzcnHJf8oAYqb57K oKzH2EG6RQq3dAG55JFWCYx5kXrq4BSsQv3t0bNOLpS4eeOvIaDPcGRQ8 PEjJnci3TU6zr+QAXTn+iuDN9BWGonlZWRdYRO4QdhBHAe1d/Hb3ekDWO bKg/mUht3cz+/vpcRJsWCDEo2Ge8czgt5t+nZqzRQd600rQTYuxS6h3o1 ITusnORPqmX3qowHowem7bmyWHdC2g/ApH6mLNjGJUs8D53PsHjNEoGTz N283lNjdEniFsQ4AXCtIExSk/rogrcxrqyVwDl9RZFm8LNQ1/qZJA44rK A==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624949" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624949" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:18:05 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066433" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:18:04 -0700 From: Sean Morrissey To: Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 18/19] timer: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:26 +0000 Message-Id: <20220616151728.339629-19-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 Thu Jun 16 15:17: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: 112922 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 6CF6EA00C2; Thu, 16 Jun 2022 17:20:11 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AF67A42BBB; Thu, 16 Jun 2022 17:18:10 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id B06AD42BAD for ; Thu, 16 Jun 2022 17:18: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=1655392686; x=1686928686; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vqcgATHPwv+QC4I0wnByj2NVeDzF0QJZgJDGIPsvjjk=; b=ZlbDZwMWbMGw+brJlj0rhzdmDQeTu83/6f4stgANPexl3N1wonFAermB yzxKp56rb7PkhBn4VdUVfqX6aOddWpUjQQyUe16TiQNWLZVfo77njYBjq IKNl+CnPyBSmNs+qDym+ZDF1vhYTg0+eBaKuRUgLukxPmUWeXTHQCahFW iaar1vlIaTFIRV+gMHQKEifWY4gUHPdAoBRlsyEMkkanoAfZpNroRLpam ZpT/4zeINYRdEYxqaSxcWDjA2R6nhVGaDjqMZNZmrx3b8q1ztoHVVUhzt 2ek0QTgcGI4JWzaykg0/wwchO7ZQmOs1Q9Yqh23fsH+gCDaW9b4iv28Hb Q==; X-IronPort-AV: E=McAfee;i="6400,9594,10379"; a="365624959" X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="365624959" Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Jun 2022 08:18:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.92,305,1650956400"; d="scan'208";a="675066442" Received: from silpixa00401215.ir.intel.com ([10.55.128.100]) by FMSMGA003.fm.intel.com with ESMTP; 16 Jun 2022 08:18:05 -0700 From: Sean Morrissey To: Maxime Coquelin , Chenbo Xia Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v2 19/19] vhost: remove unneeded header includes Date: Thu, 16 Jun 2022 15:17:27 +0000 Message-Id: <20220616151728.339629-20-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220616151728.339629-1-sean.morrissey@intel.com> References: <20220421190859.264174-1-sean.morrissey@intel.com> <20220616151728.339629-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 | 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"