From patchwork Fri Jan 14 16:23: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: 105817 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 C8B9EA00C3; Fri, 14 Jan 2022 17:27:07 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9801442780; Fri, 14 Jan 2022 17:26:58 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id E127341163 for ; Fri, 14 Jan 2022 17:26:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177616; x=1673713616; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=LBav9WjVXoaC8qdhePzJwt4fEHVKUj6RGWv6FDYI/8s=; b=cKAXxIzQmwGJI1ssFD+m/W8Egb5pksguwMlwTb5d0wWsRSROANIZmz0U Pf8G/YxDyVoTsTewLuXDCh0YRpM9pHrvjfzQajapRe9vRY10wvk2EyD4n +r8jcxTxbczWKK1/BIrWTdOh53vxQCceZYvgVWnXekUGFS2aLTsuUr/47 hvKFlm1rdSXoz9OQFeFeIibLlr61jnGf5PSZw/XanXannfSsZQ+z0dLRS UymdkGoHgqYwzYBtX5F+O8cKcski0eBCr22XSgukDQ/cNvudOaqLN16qW fwQETp27MMzzXYXiba1BBuuEnOfIvO6ozP1fSCtkkZyHIWVwCaXfR648P Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642522" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642522" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:26:53 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523366" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:26:52 -0800 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey , Conor Fogarty , Bruce Richardson Subject: [PATCH v4 01/53] devtools: script to remove unused headers includes Date: Fri, 14 Jan 2022 16:23:17 +0000 Message-Id: <20220114162409.334437-2-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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 This script can be used for removing headers flagged for removal by the include-what-you-use (IWYU) tool. The script has the ability to remove headers from specified sub-directories or dpdk as a whole and tests the build after each removal by calling meson compile. example usages: Remove headers flagged by iwyu_tool output file $ ./devtools/process_iwyu.py iwyu.out -b build Remove headers flagged by iwyu_tool output file from sub-directory $ ./devtools/process_iwyu.py iwyu.out -b build -d lib/kvargs Remove headers directly piped from the iwyu_tool $ iwyu_tool -p build | ./devtools/process_iwyu.py - -b build Signed-off-by: Sean Morrissey Signed-off-by: Conor Fogarty Reviewed-by: Bruce Richardson --- devtools/process_iwyu.py | 109 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100755 devtools/process_iwyu.py diff --git a/devtools/process_iwyu.py b/devtools/process_iwyu.py new file mode 100755 index 0000000000..50f3d4c5c7 --- /dev/null +++ b/devtools/process_iwyu.py @@ -0,0 +1,109 @@ +#!/usr/bin/env python3 +# SPDX-License-Identifier: BSD-3-Clause +# Copyright(c) 2021 Intel Corporation +# + +import argparse +import fileinput +import sys +from os.path import abspath, relpath, join +from pathlib import Path +from mesonbuild import mesonmain + + +def args_parse(): + "parse arguments and return the argument object back to main" + parser = argparse.ArgumentParser(description="This script can be used to remove includes which are not in use\n") + parser.add_argument('-b', '--build_dir', type=str, default='build', + help="The path to the build directory in which the IWYU tool was used in.") + parser.add_argument('-d', '--sub_dir', type=str, default='', + help="The sub-directory to remove headers from.") + parser.add_argument('file', type=Path, + help="The path to the IWYU log file or output from stdin.") + + return parser.parse_args() + + +def run_meson(args): + "Runs a meson command logging output to process.log" + with open('process_iwyu.log', 'a') as sys.stdout: + ret = mesonmain.run(args, abspath('meson')) + sys.stdout = sys.__stdout__ + return ret + + +def remove_includes(filepath, include, build_dir): + "Attempts to remove include, if it fails then revert to original state" + with open(filepath) as f: + lines = f.readlines() # Read lines when file is opened + + with open(filepath, 'w') as f: + for ln in lines: # Removes the include passed in + if not ln.startswith(include): + f.write(ln) + + # run test build -> call meson on the build folder, meson compile -C build + ret = run_meson(['compile', '-C', build_dir]) + if (ret == 0): # Include is not needed -> build is successful + print('SUCCESS') + else: + # failed, catch the error + # return file to original state + with open(filepath, 'w') as f: + f.writelines(lines) + print('FAILED') + + +def get_build_config(builddir, condition): + "returns contents of rte_build_config.h" + with open(join(builddir, 'rte_build_config.h')) as f: + return [ln for ln in f.readlines() if condition(ln)] + + +def uses_libbsd(builddir): + "return whether the build uses libbsd or not" + return bool(get_build_config(builddir, lambda ln: 'RTE_USE_LIBBSD' in ln)) + + +def process(args): + "process the iwyu output on a set of files" + filepath = None + build_dir = abspath(args.build_dir) + directory = args.sub_dir + + print("Warning: The results of this script may include false positives which are required for different systems", + file=sys.stderr) + + keep_str_fns = uses_libbsd(build_dir) # check for libbsd + if keep_str_fns: + print("Warning: libbsd is present, build will fail to detect incorrect removal of rte_string_fns.h", + file=sys.stderr) + # turn on werror + run_meson(['configure', build_dir, '-Dwerror=true']) + # Use stdin if no iwyu_tool out file given + for line in fileinput.input(args.file): + if 'should remove' in line: + # If the file path in the iwyu_tool output is an absolute path it + # means the file is outside of the dpdk directory, therefore ignore it. + # Also check to see if the file is within the specified sub directory. + filename = line.split()[0] + if (filename != abspath(filename) and + directory in filename): + filepath = relpath(join(build_dir, filename)) + elif line.startswith('-') and filepath: + include = '#include ' + line.split()[2] + print(f"Remove {include} from {filepath} ... ", end='', flush=True) + if keep_str_fns and '' in include: + print('skipped') + continue + remove_includes(filepath, include, build_dir) + else: + filepath = None + + +def main(): + process(args_parse()) + + +if __name__ == '__main__': + main() From patchwork Fri Jan 14 16:23: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: 105816 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 45242A00C3; Fri, 14 Jan 2022 17:27:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A3F664277C; Fri, 14 Jan 2022 17:26:57 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 153994116D for ; Fri, 14 Jan 2022 17:26:55 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177616; x=1673713616; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7ksZ0dEAJxhYkLZ4rq1vIzVsXl3hQNbCVQtL+YMbNFc=; b=juaaP8cr5BGrOyHo4f4y7iDx1PmQEgqon7IrION7aWw/gFW2ga2XQXHs d4/DAwG8IMSDcZybZWG4zBuPOx09lABjjLfzwoDB3zFZ/aLqiTtRwHpYD gbAqzq5fuSDSFvKD1vN1z9dcs57UL8ceib0h+jTzIgCsQEq4Q+zZaiiIh 3utfvrTphX3gq/YEKTaclGRA4zUS9gokRK44oqD/YTLThe22HWr79Eur5 LyC4XkwKXZaLTxLM/IdC8uI9QuYrKYraACwyJL9DV1A0aa4lzIBjQpJ1l 8DhDTpUYoy/2xohZ6gQGZPRh/9+nrqp8wzJXApPXLiP7SYLwIB2xRgfEO Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642527" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642527" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:26:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523377" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:26:53 -0800 From: Sean Morrissey To: Ciara Power Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 02/53] telemetry: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:18 +0000 Message-Id: <20220114162409.334437-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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: Ciara Power --- lib/telemetry/telemetry.c | 1 - lib/telemetry/telemetry_data.h | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/telemetry/telemetry.c b/lib/telemetry/telemetry.c index e5ccfe47f7..c6fd03a5ab 100644 --- a/lib/telemetry/telemetry.c +++ b/lib/telemetry/telemetry.c @@ -8,7 +8,6 @@ #include #include #include -#include #endif /* !RTE_EXEC_ENV_WINDOWS */ /* we won't link against libbsd, so just always use DPDKs-specific strlcpy */ diff --git a/lib/telemetry/telemetry_data.h b/lib/telemetry/telemetry_data.h index adb84a09f1..26aa28e72c 100644 --- a/lib/telemetry/telemetry_data.h +++ b/lib/telemetry/telemetry_data.h @@ -5,7 +5,6 @@ #ifndef _TELEMETRY_DATA_H_ #define _TELEMETRY_DATA_H_ -#include #include "rte_telemetry.h" enum tel_container_types { From patchwork Fri Jan 14 16:23: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: 105818 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 71FB4A00C3; Fri, 14 Jan 2022 17:27:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0A19F4278B; Fri, 14 Jan 2022 17:27:00 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 63C7642779 for ; Fri, 14 Jan 2022 17:26:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177617; x=1673713617; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=nD1ip1Gfb9GgXUJ+VPYKg2m6Q8apIoBbKLSP9dhSMAk=; b=nBsEVTsuRBZz4/or517EcsEXSmNAXJyc3kcsYnS1E7GM1QlboBBOzI7v INqINsj6HHL2cdXEn8JKydVnPVQtoUfPT2/XQMV8a/LvconZC1964bNEC 8U8FvnwDFQYNsbCDZoJ7O8vEx6wZhLg4m9YSf8+m8TEN0FUqTg9LlKJ32 GIoSWowBHM+c3nwuZ0C0rlJF+RNB1T3230iTVL/825GnkBnYE4KbWp6Ia k7MxClEqcAB1QzHNrgSATRV5NrKKBoZ12WeFjGn4NNjRlCQgB8OWrw4ii MDkL4cC0nQFp4pWTmFbrBN9PNruRvqCwyJU9r/K+Ikzyz/UMi7kwR9wD0 w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642538" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642538" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:26:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523386" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:26:55 -0800 From: Sean Morrissey To: Honnappa Nagarahalli , Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 03/53] ring: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:19 +0000 Message-Id: <20220114162409.334437-4-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/ring/rte_ring.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c index f17bd966be..bb95962b0c 100644 --- a/lib/ring/rte_ring.c +++ b/lib/ring/rte_ring.c @@ -17,16 +17,9 @@ #include #include -#include #include #include -#include -#include #include -#include -#include -#include -#include #include #include #include From patchwork Fri Jan 14 16:23: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: 105819 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 76BA5A00C3; Fri, 14 Jan 2022 17:27:21 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 02CF342791; Fri, 14 Jan 2022 17:27:01 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id DF35642779 for ; Fri, 14 Jan 2022 17:26:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177618; x=1673713618; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7aaxwd6SDdVKQE1WV6/olZ0NQ6YrbnYIBauS5B9bK3k=; b=gRU4jWgBsmJCAZBEqy1a54Y+ZvIAdh67G+knfcG1OIKAlWxhagQRMLbu DJELF67kySPC1ArR81L84w9v5oDmG7d8cGrco/kefXo5uwFJqhCuQUCkJ FL7LaQjO+P2OSXM1CJ8GoHaAX1xZn95IPfK+JxKKoXcnYZbn2cqv7Nb0v o67JDFRqYSeMki3bdbibzJC8H41ZOOyTCoUqtkiEb1/eX2ihS9ZMq5Y9/ b2BwU0OCNPW+tyYTPv9kRFqnvap/NHIPL8QULpLkaUPuJx61gI1JOjW1Q H6dVeoTVNw9grhHqBVDCLRq0zNKQy2crGnsahx2d8XsfGF9GaOL5aHo74 g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642546" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642546" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:26:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523391" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:26:56 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 04/53] kvargs: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:20 +0000 Message-Id: <20220114162409.334437-5-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/kvargs/rte_kvargs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/kvargs/rte_kvargs.c b/lib/kvargs/rte_kvargs.c index 11f624ef14..7010d3ac51 100644 --- a/lib/kvargs/rte_kvargs.c +++ b/lib/kvargs/rte_kvargs.c @@ -7,7 +7,6 @@ #include #include -#include #include #include "rte_kvargs.h" From patchwork Fri Jan 14 16:23:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105820 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 055E6A00C3; Fri, 14 Jan 2022 17:27:27 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E73B84278C; Fri, 14 Jan 2022 17:27:04 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 2D42D42795 for ; Fri, 14 Jan 2022 17:27:02 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177622; x=1673713622; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WcuCYyVTGGR38HV+CpBtroEEO/tt0qQHkzsc7C+ZOug=; b=SDfDILpTtL0r7rLPVliuaPWX6K1RuO21gBYQ/FAmSLWvCWLxd/e+vOZM 6+IBGmSApSfJFN67dF22iYVXFrLgamh54woOXcZQkVOI7ghGgLuWvZtco Et1hGcI8Vbw5KmVpQ3bhaYC4yEgvUd50Q8Rh/ZdMatoEI8MUvLZVHZxEB TzwS8t9zNj1pFxYRsDZPMiMrWJtrnDdxwmWy5Od9SBQG3FzTn7kGCO8WK dPlmtUiIPPg18dXpNLSrSi+MsS6Y1kVgThs5iNnKsm/+g9lmd7vdWWALG Svg+cQc2jGwbAhMTAOHKXPIUdzsnB6VAZZxdV2bmXLet76B+bINT9SOtA g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642563" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642563" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:00 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523398" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:26:58 -0800 From: Sean Morrissey To: Anatoly Burakov , Jerin Jacob , Sunil Kumar Kori , =?utf-8?q?Mattias_R=C3=B6nnblom?= , Harry van Haaren , Harman Kalra , Bruce Richardson , Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey , David Christensen Subject: [PATCH v4 05/53] eal: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:21 +0000 Message-Id: <20220114162409.334437-6-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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 Reviewed-by: Harry van Haaren Reviewed-by: Mattias Rönnblom Reviewed-by: David Christensen --- lib/eal/common/eal_common_dev.c | 5 ----- lib/eal/common/eal_common_devargs.c | 1 - lib/eal/common/eal_common_errno.c | 4 ---- lib/eal/common/eal_common_fbarray.c | 3 --- lib/eal/common/eal_common_hexdump.c | 3 --- lib/eal/common/eal_common_launch.c | 6 ------ lib/eal/common/eal_common_lcore.c | 7 +------ lib/eal/common/eal_common_log.c | 2 -- lib/eal/common/eal_common_memalloc.c | 3 --- lib/eal/common/eal_common_memory.c | 5 ----- lib/eal/common/eal_common_memzone.c | 4 ---- lib/eal/common/eal_common_options.c | 2 -- lib/eal/common/eal_common_proc.c | 2 -- lib/eal/common/eal_common_string_fns.c | 2 -- lib/eal/common/eal_common_tailqs.c | 11 ----------- lib/eal/common/eal_common_thread.c | 3 --- lib/eal/common/eal_common_timer.c | 6 ------ lib/eal/common/eal_common_trace.c | 1 - lib/eal/common/hotplug_mp.h | 1 - lib/eal/common/malloc_elem.c | 6 ------ lib/eal/common/malloc_heap.c | 5 ----- lib/eal/common/malloc_mp.c | 1 - lib/eal/common/malloc_mp.h | 2 -- lib/eal/common/rte_malloc.c | 5 ----- lib/eal/common/rte_random.c | 3 --- lib/eal/common/rte_service.c | 6 ------ lib/eal/include/rte_version.h | 2 -- lib/eal/linux/eal.c | 10 ---------- lib/eal/linux/eal_alarm.c | 7 ------- lib/eal/linux/eal_cpuflags.c | 2 -- lib/eal/linux/eal_debug.c | 5 ----- lib/eal/linux/eal_dev.c | 4 ---- lib/eal/linux/eal_hugepage_info.c | 7 ------- lib/eal/linux/eal_interrupts.c | 8 -------- lib/eal/linux/eal_lcore.c | 7 ------- lib/eal/linux/eal_log.c | 11 +---------- lib/eal/linux/eal_memalloc.c | 8 -------- lib/eal/linux/eal_memory.c | 9 --------- lib/eal/linux/eal_thread.c | 5 ----- lib/eal/linux/eal_timer.c | 15 --------------- lib/eal/linux/eal_vfio_mp_sync.c | 1 - lib/eal/unix/eal_file.c | 1 - lib/eal/unix/rte_thread.c | 1 - lib/eal/x86/rte_cycles.c | 1 - 44 files changed, 2 insertions(+), 201 deletions(-) diff --git a/lib/eal/common/eal_common_dev.c b/lib/eal/common/eal_common_dev.c index e1e9976d8d..c0ee4e442f 100644 --- a/lib/eal/common/eal_common_dev.c +++ b/lib/eal/common/eal_common_dev.c @@ -5,20 +5,15 @@ #include #include -#include #include -#include #include #include #include #include -#include #include -#include #include #include -#include #include #include "eal_private.h" diff --git a/lib/eal/common/eal_common_devargs.c b/lib/eal/common/eal_common_devargs.c index 8c7650cf6c..c3c3a9e6e4 100644 --- a/lib/eal/common/eal_common_devargs.c +++ b/lib/eal/common/eal_common_devargs.c @@ -12,7 +12,6 @@ #include #include -#include #include #include #include diff --git a/lib/eal/common/eal_common_errno.c b/lib/eal/common/eal_common_errno.c index f86802705a..1091065568 100644 --- a/lib/eal/common/eal_common_errno.c +++ b/lib/eal/common/eal_common_errno.c @@ -5,15 +5,11 @@ /* Use XSI-compliant portable version of strerror_r() */ #undef _GNU_SOURCE -#include #include #include -#include -#include #include #include -#include #ifdef RTE_EXEC_ENV_WINDOWS #define strerror_r(errnum, buf, buflen) strerror_s(buf, buflen, errnum) diff --git a/lib/eal/common/eal_common_fbarray.c b/lib/eal/common/eal_common_fbarray.c index 3a28a53247..f11f87979f 100644 --- a/lib/eal/common/eal_common_fbarray.c +++ b/lib/eal/common/eal_common_fbarray.c @@ -2,7 +2,6 @@ * Copyright(c) 2017-2018 Intel Corporation */ -#include #include #include #include @@ -14,9 +13,7 @@ #include #include #include -#include #include -#include #include "eal_filesystem.h" #include "eal_private.h" diff --git a/lib/eal/common/eal_common_hexdump.c b/lib/eal/common/eal_common_hexdump.c index 2d2179d411..63bbbdcf0a 100644 --- a/lib/eal/common/eal_common_hexdump.c +++ b/lib/eal/common/eal_common_hexdump.c @@ -1,10 +1,7 @@ /* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2010-2014 Intel Corporation */ -#include #include -#include -#include #include #include diff --git a/lib/eal/common/eal_common_launch.c b/lib/eal/common/eal_common_launch.c index e95dadffb3..9f393b9bda 100644 --- a/lib/eal/common/eal_common_launch.c +++ b/lib/eal/common/eal_common_launch.c @@ -3,16 +3,10 @@ */ #include -#include -#include -#include #include -#include -#include #include #include -#include #include #include "eal_private.h" diff --git a/lib/eal/common/eal_common_lcore.c b/lib/eal/common/eal_common_lcore.c index 5de7570aac..11092791a4 100644 --- a/lib/eal/common/eal_common_lcore.c +++ b/lib/eal/common/eal_common_lcore.c @@ -2,19 +2,14 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include -#include #include #include -#include -#include +#include #include #include #include -#include -#include "eal_memcfg.h" #include "eal_private.h" #include "eal_thread.h" diff --git a/lib/eal/common/eal_common_log.c b/lib/eal/common/eal_common_log.c index 1be35f5397..6030927bbf 100644 --- a/lib/eal/common/eal_common_log.c +++ b/lib/eal/common/eal_common_log.c @@ -12,9 +12,7 @@ #include #include -#include #include -#include #include #include "eal_log.h" diff --git a/lib/eal/common/eal_common_memalloc.c b/lib/eal/common/eal_common_memalloc.c index e872c6533b..f8770ff835 100644 --- a/lib/eal/common/eal_common_memalloc.c +++ b/lib/eal/common/eal_common_memalloc.c @@ -5,12 +5,9 @@ #include #include -#include #include -#include #include #include -#include #include "eal_private.h" #include "eal_internal_cfg.h" diff --git a/lib/eal/common/eal_common_memory.c b/lib/eal/common/eal_common_memory.c index 616db5ce31..e93d558a7d 100644 --- a/lib/eal/common/eal_common_memory.c +++ b/lib/eal/common/eal_common_memory.c @@ -2,16 +2,11 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include #include #include -#include -#include #include -#include #include -#include #include #include diff --git a/lib/eal/common/eal_common_memzone.c b/lib/eal/common/eal_common_memzone.c index ecde9441ee..0059de6981 100644 --- a/lib/eal/common/eal_common_memzone.c +++ b/lib/eal/common/eal_common_memzone.c @@ -2,20 +2,16 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include #include -#include #include #include #include -#include #include #include #include #include -#include #include #include #include diff --git a/lib/eal/common/eal_common_options.c b/lib/eal/common/eal_common_options.c index 1cfdd75f3b..071f1acf50 100644 --- a/lib/eal/common/eal_common_options.c +++ b/lib/eal/common/eal_common_options.c @@ -4,7 +4,6 @@ */ #include -#include #include #ifndef RTE_EXEC_ENV_WINDOWS #include @@ -17,7 +16,6 @@ #include #include #endif -#include #include #ifndef RTE_EXEC_ENV_WINDOWS #include diff --git a/lib/eal/common/eal_common_proc.c b/lib/eal/common/eal_common_proc.c index ebd0f6673b..575b4ca24d 100644 --- a/lib/eal/common/eal_common_proc.c +++ b/lib/eal/common/eal_common_proc.c @@ -15,7 +15,6 @@ #include #include #include -#include #include #include #include @@ -27,7 +26,6 @@ #include #include #include -#include #include "eal_memcfg.h" #include "eal_private.h" diff --git a/lib/eal/common/eal_common_string_fns.c b/lib/eal/common/eal_common_string_fns.c index ddd1891656..0236ae4023 100644 --- a/lib/eal/common/eal_common_string_fns.c +++ b/lib/eal/common/eal_common_string_fns.c @@ -2,9 +2,7 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include -#include #include #include diff --git a/lib/eal/common/eal_common_tailqs.c b/lib/eal/common/eal_common_tailqs.c index ead06897b8..580fbf24bc 100644 --- a/lib/eal/common/eal_common_tailqs.c +++ b/lib/eal/common/eal_common_tailqs.c @@ -3,24 +3,13 @@ */ #include -#include -#include #include -#include #include -#include -#include -#include #include #include -#include -#include -#include -#include #include #include -#include #include "eal_private.h" #include "eal_memcfg.h" diff --git a/lib/eal/common/eal_common_thread.c b/lib/eal/common/eal_common_thread.c index bb6fc8084c..684bea166c 100644 --- a/lib/eal/common/eal_common_thread.c +++ b/lib/eal/common/eal_common_thread.c @@ -4,10 +4,7 @@ #include #include -#include -#include #include -#include #include #include #include diff --git a/lib/eal/common/eal_common_timer.c b/lib/eal/common/eal_common_timer.c index 86f8429847..5686a5102b 100644 --- a/lib/eal/common/eal_common_timer.c +++ b/lib/eal/common/eal_common_timer.c @@ -2,16 +2,10 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include -#include #include -#include -#include -#include #include -#include #include #include #include diff --git a/lib/eal/common/eal_common_trace.c b/lib/eal/common/eal_common_trace.c index 7bff1cd2ce..036f6ac348 100644 --- a/lib/eal/common/eal_common_trace.c +++ b/lib/eal/common/eal_common_trace.c @@ -3,7 +3,6 @@ */ #include -#include #include #include diff --git a/lib/eal/common/hotplug_mp.h b/lib/eal/common/hotplug_mp.h index 8fcf9b52e2..066494ff27 100644 --- a/lib/eal/common/hotplug_mp.h +++ b/lib/eal/common/hotplug_mp.h @@ -6,7 +6,6 @@ #define _HOTPLUG_MP_H_ #include "rte_dev.h" -#include "rte_bus.h" #define EAL_DEV_MP_ACTION_REQUEST "eal_dev_mp_request" #define EAL_DEV_MP_ACTION_RESPONSE "eal_dev_mp_response" diff --git a/lib/eal/common/malloc_elem.c b/lib/eal/common/malloc_elem.c index bdd20a162e..c08f129c04 100644 --- a/lib/eal/common/malloc_elem.c +++ b/lib/eal/common/malloc_elem.c @@ -6,17 +6,11 @@ #include #include #include -#include #include #include #include -#include -#include -#include -#include #include -#include #include "eal_private.h" #include "eal_internal_cfg.h" diff --git a/lib/eal/common/malloc_heap.c b/lib/eal/common/malloc_heap.c index 55aad2711b..5ee5b07941 100644 --- a/lib/eal/common/malloc_heap.c +++ b/lib/eal/common/malloc_heap.c @@ -5,7 +5,6 @@ #include #include #include -#include #include #include @@ -13,15 +12,11 @@ #include #include #include -#include -#include #include #include #include #include -#include #include -#include #include #include "eal_internal_cfg.h" diff --git a/lib/eal/common/malloc_mp.c b/lib/eal/common/malloc_mp.c index 2e597a17a2..801b2e7fbd 100644 --- a/lib/eal/common/malloc_mp.c +++ b/lib/eal/common/malloc_mp.c @@ -5,7 +5,6 @@ #include #include -#include #include #include diff --git a/lib/eal/common/malloc_mp.h b/lib/eal/common/malloc_mp.h index 0095062b72..fb10817e13 100644 --- a/lib/eal/common/malloc_mp.h +++ b/lib/eal/common/malloc_mp.h @@ -10,8 +10,6 @@ #include #include -#include -#include /* forward declarations */ struct malloc_heap; diff --git a/lib/eal/common/rte_malloc.c b/lib/eal/common/rte_malloc.c index d0bec26920..7bcbec51a2 100644 --- a/lib/eal/common/rte_malloc.c +++ b/lib/eal/common/rte_malloc.c @@ -13,11 +13,6 @@ #include #include #include -#include -#include -#include -#include -#include #include #include diff --git a/lib/eal/common/rte_random.c b/lib/eal/common/rte_random.c index ce21c2242a..4535cc980c 100644 --- a/lib/eal/common/rte_random.c +++ b/lib/eal/common/rte_random.c @@ -5,14 +5,11 @@ #ifdef __RDSEED__ #include #endif -#include #include #include #include -#include #include -#include #include struct rte_rand_state { diff --git a/lib/eal/common/rte_service.c b/lib/eal/common/rte_service.c index bd8fb72e78..ef31b1f63c 100644 --- a/lib/eal/common/rte_service.c +++ b/lib/eal/common/rte_service.c @@ -3,22 +3,16 @@ */ #include -#include #include -#include #include -#include #include #include -#include #include #include -#include #include #include -#include #include #include diff --git a/lib/eal/include/rte_version.h b/lib/eal/include/rte_version.h index b06a62e7a2..414b6167f2 100644 --- a/lib/eal/include/rte_version.h +++ b/lib/eal/include/rte_version.h @@ -14,10 +14,8 @@ extern "C" { #endif -#include #include #include -#include #include /** diff --git a/lib/eal/linux/eal.c b/lib/eal/linux/eal.c index 60b4924838..b5621e64e2 100644 --- a/lib/eal/linux/eal.c +++ b/lib/eal/linux/eal.c @@ -7,10 +7,8 @@ #include #include #include -#include #include #include -#include #include #include #include @@ -20,32 +18,24 @@ #include #include #include -#include #include #if defined(RTE_ARCH_X86) #include #endif #include -#include #include #include #include #include #include #include -#include #include #include #include -#include -#include #include #include -#include #include -#include -#include #include #include #include diff --git a/lib/eal/linux/eal_alarm.c b/lib/eal/linux/eal_alarm.c index 3b5e894595..4de67138bc 100644 --- a/lib/eal/linux/eal_alarm.c +++ b/lib/eal/linux/eal_alarm.c @@ -3,21 +3,14 @@ */ #include #include -#include #include -#include #include #include #include -#include #include #include #include -#include -#include -#include -#include #include #include #include diff --git a/lib/eal/linux/eal_cpuflags.c b/lib/eal/linux/eal_cpuflags.c index d38296e1e5..c684940e1d 100644 --- a/lib/eal/linux/eal_cpuflags.c +++ b/lib/eal/linux/eal_cpuflags.c @@ -5,8 +5,6 @@ #include #include #include -#include -#include #include #if defined(__GLIBC__) && defined(__GLIBC_PREREQ) diff --git a/lib/eal/linux/eal_debug.c b/lib/eal/linux/eal_debug.c index 64dab4e0da..b0ecf5a9dc 100644 --- a/lib/eal/linux/eal_debug.c +++ b/lib/eal/linux/eal_debug.c @@ -5,16 +5,11 @@ #ifdef RTE_BACKTRACE #include #endif -#include -#include #include #include -#include #include #include -#include -#include #define BACKTRACE_SIZE 256 diff --git a/lib/eal/linux/eal_dev.c b/lib/eal/linux/eal_dev.c index bde55a3d92..f6e5861221 100644 --- a/lib/eal/linux/eal_dev.c +++ b/lib/eal/linux/eal_dev.c @@ -4,20 +4,16 @@ #include #include -#include #include #include #include #include #include -#include #include -#include #include #include #include -#include #include #include diff --git a/lib/eal/linux/eal_hugepage_info.c b/lib/eal/linux/eal_hugepage_info.c index 9fb0e968db..3f760f85ca 100644 --- a/lib/eal/linux/eal_hugepage_info.c +++ b/lib/eal/linux/eal_hugepage_info.c @@ -3,7 +3,6 @@ */ #include -#include #include #include #include @@ -12,19 +11,13 @@ #include #include #include -#include #include #include #include -#include #include #include /* for hugetlb-related flags */ -#include -#include -#include -#include #include #include #include diff --git a/lib/eal/linux/eal_interrupts.c b/lib/eal/linux/eal_interrupts.c index 70060bf3ef..d52ec8eb4c 100644 --- a/lib/eal/linux/eal_interrupts.c +++ b/lib/eal/linux/eal_interrupts.c @@ -7,13 +7,10 @@ #include #include #include -#include #include #include #include -#include #include -#include #include #include #include @@ -21,9 +18,6 @@ #include #include -#include -#include -#include #include #include #include @@ -36,8 +30,6 @@ #include #include "eal_private.h" -#include "eal_vfio.h" -#include "eal_thread.h" #define EAL_INTR_EPOLL_WAIT_FOREVER (-1) #define NB_OTHER_INTR 1 diff --git a/lib/eal/linux/eal_lcore.c b/lib/eal/linux/eal_lcore.c index bc8965844c..2e6a350603 100644 --- a/lib/eal/linux/eal_lcore.c +++ b/lib/eal/linux/eal_lcore.c @@ -4,15 +4,8 @@ #include #include -#include -#include #include -#include -#include -#include -#include -#include #include "eal_private.h" #include "eal_filesystem.h" diff --git a/lib/eal/linux/eal_log.c b/lib/eal/linux/eal_log.c index c0aa1007c4..9e72412e2b 100644 --- a/lib/eal/linux/eal_log.c +++ b/lib/eal/linux/eal_log.c @@ -2,19 +2,10 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include -#include #include #include -#include - -#include -#include -#include -#include -#include -#include + #include #include "eal_log.h" diff --git a/lib/eal/linux/eal_memalloc.c b/lib/eal/linux/eal_memalloc.c index 337f2bc739..3ba5ca4673 100644 --- a/lib/eal/linux/eal_memalloc.c +++ b/lib/eal/linux/eal_memalloc.c @@ -3,23 +3,17 @@ */ #include -#include #include #include #include #include -#include #include #include -#include #include -#include #include #include #include #include -#include -#include #include #include #ifdef F_ADD_SEALS /* if file sealing is supported, so is memfd */ @@ -36,9 +30,7 @@ #include #include #include -#include #include -#include #include "eal_filesystem.h" #include "eal_internal_cfg.h" diff --git a/lib/eal/linux/eal_memory.c b/lib/eal/linux/eal_memory.c index 03a4f2dd2d..40ec9663d0 100644 --- a/lib/eal/linux/eal_memory.c +++ b/lib/eal/linux/eal_memory.c @@ -5,7 +5,6 @@ #include #include -#include #include #include #include @@ -13,19 +12,14 @@ #include #include #include -#include #include -#include #include #include #include #include -#include -#include #include #include #ifdef F_ADD_SEALS /* if file sealing is supported, so is memfd */ -#include #define MEMFD_SUPPORTED #endif #ifdef RTE_EAL_NUMA_AWARE_HUGEPAGES @@ -36,12 +30,9 @@ #include #include #include -#include #include -#include #include #include -#include #include "eal_private.h" #include "eal_memalloc.h" diff --git a/lib/eal/linux/eal_thread.c b/lib/eal/linux/eal_thread.c index c7f0f9b2f7..9a0250d762 100644 --- a/lib/eal/linux/eal_thread.c +++ b/lib/eal/linux/eal_thread.c @@ -4,20 +4,15 @@ #include #include -#include #include #include #include -#include -#include #include #include #include #include #include -#include -#include #include #include #include diff --git a/lib/eal/linux/eal_timer.c b/lib/eal/linux/eal_timer.c index 7cf15cabac..620baf038d 100644 --- a/lib/eal/linux/eal_timer.c +++ b/lib/eal/linux/eal_timer.c @@ -3,28 +3,13 @@ * Copyright(c) 2012-2013 6WIND S.A. */ -#include -#include #include #include -#include -#include -#include -#include -#include -#include -#include #include -#include #include -#include -#include -#include -#include #include "eal_private.h" -#include "eal_internal_cfg.h" enum timer_source eal_timer_source = EAL_TIMER_HPET; diff --git a/lib/eal/linux/eal_vfio_mp_sync.c b/lib/eal/linux/eal_vfio_mp_sync.c index a2accfab3a..e1776166af 100644 --- a/lib/eal/linux/eal_vfio_mp_sync.c +++ b/lib/eal/linux/eal_vfio_mp_sync.c @@ -5,7 +5,6 @@ #include #include -#include #include #include #include diff --git a/lib/eal/unix/eal_file.c b/lib/eal/unix/eal_file.c index ec554e0096..f04f5fbcbc 100644 --- a/lib/eal/unix/eal_file.c +++ b/lib/eal/unix/eal_file.c @@ -3,7 +3,6 @@ */ #include -#include #include #include diff --git a/lib/eal/unix/rte_thread.c b/lib/eal/unix/rte_thread.c index c72d619ec1..c34ede9186 100644 --- a/lib/eal/unix/rte_thread.c +++ b/lib/eal/unix/rte_thread.c @@ -7,7 +7,6 @@ #include #include -#include #include #include #include diff --git a/lib/eal/x86/rte_cycles.c b/lib/eal/x86/rte_cycles.c index edd9621abb..0e695caf28 100644 --- a/lib/eal/x86/rte_cycles.c +++ b/lib/eal/x86/rte_cycles.c @@ -6,7 +6,6 @@ #include #include -#include #include "eal_private.h" From patchwork Fri Jan 14 16:23: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: 105821 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 4F961A00C3; Fri, 14 Jan 2022 17:27:35 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3FCC24279E; Fri, 14 Jan 2022 17:27:07 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 5CDEA42785 for ; Fri, 14 Jan 2022 17:27:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177623; x=1673713623; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=o5Qm3oGhSa7vNYekurX802+l2TX+Qi3WK7ec+7e8R4w=; b=F/7nXfESNuoppzjzRCmNEMTL6nGlMLk9CJIYAbrK9Z5JYYOqo14DcQds /AVw8DJ3Xxl2/PHQ0v4sDQTOs2WriFV6pB7+0KRHZ9Mf1B1zj8ORwo16W JLxG0rn4TaBREGFNUnmbwi1JOToZuqDQZXeZwa26eDu4sTr2n/Ffmt7qV OR50Cggb+vijR+1LF5HUjws18urlZmeEZ/ncekU6RRty9T7DVBo1hQ0/y wseHsx0SRnEI7KUwax2mHT30EU32FdE7i/gdTSGTUl1nN00TQMDr+NHWY BNeFMvVDKvUH/tVbr5TXrabTBviVK9BoKKV/DY9gKRWHjC98sYh2NWy5s A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642578" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642578" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:02 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523414" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:01 -0800 From: Sean Morrissey To: Maxime Coquelin , Chenbo Xia Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 06/53] vhost: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:22 +0000 Message-Id: <20220114162409.334437-7-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/fd_man.c | 6 ------ lib/vhost/fd_man.h | 1 - lib/vhost/socket.c | 1 - lib/vhost/vdpa.c | 1 - lib/vhost/vhost.c | 4 ---- lib/vhost/vhost.h | 6 ------ lib/vhost/vhost_user.c | 2 -- lib/vhost/vhost_user.h | 1 - 8 files changed, 22 deletions(-) diff --git a/lib/vhost/fd_man.c b/lib/vhost/fd_man.c index 55d4856f9e..1876fada33 100644 --- a/lib/vhost/fd_man.c +++ b/lib/vhost/fd_man.c @@ -2,14 +2,8 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include -#include -#include -#include -#include #include -#include #include #include diff --git a/lib/vhost/fd_man.h b/lib/vhost/fd_man.h index 3ab5cfdd60..6f4499bdfa 100644 --- a/lib/vhost/fd_man.h +++ b/lib/vhost/fd_man.h @@ -4,7 +4,6 @@ #ifndef _FD_MAN_H_ #define _FD_MAN_H_ -#include #include #include diff --git a/lib/vhost/socket.c b/lib/vhost/socket.c index 82963c1e6d..c22d84a2cb 100644 --- a/lib/vhost/socket.c +++ b/lib/vhost/socket.c @@ -8,7 +8,6 @@ #include #include #include -#include #include #include #include diff --git a/lib/vhost/vdpa.c b/lib/vhost/vdpa.c index 09ad5d866e..7c57b3f75b 100644 --- a/lib/vhost/vdpa.c +++ b/lib/vhost/vdpa.c @@ -8,7 +8,6 @@ * Device specific vhost lib */ -#include #include #include diff --git a/lib/vhost/vhost.c b/lib/vhost/vhost.c index 13a9bb9dd1..40703b882f 100644 --- a/lib/vhost/vhost.c +++ b/lib/vhost/vhost.c @@ -4,7 +4,6 @@ #include #include -#include #include #include #ifdef RTE_LIBRTE_VHOST_NUMA @@ -13,13 +12,10 @@ #endif #include -#include #include -#include #include #include #include -#include #include "iotlb.h" #include "vhost.h" diff --git a/lib/vhost/vhost.h b/lib/vhost/vhost.h index 7085e0885c..9f9cf65f76 100644 --- a/lib/vhost/vhost.h +++ b/lib/vhost/vhost.h @@ -5,23 +5,17 @@ #ifndef _VHOST_NET_CDEV_H_ #define _VHOST_NET_CDEV_H_ #include -#include #include -#include #include #include -#include #include -#include #include #include #include -#include #include #include "rte_vhost.h" -#include "rte_vdpa.h" #include "vdpa_driver.h" #include "rte_vhost_async.h" diff --git a/lib/vhost/vhost_user.c b/lib/vhost/vhost_user.c index 5eb1dd6812..f8c216c453 100644 --- a/lib/vhost/vhost_user.c +++ b/lib/vhost/vhost_user.c @@ -27,10 +27,8 @@ #include #include #include -#include #include #include -#include #ifdef RTE_LIBRTE_VHOST_NUMA #include #endif diff --git a/lib/vhost/vhost_user.h b/lib/vhost/vhost_user.h index 16fe03f889..7d6d6ae125 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" From patchwork Fri Jan 14 16:23: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: 105822 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 BB69EA00C3; Fri, 14 Jan 2022 17:27:40 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3B4C4427A3; Fri, 14 Jan 2022 17:27:08 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id BC78142785 for ; Fri, 14 Jan 2022 17:27:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177624; x=1673713624; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XgwuLtnW+nsUNvcrrRQrvJockBdxajFMn0KCCzoOaCw=; b=ClpkRSGLzLuJNAU9mkdRmF8T4K031jEXrgAi4pQjWpmUhkIxMx6CErAo CBIdaWUCcHMBjXnxeu9Hvp2cK05MKc6FSYIrdeBfHByRGSiULWJjJq6kN /1VdqDxhb2gygomVc4GYx+Jca/N876rHUV5/XDiXk28ofmz0+a9IG7vWN nIEx0T/9IdFODYu/oom5Qv6f+cB1nxhvtqzOviRZTy66sjwENEn/tHlXZ k0sqaZZdt4m+OMND0H9sgPGOWzyMp3RGMzRF96FEGQSd97uOocMPdofH7 pwQU1OG8uM/ZFqfK447yBXQoFBqH5I0NaxYIzG1pu4vFvI/Z+rYjM/OSM w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642587" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642587" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:03 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523420" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:02 -0800 From: Sean Morrissey To: Robert Sanford , Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 07/53] timer: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:23 +0000 Message-Id: <20220114162409.334437-8-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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 | 7 ------- 1 file changed, 7 deletions(-) diff --git a/lib/timer/rte_timer.c b/lib/timer/rte_timer.c index 6d19ce469b..b3f3e229f6 100644 --- a/lib/timer/rte_timer.c +++ b/lib/timer/rte_timer.c @@ -2,29 +2,22 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include #include #include -#include #include #include #include #include #include -#include #include -#include -#include #include #include #include #include #include #include -#include -#include #include "rte_timer.h" From patchwork Fri Jan 14 16:23: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: 105823 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 49E57A00C3; Fri, 14 Jan 2022 17:27:46 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 23FE94279F; Fri, 14 Jan 2022 17:27:09 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 04A334279C for ; Fri, 14 Jan 2022 17:27:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177627; x=1673713627; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8n7uNAWvK5Pf6Iru/aZ+6Vk5CWQYZSMjVYa+VtnZgVM=; b=R3XCrw9WKyZMVuG+hi7kie7iIHrunhxKqVry/zvyMpO+qYe9AvQyM7Pj g3fGogpH1uaN9YKhUynau/GVBM97ZyXdMSiRUwiePiZht02UJcKJ8QnsF iw6QfdJIT/XQN9BdrZwzyEBtXwLkef7/whhGQT8H6qzi9jPfwBQf3jbyV 2GYfcTf4qJ8sfcrALYGKX3iT+ZVMKL8JkVDDUPXmxvEJqdQWRIR8vEDYw BbkK8OKCA8IfXFyYg8SsMI/PaMZIN8s0BFV1CWW3O/SMylPayDs0maGs9 5aqzGxmGE9b4K82+zyRcpUiqf4k7IurZr0+JLPxu7wWH4txnxQkprM2Pl g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642599" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642599" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523433" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:04 -0800 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 08/53] table: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:24 +0000 Message-Id: <20220114162409.334437-9-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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_em.c | 1 - lib/table/rte_swx_table_em.h | 1 - lib/table/rte_swx_table_learner.c | 1 - lib/table/rte_swx_table_learner.h | 1 - lib/table/rte_swx_table_selector.c | 1 - lib/table/rte_swx_table_wm.c | 2 -- lib/table/rte_swx_table_wm.h | 1 - lib/table/rte_table_acl.c | 3 --- lib/table/rte_table_array.c | 2 -- lib/table/rte_table_hash_cuckoo.c | 2 -- lib/table/rte_table_hash_ext.c | 2 -- lib/table/rte_table_hash_key16.c | 2 -- lib/table/rte_table_hash_key32.c | 2 -- lib/table/rte_table_hash_key8.c | 2 -- lib/table/rte_table_hash_lru.c | 2 -- lib/table/rte_table_lpm.c | 2 -- lib/table/rte_table_lpm_ipv6.c | 3 --- lib/table/rte_table_stub.c | 1 - lib/table/rte_table_stub.h | 1 - 19 files changed, 32 deletions(-) diff --git a/lib/table/rte_swx_table_em.c b/lib/table/rte_swx_table_em.c index 03b28c4c9d..f783cfe282 100644 --- a/lib/table/rte_swx_table_em.c +++ b/lib/table/rte_swx_table_em.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2020 Intel Corporation */ -#include #include #include #include diff --git a/lib/table/rte_swx_table_em.h b/lib/table/rte_swx_table_em.h index 909ada483b..b7423dd060 100644 --- a/lib/table/rte_swx_table_em.h +++ b/lib/table/rte_swx_table_em.h @@ -13,7 +13,6 @@ extern "C" { * RTE SWX Exact Match Table */ -#include #include diff --git a/lib/table/rte_swx_table_learner.c b/lib/table/rte_swx_table_learner.c index c3c840ff06..15576c2aa3 100644 --- a/lib/table/rte_swx_table_learner.c +++ b/lib/table/rte_swx_table_learner.c @@ -1,7 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause * Copyright(c) 2020 Intel Corporation */ -#include #include #include #include diff --git a/lib/table/rte_swx_table_learner.h b/lib/table/rte_swx_table_learner.h index d6ec733655..eb9d7689fd 100644 --- a/lib/table/rte_swx_table_learner.h +++ b/lib/table/rte_swx_table_learner.h @@ -22,7 +22,6 @@ extern "C" { */ #include -#include #include diff --git a/lib/table/rte_swx_table_selector.c b/lib/table/rte_swx_table_selector.c index 541ebc2213..ad99f18453 100644 --- a/lib/table/rte_swx_table_selector.c +++ b/lib/table/rte_swx_table_selector.c @@ -7,7 +7,6 @@ #include #include -#include #include "rte_swx_table_selector.h" diff --git a/lib/table/rte_swx_table_wm.c b/lib/table/rte_swx_table_wm.c index e260be1062..27a67b47bd 100644 --- a/lib/table/rte_swx_table_wm.c +++ b/lib/table/rte_swx_table_wm.c @@ -4,10 +4,8 @@ #include #include #include -#include #include -#include #include #include diff --git a/lib/table/rte_swx_table_wm.h b/lib/table/rte_swx_table_wm.h index 9e228f971c..4fd52c0a17 100644 --- a/lib/table/rte_swx_table_wm.h +++ b/lib/table/rte_swx_table_wm.h @@ -13,7 +13,6 @@ extern "C" { * RTE SWX Wildcard Match Table */ -#include #include diff --git a/lib/table/rte_table_acl.c b/lib/table/rte_table_acl.c index 14d54019f0..179a1da835 100644 --- a/lib/table/rte_table_acl.c +++ b/lib/table/rte_table_acl.c @@ -6,13 +6,10 @@ #include #include -#include -#include #include #include #include "rte_table_acl.h" -#include #ifdef RTE_TABLE_STATS_COLLECT diff --git a/lib/table/rte_table_array.c b/lib/table/rte_table_array.c index 8264c50c27..54a0c42f7d 100644 --- a/lib/table/rte_table_array.c +++ b/lib/table/rte_table_array.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_cuckoo.c b/lib/table/rte_table_hash_cuckoo.c index f024303330..c77eccf527 100644 --- a/lib/table/rte_table_hash_cuckoo.c +++ b/lib/table/rte_table_hash_cuckoo.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_ext.c b/lib/table/rte_table_hash_ext.c index 802a24fe0f..70ea84fa2e 100644 --- a/lib/table/rte_table_hash_ext.c +++ b/lib/table/rte_table_hash_ext.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_key16.c b/lib/table/rte_table_hash_key16.c index c4384b114d..ea8195dc17 100644 --- a/lib/table/rte_table_hash_key16.c +++ b/lib/table/rte_table_hash_key16.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_key32.c b/lib/table/rte_table_hash_key32.c index 3e0031fe1e..87f83ce6f5 100644 --- a/lib/table/rte_table_hash_key32.c +++ b/lib/table/rte_table_hash_key32.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_key8.c b/lib/table/rte_table_hash_key8.c index 34e3ed1af9..7779a9d1a3 100644 --- a/lib/table/rte_table_hash_key8.c +++ b/lib/table/rte_table_hash_key8.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_hash_lru.c b/lib/table/rte_table_hash_lru.c index 5bcdb7ba02..c31acc11cf 100644 --- a/lib/table/rte_table_hash_lru.c +++ b/lib/table/rte_table_hash_lru.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include diff --git a/lib/table/rte_table_lpm.c b/lib/table/rte_table_lpm.c index 4dd8289ce5..9de9e8a20d 100644 --- a/lib/table/rte_table_lpm.c +++ b/lib/table/rte_table_lpm.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include #include diff --git a/lib/table/rte_table_lpm_ipv6.c b/lib/table/rte_table_lpm_ipv6.c index 4e068d79bf..8fde2c012f 100644 --- a/lib/table/rte_table_lpm_ipv6.c +++ b/lib/table/rte_table_lpm_ipv6.c @@ -6,10 +6,7 @@ #include #include -#include -#include #include -#include #include #include diff --git a/lib/table/rte_table_stub.c b/lib/table/rte_table_stub.c index 9ce7be9cec..23d0de5c79 100644 --- a/lib/table/rte_table_stub.c +++ b/lib/table/rte_table_stub.c @@ -4,7 +4,6 @@ #include -#include #include #include "rte_table_stub.h" diff --git a/lib/table/rte_table_stub.h b/lib/table/rte_table_stub.h index 2b40739790..9086e4edcc 100644 --- a/lib/table/rte_table_stub.h +++ b/lib/table/rte_table_stub.h @@ -17,7 +17,6 @@ extern "C" { * ***/ -#include #include "rte_table.h" From patchwork Fri Jan 14 16:23: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: 105824 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 E2723A00C3; Fri, 14 Jan 2022 17:27:51 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 195FD427AB; Fri, 14 Jan 2022 17:27:10 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id AA74342792 for ; Fri, 14 Jan 2022 17:27:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177628; x=1673713628; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mjYVeLiFduBoKrJgJBsEX7bf8Oi8tfMrBHr11FG2Q8A=; b=XJ2+ncfC+aHvOgTRm+8FZsXydPK96FCKse+tTyitnnRPI+ZAmDDzd+iv sCsMkEW6kp9wp40bAlTDahtEMAwuMMFjAdVMaGzZrKjTIBaZ85MXkLwyp QnPZOo24n5uZ8e+f8TaHcOHWcp14LcpZAZOd7Q9j63dvUvtLEYUuRvH37 g8Ul4dvSK+hUYoGrhHST3GHLxE9p73fO0wlgW1GYx/2tDnwY1zyj0YLS9 yrQ2L0Oy3dEm++frGHaZUEqmpflQojJ28otsnSD1SZq6hxHIbO14IxBa4 5ur3YbIE87QmLNzTecqOHZo9Q3lZPzOAL97BzEhHJdFKN2xhPSFjf9v3b Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642606" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642606" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523441" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:05 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 09/53] stack: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:25 +0000 Message-Id: <20220114162409.334437-10-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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.c | 2 -- lib/stack/rte_stack.h | 1 - 2 files changed, 3 deletions(-) diff --git a/lib/stack/rte_stack.c b/lib/stack/rte_stack.c index 56bf2c8d6d..1fabec2bfe 100644 --- a/lib/stack/rte_stack.c +++ b/lib/stack/rte_stack.c @@ -6,12 +6,10 @@ #include #include -#include #include #include #include #include -#include #include #include "rte_stack.h" diff --git a/lib/stack/rte_stack.h b/lib/stack/rte_stack.h index 321f4cec1a..91fc570767 100644 --- a/lib/stack/rte_stack.h +++ b/lib/stack/rte_stack.h @@ -19,7 +19,6 @@ extern "C" { #endif -#include #include #include #include From patchwork Fri Jan 14 16:23: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: 105825 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 60655A00C3; Fri, 14 Jan 2022 17:27:57 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 02A42427AF; Fri, 14 Jan 2022 17:27:11 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 2FD34427A7 for ; Fri, 14 Jan 2022 17:27:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177629; x=1673713629; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XC//6kYGQ+23cOqeDkVk0OMscfTxPiovGf4bu5YSmDU=; b=ZbhaqGFCiOZ6sIj4G8A1Cf2zVI1fYTz87iQTon4GCexFAZb4OniV9r5S jG/uTvxB6seaeZ763MCUn+eqnMSJiC8lOF1ww1CWQv01IoeogiTsCw/iK NshBkFNZSS6QYHbebh/F8tyCP+MhTGwYZxUbWygdY8S9ZwZgISYN2aQxN MAQJbYSafeUsG0myv2chlsGzcUr2sMFQSsgNvHt+5Im7cs5TUzR0Nsilz qCgtJ+D+LP8kAL+g4kzV56ke4bJVuDVQso661aiPQMZ8kWMg5bqbOV13E M2XTqLK1pRlEfl0yjpL+jTONoN1hfVv3dHr7aX5JjGaZuC/L71nTmQfTc w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642615" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642615" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523458" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:06 -0800 From: Sean Morrissey To: Akhil Goyal , Declan Doherty Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 10/53] security: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:26 +0000 Message-Id: <20220114162409.334437-11-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/security/rte_security.c | 2 -- lib/security/rte_security.h | 3 --- 2 files changed, 5 deletions(-) diff --git a/lib/security/rte_security.c b/lib/security/rte_security.c index 6e45a03fa0..4f5e4b4d49 100644 --- a/lib/security/rte_security.c +++ b/lib/security/rte_security.c @@ -5,10 +5,8 @@ */ #include -#include #include #include -#include "rte_compat.h" #include "rte_security.h" #include "rte_security_driver.h" diff --git a/lib/security/rte_security.h b/lib/security/rte_security.h index 1228b6c8b1..d54d993ccc 100644 --- a/lib/security/rte_security.h +++ b/lib/security/rte_security.h @@ -23,10 +23,7 @@ extern "C" { #include #include #include -#include #include -#include -#include /** IPSec protocol mode */ enum rte_security_ipsec_sa_mode { From patchwork Fri Jan 14 16:23: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: 105826 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 58E3DA00C3; Fri, 14 Jan 2022 17:28:03 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EC4DF427B6; Fri, 14 Jan 2022 17:27:11 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 61C9D427A4 for ; Fri, 14 Jan 2022 17:27:10 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177630; x=1673713630; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Uzky0EbMwCeF2Z7312/0yz/yhkrRZ1B6R9P5qvl4q5U=; b=nMun7yLP9mmeCgPQDdikqcpITima8nJeuqbir6bkWsDj1rnDg4st/pfV bjQSXhe1HipcVCNYEsUQoI2TsYdTWXzeEIAOGOajD0q69J5iOLujUoJA1 70Sk+lVEsSyGbDXCGPAEN82bThWzPiANKZAJg/444xOxmyRPqfLgTqZaZ n2rZ/8gi7YI1GYMy9RlkrO/JPi+aL9AsoR5IKHnjNR+/HM5yHRQWy7XdZ hy7q6R6OZj0ADRdOReAgXnrr344QTYL/JQhRk9vacnxGYxtgq750qTrsE yT/GcnKXVWzv5UOCtelbVnlNXOtf3zXlvD2b7RzsUeV80CxuAvnQguR2u Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642623" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642623" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:09 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523477" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:08 -0800 From: Sean Morrissey To: Cristian Dumitrescu , Jasvinder Singh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 11/53] sched: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:27 +0000 Message-Id: <20220114162409.334437-12-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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 | 2 -- lib/sched/rte_red.h | 1 - lib/sched/rte_sched.c | 1 - lib/sched/rte_sched.h | 1 - 4 files changed, 5 deletions(-) diff --git a/lib/sched/rte_pie.c b/lib/sched/rte_pie.c index 934e9aee50..cdb7bab697 100644 --- a/lib/sched/rte_pie.c +++ b/lib/sched/rte_pie.c @@ -5,8 +5,6 @@ #include #include "rte_pie.h" -#include -#include #include #ifdef __INTEL_COMPILER diff --git a/lib/sched/rte_red.h b/lib/sched/rte_red.h index f5843dab1b..80b43b6da0 100644 --- a/lib/sched/rte_red.h +++ b/lib/sched/rte_red.h @@ -18,7 +18,6 @@ extern "C" { #include #include -#include #include #include #include diff --git a/lib/sched/rte_sched.c b/lib/sched/rte_sched.c index 62b3d2e315..e5c62e3d77 100644 --- a/lib/sched/rte_sched.c +++ b/lib/sched/rte_sched.c @@ -7,7 +7,6 @@ #include #include -#include #include #include #include diff --git a/lib/sched/rte_sched.h b/lib/sched/rte_sched.h index 3c625ba169..5ece64e527 100644 --- a/lib/sched/rte_sched.h +++ b/lib/sched/rte_sched.h @@ -56,7 +56,6 @@ extern "C" { * */ -#include #include #include #include From patchwork Fri Jan 14 16:23:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105827 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 0174EA00C3; Fri, 14 Jan 2022 17:28:11 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4902C427B7; Fri, 14 Jan 2022 17:27:14 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id C6CB4427B3 for ; Fri, 14 Jan 2022 17:27:11 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177631; x=1673713631; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=tbndcqPtM7bsqucCFebyYaoEjWtLOKs7gltyzJZ5Em8=; b=cOsRTtd+53mSWXvbWERMypOmWHT+pPL4bWNcd5OcZT+HhyjxHA9sgf12 zy1SZf1DeacFg3LBxZPVJMMRTybGoqMiTRSw54SH2jn29343na8pNPgiW qqZ8msFkCiOpTPleqpG8CeSjuE1GA4rNegHwPl/y/7tWXwf0SmsAE53dG JQ99GkVizo+C19LyScBx0p3ufvnYXc7Y9nQr+T8zOr0/O670Z4rEZD1+e NqvigD4ACcOHfu2vjdh4LhG1RnUPvAn1uE2sm2LY+Gohd43zOm87WtN3R uCLhTDaX0//BJTpfTW2fG7MCYZKJQ0BSCMiNuzfxyUfhhNvfwYCxhWyaq Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642632" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642632" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523481" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:09 -0800 From: Sean Morrissey To: Honnappa Nagarahalli , Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 12/53] ring: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:28 +0000 Message-Id: <20220114162409.334437-13-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/ring/rte_ring.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c index bb95962b0c..7945e5d9ed 100644 --- a/lib/ring/rte_ring.c +++ b/lib/ring/rte_ring.c @@ -8,7 +8,6 @@ */ #include -#include #include #include #include @@ -22,7 +21,6 @@ #include #include #include -#include #include #include "rte_ring.h" From patchwork Fri Jan 14 16:23:29 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105828 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 C9A45A00C3; Fri, 14 Jan 2022 17:28:16 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2935D427C6; Fri, 14 Jan 2022 17:27:15 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id A29BA427B9 for ; Fri, 14 Jan 2022 17:27:12 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177632; x=1673713632; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=DgAARMc3lGaToMseh3ulg78UV0c337IUm9Qzi0ioXE0=; b=QCmJh1GCh7yhkKzd5BJsjbMg6bIcQ5mWtCtUUcBjXgzwHHchUu5DhDr8 4vvZivMw5PTiVxqLadYeNQNGC16DwCu+BP4LwyI/nLTgiDSp1hF1P526C XunA3/YfdbcZOJ+iaui7RrEILrQHKwjxxWwQDTBSVULL322d/HSHi/PcS 6WsBP7UIxSTtXnbVPwq0HReyWbIG7TaLI9msE0EqpMrGwISK4ktXZQ8fb bjukH7LyTJh/SZuucRZXsL2br5y0NjYL8Hm1Z1RpdN+4FEz0DgVnuDNY/ FioHrb+ND859jsKrS0gZZAOhqmhpmLYKR40AWimCOoIRFkiXUq5T/Mqqh g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642645" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642645" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:12 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523485" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:11 -0800 From: Sean Morrissey To: Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 13/53] rib: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:29 +0000 Message-Id: <20220114162409.334437-14-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/rib/rte_rib.c | 2 -- lib/rib/rte_rib.h | 1 - lib/rib/rte_rib6.c | 2 -- lib/rib/rte_rib6.h | 1 - 4 files changed, 6 deletions(-) diff --git a/lib/rib/rte_rib.c b/lib/rib/rte_rib.c index 6c29e1c49a..cd9e823068 100644 --- a/lib/rib/rte_rib.c +++ b/lib/rib/rte_rib.c @@ -6,12 +6,10 @@ #include #include -#include #include #include #include #include -#include #include #include diff --git a/lib/rib/rte_rib.h b/lib/rib/rte_rib.h index bebb30f7d7..c18c4ca594 100644 --- a/lib/rib/rte_rib.h +++ b/lib/rib/rte_rib.h @@ -17,7 +17,6 @@ #include #include -#include #ifdef __cplusplus extern "C" { diff --git a/lib/rib/rte_rib6.c b/lib/rib/rte_rib6.c index 70405113b4..042ac1f090 100644 --- a/lib/rib/rte_rib6.c +++ b/lib/rib/rte_rib6.c @@ -6,12 +6,10 @@ #include #include -#include #include #include #include #include -#include #include #include diff --git a/lib/rib/rte_rib6.h b/lib/rib/rte_rib6.h index 6f532265c6..fa8e9bf732 100644 --- a/lib/rib/rte_rib6.h +++ b/lib/rib/rte_rib6.h @@ -15,7 +15,6 @@ */ #include -#include #include #ifdef __cplusplus From patchwork Fri Jan 14 16:23:30 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105829 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 8A104A00C3; Fri, 14 Jan 2022 17:28:22 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 290B1427C8; Fri, 14 Jan 2022 17:27:16 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id BBA53427C0 for ; Fri, 14 Jan 2022 17:27:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177633; x=1673713633; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WkP6rz7fuURRRU+lCzi9DQzkDpkjMO3nW7h86yau+bI=; b=huSGt9FtXbNWX8MfPCo5KliLTEKaF7LoAI4JEk/GiQAJDnS8ipVxEJLn XhBhWiXGlHpV3o0uevMbpow+4vXibtKyPq3MLFJ8I0/TTC/B8/kXWAkkp +3jR7CMKx6Ab4Sf8y+lV7mKUFDa9LYjspO5D7Ip0DhA5OWrttjNMb05JS yfqc9rr5tcC8XkZY4D4I9waFApmzEHeuuw4YEKXDqvZjkUB3tfLOJRj5c qwPXJgnBufN+3SnIdCjEY89uE17Ijx3knz5enDEZmTTxnWrlGA8kVAsyh 7zUokDZkCPTkrdMkuJhrS2fdx12y/j1eOnhXRTN4BX4xPck8Rh9ZCmqay g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642650" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642650" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523491" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:12 -0800 From: Sean Morrissey To: Reshma Pattan Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 14/53] reorder: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:30 +0000 Message-Id: <20220114162409.334437-15-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/reorder/rte_reorder.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/reorder/rte_reorder.c b/lib/reorder/rte_reorder.c index 9445853b79..f40a48201f 100644 --- a/lib/reorder/rte_reorder.c +++ b/lib/reorder/rte_reorder.c @@ -2,7 +2,6 @@ * Copyright(c) 2010-2014 Intel Corporation */ -#include #include #include From patchwork Fri Jan 14 16:23:31 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105830 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 C74A6A00C3; Fri, 14 Jan 2022 17:28:27 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2CBA9427CC; Fri, 14 Jan 2022 17:27:17 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 0D879427C3 for ; Fri, 14 Jan 2022 17:27:14 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177635; x=1673713635; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=hwR8BGyXIWVkPJ5bbCNeXqg5hKH+NyJEZPXh0Sy3+dg=; b=YziF/widQNsoPw80ddjw8o0lV53sx6D5yhhHaXMbmTMyE9GQkg0VhfKE Uz6+i9Ir2xquTLSWfv9Vuvr0IbNtLQo67ef7+ttdt10rNuYmwUDivb/Cx Ayp8nbRbmDE3yC/3iqBX1jrhXIQvtCM+96QUAlqcLF5dQJvUq/k+77nhY zmBpWZAyouJbM3NvqjIvzcXhU+9lb5Of7vUamplGzh0f+XhBDx/nR8NAx ntmpjtK1uyAxvRS9W4lgw7CgTAShirZzHNFknHuvS66Ay+Qsaz3uvCxXr Br32/35+ofcqhoXEqT2Uvo4zFd2Fndt83OPMwSXzP5YYHBsLOTCTCIq/K A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642654" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642654" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523495" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:13 -0800 From: Sean Morrissey To: Ori Kam Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 15/53] regexdev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:31 +0000 Message-Id: <20220114162409.334437-16-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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: Ori Kam --- lib/regexdev/rte_regexdev.c | 2 -- lib/regexdev/rte_regexdev.h | 3 --- 2 files changed, 5 deletions(-) diff --git a/lib/regexdev/rte_regexdev.c b/lib/regexdev/rte_regexdev.c index 04ab713730..02a388bc5d 100644 --- a/lib/regexdev/rte_regexdev.c +++ b/lib/regexdev/rte_regexdev.c @@ -5,8 +5,6 @@ #include -#include -#include #include #include diff --git a/lib/regexdev/rte_regexdev.h b/lib/regexdev/rte_regexdev.h index 0bac46cda9..4ba67b0c25 100644 --- a/lib/regexdev/rte_regexdev.h +++ b/lib/regexdev/rte_regexdev.h @@ -199,11 +199,8 @@ extern "C" { #endif #include -#include #include -#include #include -#include #define RTE_REGEXDEV_NAME_MAX_LEN RTE_DEV_NAME_MAX_LEN From patchwork Fri Jan 14 16:23:32 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105831 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 40010A00C3; Fri, 14 Jan 2022 17:28:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2509B427AC; Fri, 14 Jan 2022 17:27:19 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 3CB09427CB for ; Fri, 14 Jan 2022 17:27:16 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177636; x=1673713636; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=xM99L+P/Yv8BMdHUjOxjUH0I0N+/RyZo1Txfd85dfc4=; b=dY9nweSIlPHxjjc8DknyJYqj8Rx11YuiD5KTyK6NwSAuL1+HNg5Rkrzc zc2HqU/LfhaK+AFJIlesfsc/faEHxPNNux+hMLKXnbd8r4Fgj2SQl8lVl zA3C5SpCSConG9AGP5IM8H8y4/eYSrAUH0agMeRDMXuKiecjqW7u5K3W0 ndjRxKXV6z/2eWrLsoTRjy7BJRSkbuVzgAgnfIOXk4clxXWUV1FZZ52j1 18yU9Sv9HDXIRz0hd3gCgDr8koVswIIxNCP9A2soSwfEJqRJ7+QcqMbrq /Ja5uRCwr33RLp931x1AWPMh1VMEOaDv6QgKsdbjdOPYBmcmuYdBPlDyk w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642662" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642662" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523500" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:14 -0800 From: Sean Morrissey To: Honnappa Nagarahalli Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 16/53] rcu: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:32 +0000 Message-Id: <20220114162409.334437-17-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/rcu/rte_rcu_qsbr.c | 4 ---- lib/rcu/rte_rcu_qsbr.h | 4 ---- 2 files changed, 8 deletions(-) diff --git a/lib/rcu/rte_rcu_qsbr.c b/lib/rcu/rte_rcu_qsbr.c index 7510db2f81..17be93e830 100644 --- a/lib/rcu/rte_rcu_qsbr.c +++ b/lib/rcu/rte_rcu_qsbr.c @@ -13,10 +13,6 @@ #include #include #include -#include -#include -#include -#include #include #include diff --git a/lib/rcu/rte_rcu_qsbr.h b/lib/rcu/rte_rcu_qsbr.h index 62a420a785..d81bf5e8db 100644 --- a/lib/rcu/rte_rcu_qsbr.h +++ b/lib/rcu/rte_rcu_qsbr.h @@ -32,11 +32,7 @@ extern "C" { #include #include #include -#include -#include #include -#include -#include #include #include #include From patchwork Fri Jan 14 16:23:33 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105832 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 6815DA00C3; Fri, 14 Jan 2022 17:28:38 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0EBFF427D2; Fri, 14 Jan 2022 17:27:20 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 99A57427AC for ; Fri, 14 Jan 2022 17:27:17 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177637; x=1673713637; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=50pKyGb506sog/XYEEebYHFbIbVyGDhdCl9k/Kq2p8k=; b=IGJHdiSMrj1UXO9VTD1yu7fitFUgKIO692l5ZHtCTCiH3GtoKRhIvgHe UNp74y1btSfYgBYsX62A/bksudieHOszufWDCq7j7mmffI3bDQWIIolsi hVrXO2vvYb5Di9uzZvqSMzk5VhZCtywCmICL54mjZqlf5WmveDtCJahsb wiHAxfbNz8KlFTmabcGdUgq+LLcGjQ01fei+8eUzSyrgTYAG5rKmhnRSy vlU8YflUNH/YX+Hkt5UNgUbd73tlBryXY1CxoJo7PDGg4Fvbq/17GqH+g u8c0K/EOkIL2zr9uJbFRXo7liCXMzMSSa3861gVqrZ1ZcI+lPjyrj+r42 g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642669" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642669" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:17 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523510" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:16 -0800 From: Sean Morrissey To: Nipun Gupta , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 17/53] rawdev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:33 +0000 Message-Id: <20220114162409.334437-18-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/rawdev/rte_rawdev.c | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/lib/rawdev/rte_rawdev.c b/lib/rawdev/rte_rawdev.c index a6134e76ea..2f0a4f132e 100644 --- a/lib/rawdev/rte_rawdev.c +++ b/lib/rawdev/rte_rawdev.c @@ -6,29 +6,15 @@ #include #include #include -#include #include #include #include -#include -#include #include -#include #include -#include #include -#include -#include -#include -#include -#include -#include -#include -#include #include #include -#include #include #include "rte_rawdev.h" From patchwork Fri Jan 14 16:23:34 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105833 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 87992A00C3; Fri, 14 Jan 2022 17:28:43 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EB9BB427D9; Fri, 14 Jan 2022 17:27:20 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 2B4F3427BD for ; Fri, 14 Jan 2022 17:27:18 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177639; x=1673713639; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=weYOb32PxVT4qyDx+/5LGpvizyAaMrFYnG1UsPt+iX0=; b=apT6xl/C1AChyNM09aRrUnacqNvySFIjvyDQTCAjY5oYi+ygEWJNxY0x WakOXW3Yd9suD+oQivgKrdZAdbwTAzDPJEI/TXU7MqGfV7mv8FCcItCj8 OmL6A/f7yIXyuPRvue+wTdEnGdmI43w9LPpxSwTdw9d2WNyQHhbL9NhbE eZnEEH99tqp+1l5A54m6QOsqeKMUEuqbVN34dvzckPiHNzLfSc3yTR03t MYhegFTNLeXM1IJWqJ2AtnsO7rgS78HmChgViaQ7VL2d9uFWTJrf+Ocng nO6HfXUiY0pK4SdvDn/ibGatvFTyIPFk+ZLKduEMDzEbphR7TXWqdYvVn A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642684" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642684" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:18 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523523" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:17 -0800 From: Sean Morrissey To: David Hunt Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 18/53] power: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:34 +0000 Message-Id: <20220114162409.334437-19-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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. Also added rte_string_fns.h to example app vm_power_manager for users without libbsd. Signed-off-by: Sean Morrissey --- examples/vm_power_manager/guest_cli/main.c | 1 + lib/power/guest_channel.c | 2 -- lib/power/power_acpi_cpufreq.c | 7 ------- lib/power/power_acpi_cpufreq.h | 4 ---- lib/power/power_common.h | 1 - lib/power/power_cppc_cpufreq.c | 1 - lib/power/power_cppc_cpufreq.h | 4 ---- lib/power/power_kvm_vm.c | 1 - lib/power/power_kvm_vm.h | 4 ---- lib/power/power_pstate_cpufreq.c | 7 ------- lib/power/power_pstate_cpufreq.h | 4 ---- lib/power/rte_power.c | 1 - lib/power/rte_power.h | 2 -- lib/power/rte_power_empty_poll.c | 2 -- 14 files changed, 1 insertion(+), 40 deletions(-) diff --git a/examples/vm_power_manager/guest_cli/main.c b/examples/vm_power_manager/guest_cli/main.c index b8fa65ef15..9da50020ac 100644 --- a/examples/vm_power_manager/guest_cli/main.c +++ b/examples/vm_power_manager/guest_cli/main.c @@ -13,6 +13,7 @@ #include #include #include +#include #include "vm_power_cli_guest.h" #include "parse.h" diff --git a/lib/power/guest_channel.c b/lib/power/guest_channel.c index 474dd92998..969a9e5aaa 100644 --- a/lib/power/guest_channel.c +++ b/lib/power/guest_channel.c @@ -4,9 +4,7 @@ #include #include -#include #include -#include #include #include #include diff --git a/lib/power/power_acpi_cpufreq.c b/lib/power/power_acpi_cpufreq.c index 402ed8c99b..6e57aca535 100644 --- a/lib/power/power_acpi_cpufreq.c +++ b/lib/power/power_acpi_cpufreq.c @@ -3,17 +3,10 @@ */ #include -#include -#include #include #include -#include -#include -#include -#include #include -#include #include #include "power_acpi_cpufreq.h" diff --git a/lib/power/power_acpi_cpufreq.h b/lib/power/power_acpi_cpufreq.h index 41675b9cd9..682fd9278c 100644 --- a/lib/power/power_acpi_cpufreq.h +++ b/lib/power/power_acpi_cpufreq.h @@ -10,10 +10,6 @@ * RTE Power Management via userspace ACPI cpufreq */ -#include -#include -#include -#include #include "rte_power.h" /** diff --git a/lib/power/power_common.h b/lib/power/power_common.h index 0b264edfa5..c1c7139276 100644 --- a/lib/power/power_common.h +++ b/lib/power/power_common.h @@ -5,7 +5,6 @@ #ifndef _POWER_COMMON_H_ #define _POWER_COMMON_H_ -#include #include diff --git a/lib/power/power_cppc_cpufreq.c b/lib/power/power_cppc_cpufreq.c index 25185a791c..ef06fbcd9e 100644 --- a/lib/power/power_cppc_cpufreq.c +++ b/lib/power/power_cppc_cpufreq.c @@ -4,7 +4,6 @@ */ #include -#include #include "power_cppc_cpufreq.h" #include "power_common.h" diff --git a/lib/power/power_cppc_cpufreq.h b/lib/power/power_cppc_cpufreq.h index 4e73c91b05..f4121b237e 100644 --- a/lib/power/power_cppc_cpufreq.h +++ b/lib/power/power_cppc_cpufreq.h @@ -11,10 +11,6 @@ * RTE Power Management via userspace CPPC cpufreq */ -#include -#include -#include -#include #include "rte_power.h" /** diff --git a/lib/power/power_kvm_vm.c b/lib/power/power_kvm_vm.c index ab7d4b8cee..6a8109d449 100644 --- a/lib/power/power_kvm_vm.c +++ b/lib/power/power_kvm_vm.c @@ -9,7 +9,6 @@ #include "rte_power_guest_channel.h" #include "guest_channel.h" #include "power_kvm_vm.h" -#include "power_common.h" #define FD_PATH "/dev/virtio-ports/virtio.serial.port.poweragent" diff --git a/lib/power/power_kvm_vm.h b/lib/power/power_kvm_vm.h index 9a309a300f..303fcc041b 100644 --- a/lib/power/power_kvm_vm.h +++ b/lib/power/power_kvm_vm.h @@ -10,10 +10,6 @@ * RTE Power Management KVM VM */ -#include -#include -#include -#include #include "rte_power.h" /** diff --git a/lib/power/power_pstate_cpufreq.c b/lib/power/power_pstate_cpufreq.c index 86f8a76e46..959eccffd8 100644 --- a/lib/power/power_pstate_cpufreq.c +++ b/lib/power/power_pstate_cpufreq.c @@ -3,20 +3,13 @@ */ #include -#include -#include #include -#include #include #include -#include #include #include -#include #include -#include -#include #include "power_pstate_cpufreq.h" #include "power_common.h" diff --git a/lib/power/power_pstate_cpufreq.h b/lib/power/power_pstate_cpufreq.h index 3260b32494..7bf64a518c 100644 --- a/lib/power/power_pstate_cpufreq.h +++ b/lib/power/power_pstate_cpufreq.h @@ -10,10 +10,6 @@ * RTE Power Management via Intel Pstate driver */ -#include -#include -#include -#include #include "rte_power.h" /** diff --git a/lib/power/rte_power.c b/lib/power/rte_power.c index 3cba56bac9..0a6614be77 100644 --- a/lib/power/rte_power.c +++ b/lib/power/rte_power.c @@ -10,7 +10,6 @@ #include "power_cppc_cpufreq.h" #include "power_kvm_vm.h" #include "power_pstate_cpufreq.h" -#include "power_common.h" enum power_management_env global_default_env = PM_ENV_NOT_SET; diff --git a/lib/power/rte_power.h b/lib/power/rte_power.h index c5759afa39..47345e26df 100644 --- a/lib/power/rte_power.h +++ b/lib/power/rte_power.h @@ -11,9 +11,7 @@ */ #include -#include #include -#include #include #ifdef __cplusplus diff --git a/lib/power/rte_power_empty_poll.c b/lib/power/rte_power_empty_poll.c index c4b5de9601..dca88555aa 100644 --- a/lib/power/rte_power_empty_poll.c +++ b/lib/power/rte_power_empty_poll.c @@ -5,8 +5,6 @@ #include #include -#include -#include #include #include From patchwork Fri Jan 14 16:23:35 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105834 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 A849EA00C3; Fri, 14 Jan 2022 17:28:48 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D193E427C9; Fri, 14 Jan 2022 17:27:22 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 94DC9427D6 for ; Fri, 14 Jan 2022 17:27:20 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177640; x=1673713640; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=cSZglcfcKi63QqKUUpBx2Pmi2AWDSq/U3VI8BZCNz7A=; b=EYdkYRD0Ezar4LR1fdqX4M4bu5evQgKK06FKODy/O5lL/8WKGSsc9MY1 wsVpp3zY4iexoS8OI/KS3FPUQt3kmD2SqF5bXI14+rhChR8ju6KmOAhp4 SBQiB4hOt67vsYyhmVTUUTA1ZlS3gMvtpGCpwi9SH0PDNUvu+XCM1/bqs 9szy8jY+Us8RgCmXYPScwpBDUXEZtc8HWgqz3t+xBn3KdUhWlv55+XZfQ MHTT5xYoPevbUk4HoqJNCRATQPYJ/UTHdCwCvb4IbJpEeatrOtc4PQtH+ WmHqHIlPV94BoXCHS1y3waaVqZtWpc3u+jUrPpthqN39i0kHA3xbs0zpx w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642689" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642689" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:20 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523528" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:19 -0800 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 19/53] port: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:35 +0000 Message-Id: <20220114162409.334437-20-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/port/rte_port_fd.h | 1 - lib/port/rte_port_frag.c | 2 -- lib/port/rte_port_frag.h | 1 - lib/port/rte_port_kni.c | 1 - lib/port/rte_port_kni.h | 1 - lib/port/rte_port_ras.c | 1 - lib/port/rte_port_ras.h | 1 - lib/port/rte_port_ring.h | 1 - lib/port/rte_port_sched.c | 1 - lib/port/rte_port_source_sink.c | 1 - lib/port/rte_swx_port_fd.c | 1 - lib/port/rte_swx_port_fd.h | 1 - lib/port/rte_swx_port_ring.h | 1 - 13 files changed, 14 deletions(-) diff --git a/lib/port/rte_port_fd.h b/lib/port/rte_port_fd.h index e7620ef522..c8cfd9765a 100644 --- a/lib/port/rte_port_fd.h +++ b/lib/port/rte_port_fd.h @@ -20,7 +20,6 @@ extern "C" { #include -#include #include "rte_port.h" /** fd_reader port parameters */ diff --git a/lib/port/rte_port_frag.c b/lib/port/rte_port_frag.c index 8a803fda11..e1f1892176 100644 --- a/lib/port/rte_port_frag.c +++ b/lib/port/rte_port_frag.c @@ -3,9 +3,7 @@ */ #include -#include #include -#include #include "rte_port_frag.h" diff --git a/lib/port/rte_port_frag.h b/lib/port/rte_port_frag.h index 74321e4c4c..07060297f6 100644 --- a/lib/port/rte_port_frag.h +++ b/lib/port/rte_port_frag.h @@ -29,7 +29,6 @@ extern "C" { #include -#include #include "rte_port.h" diff --git a/lib/port/rte_port_kni.c b/lib/port/rte_port_kni.c index 7b370f980a..1c7a6cb200 100644 --- a/lib/port/rte_port_kni.c +++ b/lib/port/rte_port_kni.c @@ -4,7 +4,6 @@ */ #include -#include #include #include diff --git a/lib/port/rte_port_kni.h b/lib/port/rte_port_kni.h index 9d318af17e..35c6253806 100644 --- a/lib/port/rte_port_kni.h +++ b/lib/port/rte_port_kni.h @@ -21,7 +21,6 @@ extern "C" { #include -#include #include "rte_port.h" diff --git a/lib/port/rte_port_ras.c b/lib/port/rte_port_ras.c index 8508814bb2..e5de57da42 100644 --- a/lib/port/rte_port_ras.c +++ b/lib/port/rte_port_ras.c @@ -3,7 +3,6 @@ */ #include -#include #include #include #include diff --git a/lib/port/rte_port_ras.h b/lib/port/rte_port_ras.h index fa5accdc71..ee1d8ae21e 100644 --- a/lib/port/rte_port_ras.h +++ b/lib/port/rte_port_ras.h @@ -30,7 +30,6 @@ extern "C" { #include -#include #include "rte_port.h" diff --git a/lib/port/rte_port_ring.h b/lib/port/rte_port_ring.h index c4f34e22fe..ba609b3436 100644 --- a/lib/port/rte_port_ring.h +++ b/lib/port/rte_port_ring.h @@ -26,7 +26,6 @@ extern "C" { #include -#include #include "rte_port.h" diff --git a/lib/port/rte_port_sched.c b/lib/port/rte_port_sched.c index 1209fc121b..8a7d815ef3 100644 --- a/lib/port/rte_port_sched.c +++ b/lib/port/rte_port_sched.c @@ -3,7 +3,6 @@ */ #include -#include #include #include "rte_port_sched.h" diff --git a/lib/port/rte_port_source_sink.c b/lib/port/rte_port_source_sink.c index 68575c9833..4928a5f706 100644 --- a/lib/port/rte_port_source_sink.c +++ b/lib/port/rte_port_source_sink.c @@ -5,7 +5,6 @@ #include #include -#include #include #include diff --git a/lib/port/rte_swx_port_fd.c b/lib/port/rte_swx_port_fd.c index aa7315a15a..51bcd3bb7b 100644 --- a/lib/port/rte_swx_port_fd.c +++ b/lib/port/rte_swx_port_fd.c @@ -6,7 +6,6 @@ #include #include -#include #include #include "rte_swx_port_fd.h" diff --git a/lib/port/rte_swx_port_fd.h b/lib/port/rte_swx_port_fd.h index ecf3349f5f..c1a9200a4f 100644 --- a/lib/port/rte_swx_port_fd.h +++ b/lib/port/rte_swx_port_fd.h @@ -16,7 +16,6 @@ extern "C" { ***/ #include -#include #include "rte_swx_port.h" diff --git a/lib/port/rte_swx_port_ring.h b/lib/port/rte_swx_port_ring.h index 859981f277..dc0ef9247c 100644 --- a/lib/port/rte_swx_port_ring.h +++ b/lib/port/rte_swx_port_ring.h @@ -16,7 +16,6 @@ extern "C" { #include -#include #include "rte_swx_port.h" From patchwork Fri Jan 14 16:23:36 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105835 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 80A36A00C3; Fri, 14 Jan 2022 17:28:56 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 25C7D427D0; Fri, 14 Jan 2022 17:27:24 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id EC1B3427DC for ; Fri, 14 Jan 2022 17:27:21 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177642; x=1673713642; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=+na9zf7PTLIO6LVVvfqzqJ9xTn1V5VMoei+d7GgY6sk=; b=gDnix2Z8TMTfm9uVHZq1utFdoT/mdpC9doOPe+u+rbh97TmkVYjPIwon ZWnHpJmXYzYFfh/ECpPY0BYYcCxrPyP/A+lBT/oA9SoSTCh58Ee2Y2bO3 8Vsw0cPRG+oxbst8f8iJIFGFJRXWjzE+h2E8B5pi+x2wVSoc7KDxtckDn JGoTy/OnA3Iexug5b/OBittvis4wE2ykVxMpn8kBGO74vKjeujqgAa5Qy wb7Jt5uJ1DJffoXPJEBIenjim5F3x5rYGyeUiPU3WAW6Jyet+LgGNTzy0 7DBvlgbz0qNkalngGpK135C5OibEhKIHQgkQ8DNLzz3Ir/+lr/1CNb5Xj A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642696" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642696" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:21 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523535" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:20 -0800 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 20/53] pipeline: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:36 +0000 Message-Id: <20220114162409.334437-21-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/pipeline/rte_pipeline.c | 4 ---- lib/pipeline/rte_port_in_action.c | 2 -- lib/pipeline/rte_swx_ctl.h | 2 -- lib/pipeline/rte_swx_pipeline.c | 1 - lib/pipeline/rte_swx_pipeline.h | 1 - lib/pipeline/rte_swx_pipeline_spec.c | 1 - lib/pipeline/rte_table_action.c | 2 -- 7 files changed, 13 deletions(-) diff --git a/lib/pipeline/rte_pipeline.c b/lib/pipeline/rte_pipeline.c index f5f397d292..ff86c7cf96 100644 --- a/lib/pipeline/rte_pipeline.c +++ b/lib/pipeline/rte_pipeline.c @@ -6,10 +6,6 @@ #include #include -#include -#include -#include -#include #include #include #include diff --git a/lib/pipeline/rte_port_in_action.c b/lib/pipeline/rte_port_in_action.c index e3b00df8d2..5818973250 100644 --- a/lib/pipeline/rte_port_in_action.c +++ b/lib/pipeline/rte_port_in_action.c @@ -6,9 +6,7 @@ #include #include -#include #include -#include #include "rte_port_in_action.h" diff --git a/lib/pipeline/rte_swx_ctl.h b/lib/pipeline/rte_swx_ctl.h index 82e62e70a7..ed752ad5eb 100644 --- a/lib/pipeline/rte_swx_ctl.h +++ b/lib/pipeline/rte_swx_ctl.h @@ -13,7 +13,6 @@ extern "C" { * RTE SWX Pipeline Control */ -#include #include #include @@ -22,7 +21,6 @@ extern "C" { #include "rte_swx_port.h" #include "rte_swx_table.h" -#include "rte_swx_table_selector.h" struct rte_swx_pipeline; diff --git a/lib/pipeline/rte_swx_pipeline.c b/lib/pipeline/rte_swx_pipeline.c index 2145ca0a42..b39139edb8 100644 --- a/lib/pipeline/rte_swx_pipeline.c +++ b/lib/pipeline/rte_swx_pipeline.c @@ -4,7 +4,6 @@ #include #include #include -#include #include #include "rte_swx_pipeline_internal.h" diff --git a/lib/pipeline/rte_swx_pipeline.h b/lib/pipeline/rte_swx_pipeline.h index 77141bd341..430e458335 100644 --- a/lib/pipeline/rte_swx_pipeline.h +++ b/lib/pipeline/rte_swx_pipeline.h @@ -13,7 +13,6 @@ extern "C" { * RTE SWX Pipeline */ -#include #include #include diff --git a/lib/pipeline/rte_swx_pipeline_spec.c b/lib/pipeline/rte_swx_pipeline_spec.c index 07a7580ac8..8165a046ea 100644 --- a/lib/pipeline/rte_swx_pipeline_spec.c +++ b/lib/pipeline/rte_swx_pipeline_spec.c @@ -8,7 +8,6 @@ #include #include "rte_swx_pipeline.h" -#include "rte_swx_ctl.h" #define MAX_LINE_LENGTH RTE_SWX_INSTRUCTION_SIZE #define MAX_TOKENS RTE_SWX_INSTRUCTION_TOKENS_MAX diff --git a/lib/pipeline/rte_table_action.c b/lib/pipeline/rte_table_action.c index ebab2444d3..b1310be565 100644 --- a/lib/pipeline/rte_table_action.c +++ b/lib/pipeline/rte_table_action.c @@ -11,12 +11,10 @@ #include #include #include -#include #include #include #include #include -#include #include "rte_table_action.h" From patchwork Fri Jan 14 16:23:37 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105836 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 D8E66A00C3; Fri, 14 Jan 2022 17:29:00 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0A819427EB; Fri, 14 Jan 2022 17:27:25 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 81054427DE for ; Fri, 14 Jan 2022 17:27:23 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177643; x=1673713643; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mhp7Qf5sbPH71MG3+BwyuYtvhLatxsuGRv0MpH1/PEo=; b=mB8wXHSm8edHc6QWaiwK5Dc5FeIGDF/AX2CePR6nCdzBETvwnUvtm/5s pRy2WN9wnh96rRjch3pPftSVviDXCXqqir4M66kxtEe8BWMv1hT54/XHE jXmlmoaLnhoGYwOXxRAqbXFR3tT7Kk8oURGU9xVRBxsZcwz0WW3eolsDm gG9WgZDa1kRQ5O9j6uDgysQhGaGgQ+byilotc7siFDm9eO71KCWK4OibA 51xwkGNj1+Tjkz+DokC7O+H8X4wIb7fQutqsEtYK4L5W3uMmcBXx78IVm SxjmGe2ZR103Ui1IzJmFZv+HBGH8Or7E9hwKKFjL7i5uDb9FLsTqCyp+x g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642704" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642704" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:22 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523545" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:21 -0800 From: Sean Morrissey To: Reshma Pattan , Stephen Hemminger Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 21/53] pdump: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:37 +0000 Message-Id: <20220114162409.334437-22-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/pdump/rte_pdump.c | 1 - lib/pdump/rte_pdump.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/pdump/rte_pdump.c b/lib/pdump/rte_pdump.c index af450695ec..b3a62df591 100644 --- a/lib/pdump/rte_pdump.c +++ b/lib/pdump/rte_pdump.c @@ -2,7 +2,6 @@ * Copyright(c) 2016-2018 Intel Corporation */ -#include #include #include #include diff --git a/lib/pdump/rte_pdump.h b/lib/pdump/rte_pdump.h index 6efa0274f2..41c4b7800b 100644 --- a/lib/pdump/rte_pdump.h +++ b/lib/pdump/rte_pdump.h @@ -13,8 +13,6 @@ */ #include -#include -#include #include #ifdef __cplusplus From patchwork Fri Jan 14 16:23:38 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105837 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 5362BA00C3; Fri, 14 Jan 2022 17:29:06 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0BCC3427F0; Fri, 14 Jan 2022 17:27:26 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id A82AD427E8 for ; Fri, 14 Jan 2022 17:27:24 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177644; x=1673713644; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=+6RkWs1n5Neqw2ubf1bi+UzR9Aakp3EuyBtQvQPK3Jc=; b=ghKMNa7eYC84soeIGu3vqD+F9+oaNsvoMMnysXUXES5q6d7xhwwW8wOv anVTASUr8/l/BefhE0U/UabakBFnk5JKAma8+l0iprTADvnpNlXXf0RaT 4jH1ik8tqk4plJeoVP7HutkLNFRlBvJ2P2G1dqHA5RhH7bGQSzF8lWWed tW8q6Z6EuZ5pfrMeV8RdPL/hPriyXt9WyFEsbq1ZYtJ2z71+Q8e6Ovzbd DBrp0/LvyXAmL9Resy+qDKWoNKahXBfbBoGUuPllphDc1Eek//jZRU6V9 Uh3ysg35NwIGK7Tf596OpgYoAKIXAlpnN6hDVrQODf/9MVm3Bi6qp48P1 Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642711" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642711" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:24 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523552" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:23 -0800 From: Sean Morrissey To: Gaetan Rivet Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 22/53] pci: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:38 +0000 Message-Id: <20220114162409.334437-23-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/pci/rte_pci.c | 15 +-------------- lib/pci/rte_pci.h | 2 -- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/lib/pci/rte_pci.c b/lib/pci/rte_pci.c index c91be8b167..355772ff56 100644 --- a/lib/pci/rte_pci.c +++ b/lib/pci/rte_pci.c @@ -3,23 +3,10 @@ * Copyright 2013-2014 6WIND S.A. */ -#include -#include #include #include #include -#include - -#include -#include -#include -#include -#include -#include -#include -#include -#include -#include + #include #include "rte_pci.h" diff --git a/lib/pci/rte_pci.h b/lib/pci/rte_pci.h index 71cbd441c7..a096946260 100644 --- a/lib/pci/rte_pci.h +++ b/lib/pci/rte_pci.h @@ -17,9 +17,7 @@ extern "C" { #endif #include -#include #include -#include /* * Conventional PCI and PCI-X Mode 1 devices have 256 bytes of From patchwork Fri Jan 14 16:23:39 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105838 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 31F32A00C3; Fri, 14 Jan 2022 17:29:12 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 084B8427E1; Fri, 14 Jan 2022 17:27:27 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id F3B58427EE for ; Fri, 14 Jan 2022 17:27:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177646; x=1673713646; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=550ljhVlbQblPCB5CYHexqerWPnSDdajSYhG1wHQrxo=; b=At3Q47hfYEWqUkfWvPds5kUeh7FZEXDNA7xqcrvaVt2D4CQoGrOBAmjl s2pVUSU1G21fcsdBAko7dQ3dTMI592Q5mf0r5aAHf5BJMnZO8ZPT1CbgG ZzDqpKaI2g0Z/+3M3MgXyoUyN6r31Vr9ZYfD8voXYsTYmcWS7dVoJkc/u KKJUEXX7RDl4vgBvX6Tr2OST05sphY8OPLQ99WmpkSQNWA4ZDGxo3UcfI 6linIvWsCOVjqWrh/X4c/R02FPRTfoXfpm9MxaIGvsFZglcwcl+Xv3bii PCZHOpAaj+hlpXOx+oD1TVPGsEV1LtPyARby++QrcpLdMRkUfvFY+4Nfv Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642715" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642715" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:25 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523562" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:24 -0800 From: Sean Morrissey To: Reshma Pattan , Stephen Hemminger Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 23/53] pcapng: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:39 +0000 Message-Id: <20220114162409.334437-24-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/pcapng/rte_pcapng.c | 1 - lib/pcapng/rte_pcapng.h | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/pcapng/rte_pcapng.c b/lib/pcapng/rte_pcapng.c index 03edabe73e..5ae96a5bc9 100644 --- a/lib/pcapng/rte_pcapng.c +++ b/lib/pcapng/rte_pcapng.c @@ -8,7 +8,6 @@ #include #include #include -#include #include #include diff --git a/lib/pcapng/rte_pcapng.h b/lib/pcapng/rte_pcapng.h index 8d3fbb1941..7d2697c647 100644 --- a/lib/pcapng/rte_pcapng.h +++ b/lib/pcapng/rte_pcapng.h @@ -26,9 +26,7 @@ #include #include #include -#include #include -#include #ifdef __cplusplus extern "C" { From patchwork Fri Jan 14 16:23:40 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105839 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 7ED9EA00C3; Fri, 14 Jan 2022 17:29:17 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 04A0B427E6; Fri, 14 Jan 2022 17:27:30 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id A1778427F4 for ; Fri, 14 Jan 2022 17:27:27 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177647; x=1673713647; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZrW064G68NxYOzRJTEvAj3Q+sQxqzp8prYZi3RBmlI0=; b=kHJRtrcDaOTzxBbq+sh4icerw7VebZ8xpuB7qHk2pYiuDCO/QkyOgZh8 GiY3jA7CSLRC1GHY0z0UquCcclLodq0vmYgJ5rw4aLMBIAbvvUB2pMHi2 9PUjeJ5HuMIzE4ehwDqnkqY7cjZwQelyhsAyUeWOUxOya9Di5tnqqNVMa G2QL+1R0fP+Vck9qtTnYiVjTwbRq0JGJ7IR7VjRt6mRXTawNTV+ZO+qOM 8FWjRDH+okNYhaIqyTxMhvC9Tlry737YpCyvAFGmVvyZRm21lNKulW0Jp fNKuWEm50SjghJZcbuT2bWDEsKgyujE+EH4PN29knjF5gmYyu9h3CWQRD A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642723" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642723" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523571" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:25 -0800 From: Sean Morrissey To: Nithin Dabilpuram , Pavan Nikhilesh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 24/53] node: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:40 +0000 Message-Id: <20220114162409.334437-25-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/node/ethdev_ctrl.c | 2 -- lib/node/ethdev_rx.c | 1 - lib/node/ethdev_tx.c | 1 - lib/node/ip4_lookup.c | 5 ----- lib/node/ip4_rewrite.c | 4 ---- lib/node/pkt_cls.c | 4 ---- lib/node/pkt_drop.c | 1 - 7 files changed, 18 deletions(-) diff --git a/lib/node/ethdev_ctrl.c b/lib/node/ethdev_ctrl.c index 13b8b705f0..5294607619 100644 --- a/lib/node/ethdev_ctrl.c +++ b/lib/node/ethdev_ctrl.c @@ -2,9 +2,7 @@ * Copyright(C) 2020 Marvell International Ltd. */ -#include #include -#include #include #include "rte_node_eth_api.h" diff --git a/lib/node/ethdev_rx.c b/lib/node/ethdev_rx.c index 4c23961505..a19237b42f 100644 --- a/lib/node/ethdev_rx.c +++ b/lib/node/ethdev_rx.c @@ -7,7 +7,6 @@ #include #include #include -#include #include "ethdev_rx_priv.h" #include "node_private.h" diff --git a/lib/node/ethdev_tx.c b/lib/node/ethdev_tx.c index 075149089f..7d2d72f823 100644 --- a/lib/node/ethdev_tx.c +++ b/lib/node/ethdev_tx.c @@ -6,7 +6,6 @@ #include #include #include -#include #include "ethdev_tx_priv.h" diff --git a/lib/node/ip4_lookup.c b/lib/node/ip4_lookup.c index d083a725fc..8bce03d7db 100644 --- a/lib/node/ip4_lookup.c +++ b/lib/node/ip4_lookup.c @@ -5,17 +5,12 @@ #include #include -#include #include #include #include #include #include #include -#include -#include -#include -#include #include "rte_node_ip4_api.h" diff --git a/lib/node/ip4_rewrite.c b/lib/node/ip4_rewrite.c index 99ecb457ff..34a920df5e 100644 --- a/lib/node/ip4_rewrite.c +++ b/lib/node/ip4_rewrite.c @@ -2,16 +2,12 @@ * Copyright(C) 2020 Marvell International Ltd. */ -#include #include #include #include #include #include #include -#include -#include -#include #include #include "rte_node_ip4_api.h" diff --git a/lib/node/pkt_cls.c b/lib/node/pkt_cls.c index b95454dd72..3e75f2cf78 100644 --- a/lib/node/pkt_cls.c +++ b/lib/node/pkt_cls.c @@ -2,10 +2,6 @@ * Copyright (C) 2020 Marvell. */ -#include -#include -#include -#include #include #include diff --git a/lib/node/pkt_drop.c b/lib/node/pkt_drop.c index c350013236..1ad7fccd28 100644 --- a/lib/node/pkt_drop.c +++ b/lib/node/pkt_drop.c @@ -2,7 +2,6 @@ * Copyright(C) 2020 Marvell International Ltd. */ -#include #include #include From patchwork Fri Jan 14 16:23: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: 105840 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 AE086A00C3; Fri, 14 Jan 2022 17:29:22 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 052B8427F6; Fri, 14 Jan 2022 17:27:33 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 6A481427F6 for ; Fri, 14 Jan 2022 17:27:30 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177650; x=1673713650; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vHlQ64uz3Dgb1mKLToNRi7Pf8WCv4Cnh+ovSEE/ksgo=; b=SWD+8PXe/QUZq8mlZ/KFjR8AbPBJON04hVxfs8yqfXbvLKd1b/ZixqEZ 9cxN4EFCR094iIIu0KMRVO5SIGIP/9r4FxYMWp7/76YG+QbLEAxvLwZw5 ychRUVxZzuOSHJK3yEFQWFhcaHhG6bV0sHfJtXKSsK+QvmPQbddxg4Rgy VSNactYS5hcgTXRoSizgrLUe/eS9jAalV/1Yy2F6/YoeCGsVxaUR4jikY OPWzWM6Q3WMdqZi3depfr2qV3PxA3Mh29D2eCtyY+YVi6TujsETYtc1Ab PfW6H7YFBQeyMosm+xFLuyKlWN6Vgf73a13kY9WqKhPvPVcaAWZ5eymUO g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642730" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642730" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523580" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:27 -0800 From: Sean Morrissey To: Jasvinder Singh , Bruce Richardson , Konstantin Ananyev , Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 25/53] net: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:41 +0000 Message-Id: <20220114162409.334437-26-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/net_crc_avx512.c | 3 --- lib/net/net_crc_sse.c | 1 - lib/net/rte_arp.c | 1 - lib/net/rte_ether.h | 1 - lib/net/rte_net.h | 1 - lib/net/rte_net_crc.c | 2 -- 6 files changed, 9 deletions(-) diff --git a/lib/net/net_crc_avx512.c b/lib/net/net_crc_avx512.c index 3740fe3c9d..f6a3ce9bcd 100644 --- a/lib/net/net_crc_avx512.c +++ b/lib/net/net_crc_avx512.c @@ -2,11 +2,8 @@ * Copyright(c) 2020 Intel Corporation */ -#include #include -#include -#include #include "net_crc.h" diff --git a/lib/net/net_crc_sse.c b/lib/net/net_crc_sse.c index 053b54b390..dd75845636 100644 --- a/lib/net/net_crc_sse.c +++ b/lib/net/net_crc_sse.c @@ -6,7 +6,6 @@ #include #include -#include #include "net_crc.h" diff --git a/lib/net/rte_arp.c b/lib/net/rte_arp.c index 9f7eb6b375..22af519586 100644 --- a/lib/net/rte_arp.c +++ b/lib/net/rte_arp.c @@ -3,7 +3,6 @@ */ #include -#include #define RARP_PKT_SIZE 64 struct rte_mbuf * diff --git a/lib/net/rte_ether.h b/lib/net/rte_ether.h index 3d9852d9e2..bf8a55ba06 100644 --- a/lib/net/rte_ether.h +++ b/lib/net/rte_ether.h @@ -18,7 +18,6 @@ extern "C" { #include #include -#include #include #include #include diff --git a/lib/net/rte_net.h b/lib/net/rte_net.h index 53a7f4d360..56611fc8f9 100644 --- a/lib/net/rte_net.h +++ b/lib/net/rte_net.h @@ -12,7 +12,6 @@ extern "C" { #include #include #include -#include /** * Structure containing header lengths associated to a packet, filled diff --git a/lib/net/rte_net_crc.c b/lib/net/rte_net_crc.c index d9a526ab7b..a685f9e7bb 100644 --- a/lib/net/rte_net_crc.c +++ b/lib/net/rte_net_crc.c @@ -3,13 +3,11 @@ */ #include -#include #include #include #include #include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105841 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 24F25A00C3; Fri, 14 Jan 2022 17:29:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 09998427F1; Fri, 14 Jan 2022 17:27:34 +0100 (CET) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 030F2427F9 for ; Fri, 14 Jan 2022 17:27:30 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177651; x=1673713651; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KYIoP8W6bKrVbI8V0gOlcjN4k9F2lpkQPt5t6EqpGYU=; b=hkoTwy8ejI22+m1jYjmE02itkCjSJ1yXgwU3gxPQL4GmqnC9H2iksQeK XxxJEXtYgjtChS8IxVQPTHGvBczu0ytbbTojPH0iQ5QJ2UEr7W8SDuPk3 s3MR0bQ3Xz8rAmqj+3p7o9pwLy865ki/A00oZtxwavvdBIaLMg0Kykca7 WV/SAlYFUYtWxCRkRoBU7IMuv5YUgMw8Ki3xTYqcfX3IwgkMBAudWuEy7 JNWogMeNjsXiR49UqwlojR82q6E0zuZFucCTpEJOBxp5gVvvLLVfWXfDv flt6ZN13NhXmxBLmWSD0ixl/wJL96NjrpI2p/gCP/x0RQOnmbfPhLe8lr g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="268642732" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="268642732" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:30 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523588" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:29 -0800 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 26/53] metrics: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:42 +0000 Message-Id: <20220114162409.334437-27-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/metrics/rte_metrics.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/metrics/rte_metrics.c b/lib/metrics/rte_metrics.c index e2a0fbeda8..0c7878e65f 100644 --- a/lib/metrics/rte_metrics.c +++ b/lib/metrics/rte_metrics.c @@ -3,13 +3,10 @@ */ #include -#include #include #include -#include #include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105842 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 6E465A00C3; Fri, 14 Jan 2022 17:29:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 00419427FE; Fri, 14 Jan 2022 17:27:35 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 7B088427EC for ; Fri, 14 Jan 2022 17:27:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177652; x=1673713652; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=5nYrCTy+lMMYB4vECTlaMQnwvxIeENPvuBLz5MGZejQ=; b=Rzq3xCK91BwfmFppuXk7eCgfHXq6d0TGuEwAD4XhAwUQPvGhrqCKriBE NJVHiO9h5cd6Hcds7EuMFoCUGXroGqhSXBj6wo7Qdu1grGWr/0prAH6nE Llwib/FxFEy1UOu594yatRJA9WKc+H0g8uy2o8SWlI1SjeBDKRYzES/nT rvMZ0PY+O9aIuZfryW8YQz6+biiznw8i05GHpOzJSFx4eCqAl+Lrnz/Ik XMdr8B3EZOoHM3qHUTChHCs89n7H8W09DzuTpWJfIzb0PKYpui1QvwmOy pQ4Mu+1SF0INDaviJQtx9/l8RmNpqiySTW0AjJrnIgNwetnRd8nP2QLJp A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838825" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838825" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523598" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:30 -0800 From: Sean Morrissey To: Olivier Matz , Andrew Rybchenko Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 27/53] mempool: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:43 +0000 Message-Id: <20220114162409.334437-28-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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.c | 7 ------- lib/mempool/rte_mempool.h | 4 ---- 2 files changed, 11 deletions(-) diff --git a/lib/mempool/rte_mempool.c b/lib/mempool/rte_mempool.c index c5a699b1d6..de59009baf 100644 --- a/lib/mempool/rte_mempool.c +++ b/lib/mempool/rte_mempool.c @@ -7,7 +7,6 @@ #include #include #include -#include #include #include #include @@ -19,16 +18,10 @@ #include #include #include -#include -#include #include #include -#include -#include -#include #include #include -#include #include #include #include diff --git a/lib/mempool/rte_mempool.h b/lib/mempool/rte_mempool.h index 1e7a3c1527..5f9f9ead9b 100644 --- a/lib/mempool/rte_mempool.h +++ b/lib/mempool/rte_mempool.h @@ -34,17 +34,13 @@ */ #include -#include #include -#include #include #include #include -#include #include #include -#include #include #include #include From patchwork Fri Jan 14 16:23: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: 105843 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 9ED65A00C3; Fri, 14 Jan 2022 17:29:40 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5580542808; Fri, 14 Jan 2022 17:27:36 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 459E741186 for ; Fri, 14 Jan 2022 17:27:33 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177653; x=1673713653; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=MU/REjD7QD1HrjqUZ6oqJjoOAWK4aPeQcd81LisMSuU=; b=DMTwjVHtmwKAh05iLDQnx0NsdcktVAFsvpxfwCVQOj+YQarK4dm7Gad4 Rq7PttJ8Iphm5CRf5sUJ22Dtvcz0NTZ/NMNU62lwEEGLh6v5rZmxmBLBA 5R1sGXQ/AA/jRnLOr8q8T+pOKoBuCzMHFTuxTB/xyrond1hag52oCsi0g oVtjZP7bdvIYV0puIzsdcX3v3ZOvEMrIV1eA7NUV1jRWu12ofLAVjmlaV DKXgcD4E6sSBK5+nB/i7ARAKhqwV0PFN2pY71BkBj/QUevG63bhyJNBHo NxffJtfNS1PIU+kOPBkhX5FVIkw+EzjKUVuughCqpMpekruyWoXtgRIu2 w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838831" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838831" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523608" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:31 -0800 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 28/53] member: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:44 +0000 Message-Id: <20220114162409.334437-29-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/member/rte_member.c | 2 -- lib/member/rte_member.h | 1 - lib/member/rte_member_vbf.c | 1 - 3 files changed, 4 deletions(-) diff --git a/lib/member/rte_member.c b/lib/member/rte_member.c index 9dd55a5adf..7e1632e6b5 100644 --- a/lib/member/rte_member.c +++ b/lib/member/rte_member.c @@ -5,9 +5,7 @@ #include #include -#include #include -#include #include #include #include diff --git a/lib/member/rte_member.h b/lib/member/rte_member.h index c0689e233e..567ee0c84b 100644 --- a/lib/member/rte_member.h +++ b/lib/member/rte_member.h @@ -52,7 +52,6 @@ extern "C" { #include #include -#include /** The set ID type that stored internally in hash table based set summary. */ typedef uint16_t member_set_t; diff --git a/lib/member/rte_member_vbf.c b/lib/member/rte_member_vbf.c index 8a232bae02..9df4620cff 100644 --- a/lib/member/rte_member_vbf.c +++ b/lib/member/rte_member_vbf.c @@ -6,7 +6,6 @@ #include #include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105844 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 31D4CA00C3; Fri, 14 Jan 2022 17:29:46 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5D7CF4280D; Fri, 14 Jan 2022 17:27:38 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id EA7EA427FC for ; Fri, 14 Jan 2022 17:27:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177655; x=1673713655; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=y+DE9r6OXVcOknqpQgg1o9Sf5KW0Q+PMkFmO+UW4sH8=; b=RtnghnAJuZ6vsF1ijMto+/BU+WkpcStBkp+IF7uKKFkC0+ankVovP9AD slf5cg1XVTCSB46zYfR3TI4DqjdUBAeu3hGlIsDXM+lkxqnQegll1JwYj M8Xb9A3cj3gbNgVFdoWZw3/ZyTqaA4GxtScZZuJWl8UfWREREvsYhBqcA emH+TR3bL4MJrP7TXIQdLFTwTiH8GpDpScmUgJ4WjqAG6KWvRI0UpSHAn T7u/rfruhMJAEllWhdI5d9cPBXPQdim9j60w5GDg/RSRbJrPDbiob2iU6 PFhGtzCppYHXVtCHs76gzicJA2Ce/fcrzJIepr1WhdBscHlyxksfcatls A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838836" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838836" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523614" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:33 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 29/53] mbuf: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:45 +0000 Message-Id: <20220114162409.334437-30-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/mbuf/rte_mbuf.c | 11 ----------- lib/mbuf/rte_mbuf.h | 2 -- lib/mbuf/rte_mbuf_dyn.h | 2 -- lib/mbuf/rte_mbuf_pool_ops.c | 1 - lib/mbuf/rte_mbuf_pool_ops.h | 1 - 5 files changed, 17 deletions(-) diff --git a/lib/mbuf/rte_mbuf.c b/lib/mbuf/rte_mbuf.c index 604d77bbda..87592faccb 100644 --- a/lib/mbuf/rte_mbuf.c +++ b/lib/mbuf/rte_mbuf.c @@ -5,28 +5,17 @@ #include #include -#include #include -#include #include #include -#include -#include -#include #include #include #include -#include -#include -#include -#include -#include #include #include #include #include -#include #include #include #include diff --git a/lib/mbuf/rte_mbuf.h b/lib/mbuf/rte_mbuf.h index dedf83c38d..9811e8c760 100644 --- a/lib/mbuf/rte_mbuf.h +++ b/lib/mbuf/rte_mbuf.h @@ -36,10 +36,8 @@ #include #include #include -#include #include #include -#include #include #include diff --git a/lib/mbuf/rte_mbuf_dyn.h b/lib/mbuf/rte_mbuf_dyn.h index 29abe8da53..ed8e57b350 100644 --- a/lib/mbuf/rte_mbuf_dyn.h +++ b/lib/mbuf/rte_mbuf_dyn.h @@ -68,9 +68,7 @@ #include #include -#include -#include #ifdef __cplusplus extern "C" { diff --git a/lib/mbuf/rte_mbuf_pool_ops.c b/lib/mbuf/rte_mbuf_pool_ops.c index f0e87a1412..4c91f4ce85 100644 --- a/lib/mbuf/rte_mbuf_pool_ops.c +++ b/lib/mbuf/rte_mbuf_pool_ops.c @@ -3,7 +3,6 @@ */ #include -#include #include #include #include diff --git a/lib/mbuf/rte_mbuf_pool_ops.h b/lib/mbuf/rte_mbuf_pool_ops.h index 7ed95a49a4..00cddb83ba 100644 --- a/lib/mbuf/rte_mbuf_pool_ops.h +++ b/lib/mbuf/rte_mbuf_pool_ops.h @@ -14,7 +14,6 @@ * the best mempool ops available. */ -#include #ifdef __cplusplus extern "C" { From patchwork Fri Jan 14 16:23: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: 105845 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 7CACBA00C3; Fri, 14 Jan 2022 17:29:51 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 40A6342810; Fri, 14 Jan 2022 17:27:39 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id DB2AC427FC for ; Fri, 14 Jan 2022 17:27:35 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177656; x=1673713656; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZU/fWrSJ9Sly2GpqY+l+YVjU2sUVtRoeqVwHXFKvJlU=; b=ISAJiV28P5DwJNBkajJP63nLaBDEE41rhnKmcP2b+BMo6TaZyt+n/Ar2 x6pMTn9/h3HWgwrGBs6FmDt4rBv/6s/GPvDC3aG3i5axqMwOFkOx7+571 V0e5LH1pawOp7aGSeD+x70qg/2YBjvp9FO+gubc7T+MM+QA7tlt3X51rR LVehQa/cdnI7n00bwDsnn0ExbYCUTvX5HlPphNWtihgq1NOjIB2IyWgVc c/WqcwqqlcsaWkzwbhTHM1pR0r9nxvgyYmSIpCSnPEMs2nryagQlh/tLz Nhna6hEbTDRdFUxb7zMoG6cwyAJovNGgCksujEPfpZJ56zjytYIW8tb8P A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838841" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838841" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523618" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:34 -0800 From: Sean Morrissey To: Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 30/53] lpm: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:46 +0000 Message-Id: <20220114162409.334437-31-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/lpm/rte_lpm.c | 7 ------- lib/lpm/rte_lpm.h | 4 ---- lib/lpm/rte_lpm6.c | 7 ------- lib/lpm/rte_lpm6.h | 1 - 4 files changed, 19 deletions(-) diff --git a/lib/lpm/rte_lpm.c b/lib/lpm/rte_lpm.c index 002811f4de..cdcd1b7f9e 100644 --- a/lib/lpm/rte_lpm.c +++ b/lib/lpm/rte_lpm.c @@ -6,22 +6,15 @@ #include #include #include -#include #include #include #include -#include #include -#include /* for definition of RTE_CACHE_LINE_SIZE */ #include -#include #include -#include #include #include -#include -#include #include #include "rte_lpm.h" diff --git a/lib/lpm/rte_lpm.h b/lib/lpm/rte_lpm.h index 5eb14c1748..eb91960e81 100644 --- a/lib/lpm/rte_lpm.h +++ b/lib/lpm/rte_lpm.h @@ -12,13 +12,9 @@ */ #include -#include #include -#include #include #include -#include -#include #include #include #include diff --git a/lib/lpm/rte_lpm6.c b/lib/lpm/rte_lpm6.c index 73768fc956..8d21aeddb8 100644 --- a/lib/lpm/rte_lpm6.c +++ b/lib/lpm/rte_lpm6.c @@ -4,23 +4,16 @@ #include #include #include -#include #include #include #include -#include #include -#include #include #include -#include #include -#include #include #include -#include -#include #include #include #include diff --git a/lib/lpm/rte_lpm6.h b/lib/lpm/rte_lpm6.h index f96f3372e5..9b07260d5a 100644 --- a/lib/lpm/rte_lpm6.h +++ b/lib/lpm/rte_lpm6.h @@ -10,7 +10,6 @@ */ #include -#include #ifdef __cplusplus extern "C" { From patchwork Fri Jan 14 16:23: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: 105846 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 F3E4FA00C3; Fri, 14 Jan 2022 17:29:55 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3A07F42816; Fri, 14 Jan 2022 17:27:40 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 1E3374277F for ; Fri, 14 Jan 2022 17:27:36 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177657; x=1673713657; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=anC25U6lCPtF3M+fedWTaRe18+D0LFk1yWV5TY5ByDU=; b=WK0xkkYk1WI5RqfiyHUBW4aLOp46EZ+A2krW3oqjAPmoDw5uU5GiFNzF l5noF0Wqsd3Q4YgYdFWj9E01jlCSfx9ImjgOy+db2SRU/a48AOm7l1XBw z26Y3ET1VmjsWKpkDNMr5O2o0sCO1vsFuyPJVmyqM0Eqk3anC2kmTxlE3 cQcrfz01INktHDaDgEybB19/52U7TxpIBFiJj85QTLptmDp9hKlmJ/zq+ A6QdRM/ny/7ypS2wwtaJhnjw5gBKSkJy+QbgBqKYaOMGkLMD9bYyXsA+5 2un+9yzxhubXZYGRQv3J/07nzmwDLo8OkJ609vNYDo3lOrUDtgXL8K9oo g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838848" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838848" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:36 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523628" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:35 -0800 From: Sean Morrissey To: Reshma Pattan Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 31/53] latencystats: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:47 +0000 Message-Id: <20220114162409.334437-32-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/latencystats/rte_latencystats.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/latencystats/rte_latencystats.c b/lib/latencystats/rte_latencystats.c index ab8db7a139..8985a377db 100644 --- a/lib/latencystats/rte_latencystats.c +++ b/lib/latencystats/rte_latencystats.c @@ -2,13 +2,9 @@ * Copyright(c) 2018 Intel Corporation */ -#include -#include -#include #include #include -#include #include #include #include From patchwork Fri Jan 14 16:23: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: 105847 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 98ABFA00C3; Fri, 14 Jan 2022 17:30:00 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 43A4A42809; Fri, 14 Jan 2022 17:27:41 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 8FEFB42813 for ; Fri, 14 Jan 2022 17:27:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177659; x=1673713659; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BCKqMh/uKoPYIwMVVq4fEIuWF9rBfmDDCV4MfZ25I7g=; b=LMB9qoSquBFAyTRGT5faEUS4LhM0WH4Zg7+zSm3P6UJbRX7RfcnQLxTg 47HkvK+lFW8hJYIq08pzxgaNrj1PZg26fB4gFUqxlCX697EwopHagqPFY Yu3ARnHCW9d4kn0KZPchnekFBfz8DW/N7meXv594l/cfU79TVheUzRlNg 5Y4Aq30VpvcXWQkdhd+hPNX4Asqpb1+tn6iUQAeJzz4F0dZeRbndz11AB vCB2uvyxhjtrInJlYJ8Ekecco1VD20J8GwSYILq57WhNyfkn05jKTwd97 h9Bm1wRY9xRMkzb9Wi/m6YuUpxZvTyIi1O4M4TxotgDife50XR01GbWBP g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838852" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838852" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:37 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523634" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:37 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 32/53] kvargs: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:48 +0000 Message-Id: <20220114162409.334437-33-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/kvargs/rte_kvargs.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/kvargs/rte_kvargs.c b/lib/kvargs/rte_kvargs.c index 7010d3ac51..9a59c500bf 100644 --- a/lib/kvargs/rte_kvargs.c +++ b/lib/kvargs/rte_kvargs.c @@ -7,7 +7,6 @@ #include #include -#include #include "rte_kvargs.h" From patchwork Fri Jan 14 16:23: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: 105848 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 220C7A00C3; Fri, 14 Jan 2022 17:30:05 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 42A0A4281D; Fri, 14 Jan 2022 17:27:42 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 5058F42818 for ; Fri, 14 Jan 2022 17:27:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177660; x=1673713660; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=pGdplYfecC+JqqjMimlHuyEnHK2NopXUrT877UPIQLQ=; b=T6Xf4h/HuJ3FlVj+VHrmLC6ty5Bwava2Z9yzvr8RErjg0jUK55tLlI2O AAJgX8FY2pqBxffMVmAIFKjSkvoYslIhhFzHxmc1PNKJOoK54ZgyOpS+n WipJuHZBcOMPT3tgaZy5zyuMtGnANwIiDq3eeUAEdZ8iMePjEN4FPEynN aJEC5BFsSEvD3e1SJS+fWgH7KaRacH8GfawSxqlOUia/m6XqG1Re8EMTh ABqiu+7FIB6wdxDh8mJdPi9fSQECBllvYSfxDEIiWJb/5ZXDNJPD+a/EZ ZZOAwuPGtpqfHY39hf78n+IB13piMh1tUdFimz57doT46UeXDlAFL3hpz w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838854" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838854" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523642" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:38 -0800 From: Sean Morrissey To: Ferruh Yigit Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 33/53] kni: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:49 +0000 Message-Id: <20220114162409.334437-34-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/kni/rte_kni.c | 2 -- lib/kni/rte_kni.h | 2 -- 2 files changed, 4 deletions(-) diff --git a/lib/kni/rte_kni.c b/lib/kni/rte_kni.c index fc8f0e7b5a..7971c56bb4 100644 --- a/lib/kni/rte_kni.c +++ b/lib/kni/rte_kni.c @@ -12,7 +12,6 @@ #include #include -#include #include #include #include @@ -20,7 +19,6 @@ #include #include #include -#include #include #include #include "rte_kni_fifo.h" diff --git a/lib/kni/rte_kni.h b/lib/kni/rte_kni.h index b0eaf46104..b85d3dd32b 100644 --- a/lib/kni/rte_kni.h +++ b/lib/kni/rte_kni.h @@ -18,8 +18,6 @@ */ #include -#include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105849 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 64B93A00C3; Fri, 14 Jan 2022 17:30:10 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3B4E142811; Fri, 14 Jan 2022 17:27:44 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id A85C242803 for ; Fri, 14 Jan 2022 17:27:40 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177663; x=1673713663; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=FELRGDbs0t6EK7C56kMNNVL1QBPrMpzknsnkhQIVnNY=; b=J2pdUOtDH9Lc/jo7Utkjjq4EFnJgSmWHpqWA/BzZDQSyyc49VMHiFtCT Qnx3xUE3FoxlJzyNFluCXxMb9KAjvEdGpPsVHaanh4Vu1Hyp1R5qt0JXi 0DX+BvhVBJ6/BETPpIcKNH+9kDgaopAeCZu67bEQkoK/W1QVXIn9odyJ7 fEOI6HKkfZRllY4yCShckwK4OvqxPOi6WD+xlvT3pjKJ+iDcqpVdXbe8F 6BGDJ1E7rew7a3/XCxoBRZ7xDHCWrrUxFhDY3wCPR4qHXf4Psh+ZmbBJK KPZ54Opcps9Tz2M40aKaS6VMVDTuol7CNzfy1i5/X93kA2GthOEDnj+J5 Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838865" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838865" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:40 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523653" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:39 -0800 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 34/53] jobstats: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:50 +0000 Message-Id: <20220114162409.334437-35-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/jobstats/rte_jobstats.c b/lib/jobstats/rte_jobstats.c index 9b8fde5d55..af565a14ea 100644 --- a/lib/jobstats/rte_jobstats.c +++ b/lib/jobstats/rte_jobstats.c @@ -7,10 +7,7 @@ #include #include -#include #include -#include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105850 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 E0106A00C4; Fri, 14 Jan 2022 17:30:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 345CB42799; Fri, 14 Jan 2022 17:27:49 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id 249C04278E for ; Fri, 14 Jan 2022 17:27:47 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177668; x=1673713668; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=zEiz47CG+vBIA4HwZ6Xk8p6JmWzuUDtRLy3kBBLVsVQ=; b=a+EwUCZotuwJE6BxkWYAMUk8Bpk4Vzlp71IUuH8O4nzepcEmof5Bh1La DXWniiRV2JJCsVCCceimEjwVoaTlwsJL2R9u/spkRGlN1IuGtIQbD0AtJ muZN9U55XKzDt3D3EmAEJASCYWzWcyooP1ZxlQg5+923QGfndMaZfN4xZ NaR3SXVmUpL4qbGZd0Qqana88lIimvuUc3ABUCfVPIiAnecw22751EA/f wzQc1pxLAamkFTkH46/QQp9bX1EFrFEAyhlmxLCLLe9WNF3R/wJocq7QH vd8+mPUoALWGAPCblaNh6yiGewrQ8HoPj9XU9jAbJA/yn0jj1xHnJCn+f Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="241838869" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="241838869" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523667" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:40 -0800 From: Sean Morrissey To: Konstantin Ananyev , Bernard Iremonger , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 35/53] ipsec: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:51 +0000 Message-Id: <20220114162409.334437-36-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/ipsec/esp_inb.c | 1 - lib/ipsec/esp_outb.c | 1 - lib/ipsec/ipsec_sad.c | 1 - lib/ipsec/sa.c | 3 --- lib/ipsec/sa.h | 1 - 5 files changed, 7 deletions(-) diff --git a/lib/ipsec/esp_inb.c b/lib/ipsec/esp_inb.c index 636c850fa6..f159bf7460 100644 --- a/lib/ipsec/esp_inb.c +++ b/lib/ipsec/esp_inb.c @@ -4,7 +4,6 @@ #include #include -#include #include #include diff --git a/lib/ipsec/esp_outb.c b/lib/ipsec/esp_outb.c index 672e56aba0..6925bb9945 100644 --- a/lib/ipsec/esp_outb.c +++ b/lib/ipsec/esp_outb.c @@ -4,7 +4,6 @@ #include #include -#include #include #include #include diff --git a/lib/ipsec/ipsec_sad.c b/lib/ipsec/ipsec_sad.c index 531e1e323c..6f3860e3f5 100644 --- a/lib/ipsec/ipsec_sad.c +++ b/lib/ipsec/ipsec_sad.c @@ -10,7 +10,6 @@ #include #include #include -#include #include #include "rte_ipsec_sad.h" diff --git a/lib/ipsec/sa.c b/lib/ipsec/sa.c index cdb70af0cb..1b673b6a18 100644 --- a/lib/ipsec/sa.c +++ b/lib/ipsec/sa.c @@ -7,14 +7,11 @@ #include #include #include -#include #include "sa.h" #include "ipsec_sqn.h" #include "crypto.h" -#include "iph.h" #include "misc.h" -#include "pad.h" #define MBUF_MAX_L2_LEN RTE_LEN2MASK(RTE_MBUF_L2_LEN_BITS, uint64_t) #define MBUF_MAX_L3_LEN RTE_LEN2MASK(RTE_MBUF_L3_LEN_BITS, uint64_t) diff --git a/lib/ipsec/sa.h b/lib/ipsec/sa.h index 7503587b50..46f9a4df5b 100644 --- a/lib/ipsec/sa.h +++ b/lib/ipsec/sa.h @@ -5,7 +5,6 @@ #ifndef _SA_H_ #define _SA_H_ -#include #define IPSEC_MAX_HDR_SIZE 64 #define IPSEC_MAX_IV_SIZE 16 From patchwork Fri Jan 14 16:23: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: 105859 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 E766CA00C3; Fri, 14 Jan 2022 17:31:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9216D42844; Fri, 14 Jan 2022 17:28:00 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 49BE842844 for ; Fri, 14 Jan 2022 17:27:57 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177678; x=1673713678; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=oFtCIY9g6Hsg2q6+a7A5v0IICJ44O3S20oISZ5/MgMg=; b=fqlGZ1MVSX59FD+Gvj6OSt7b3FHP03AT3rYhTJTKXQIEb9uvOborzFPM fw8vQwDym0pCky9TKlFSNVLD0iBRW0KNPg96mR4g29F6NhIMBgGXo50NL gmuWxeVFrl1xBeKiYr8AlUCpyJ5FUT1QCb3/kcHEqMy0AuyCM/caS0BC4 ke3A5Jb07v8HC5n1lIDqc69Lx3PK6pUUTQE+q0+wsQEPTlGr2F4rk7rJh ARNjtcK1vXQQhfbLyzPaafBbPcZ4LPuXatfr+Fhm0HA2gu0S+tYUNZv41 zO804iu0+fpcF33g7JgbNngSC1xpcSzP7r2fgG2PuwZiqZ/ZPtWWTbgSP w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="244072210" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="244072210" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523672" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:42 -0800 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 36/53] ip_frag: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:52 +0000 Message-Id: <20220114162409.334437-37-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/rte_ip_frag_common.c | 1 - lib/ip_frag/rte_ipv4_fragmentation.c | 2 -- 2 files changed, 3 deletions(-) diff --git a/lib/ip_frag/rte_ip_frag_common.c b/lib/ip_frag/rte_ip_frag_common.c index 2c781a6d33..c1de2e81b6 100644 --- a/lib/ip_frag/rte_ip_frag_common.c +++ b/lib/ip_frag/rte_ip_frag_common.c @@ -5,7 +5,6 @@ #include #include -#include #include #include "ip_frag_common.h" diff --git a/lib/ip_frag/rte_ipv4_fragmentation.c b/lib/ip_frag/rte_ipv4_fragmentation.c index 2e7739d027..669682a0cf 100644 --- a/lib/ip_frag/rte_ipv4_fragmentation.c +++ b/lib/ip_frag/rte_ipv4_fragmentation.c @@ -6,8 +6,6 @@ #include #include -#include -#include #include #include "ip_frag_common.h" From patchwork Fri Jan 14 16:23: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: 105860 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 597EAA00C3; Fri, 14 Jan 2022 17:31:09 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E82A142857; Fri, 14 Jan 2022 17:28:01 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id E02A142843 for ; Fri, 14 Jan 2022 17:27:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177679; x=1673713679; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BvTTtictC4X23XZOZ/TZi3Rrp6NCD08P285Eo++1DvU=; b=PB1zpTRbEMDuPSdDKun03RcuCdv2b1NrTCwqVByVjrV726B9schxsZam WoiwgJrhI9uBtBkIHqxUw3d5OgcyDcH+0ZmGgdH1yTecpp22oMBKrvtPJ hEqcxOd1xBwtNJ9t/ONXtTRGuPz78pdsZbHkKIoNt1xL/canRDjt1Sw2R mpI8RFEytu1HRhj+agPqqp3FESPTZO5uueQlJoAVI/IClP8/vQQcdaS0Q YJaJ3vLD10XNy/bU81eEkYSlNs88i714euzl1QjgrUw4HGf+wLZL4wme+ WbEgkfOt1/S4jhT7JV+HCil7vQvIlakPxBCeQbnngwk2/XSdNjtrzvmaG w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="244072217" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="244072217" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523676" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:43 -0800 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 37/53] hash: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:53 +0000 Message-Id: <20220114162409.334437-38-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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 | 4 ---- lib/hash/rte_fbk_hash.c | 6 ------ lib/hash/rte_fbk_hash.h | 1 - lib/hash/rte_thash.c | 1 - lib/hash/rte_thash.h | 1 - 5 files changed, 13 deletions(-) diff --git a/lib/hash/rte_cuckoo_hash.c b/lib/hash/rte_cuckoo_hash.c index 1191dfd81a..490f94af4b 100644 --- a/lib/hash/rte_cuckoo_hash.c +++ b/lib/hash/rte_cuckoo_hash.c @@ -7,7 +7,6 @@ #include #include #include -#include #include #include @@ -16,14 +15,11 @@ #include #include #include -#include #include -#include #include #include #include #include -#include #include #include #include diff --git a/lib/hash/rte_fbk_hash.c b/lib/hash/rte_fbk_hash.c index 576e8e6662..538b23a403 100644 --- a/lib/hash/rte_fbk_hash.c +++ b/lib/hash/rte_fbk_hash.c @@ -4,22 +4,16 @@ #include #include -#include #include #include #include -#include -#include #include #include #include -#include #include #include -#include #include -#include #include #include "rte_fbk_hash.h" diff --git a/lib/hash/rte_fbk_hash.h b/lib/hash/rte_fbk_hash.h index 9c3a61c1d6..b01126999b 100644 --- a/lib/hash/rte_fbk_hash.h +++ b/lib/hash/rte_fbk_hash.h @@ -24,7 +24,6 @@ extern "C" { #include -#include #include #include diff --git a/lib/hash/rte_thash.c b/lib/hash/rte_thash.c index 6847e36f4b..0249883b8d 100644 --- a/lib/hash/rte_thash.c +++ b/lib/hash/rte_thash.c @@ -9,7 +9,6 @@ #include #include #include -#include #include #include #include diff --git a/lib/hash/rte_thash.h b/lib/hash/rte_thash.h index c11ca0d5b8..451f64043a 100644 --- a/lib/hash/rte_thash.h +++ b/lib/hash/rte_thash.h @@ -21,7 +21,6 @@ extern "C" { #include #include -#include #include #include #include From patchwork Fri Jan 14 16:23: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: 105862 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 F059EA00C3; Fri, 14 Jan 2022 17:31:19 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DCC0642858; Fri, 14 Jan 2022 17:28:03 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by mails.dpdk.org (Postfix) with ESMTP id 835114284B for ; Fri, 14 Jan 2022 17:27:59 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177679; x=1673713679; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XP47NBmybwv8nHxfUrQkJi+EXHwHs9W7YkoCGL3jIw0=; b=hA6Inybn+ugobnIGtm/D4pDpF9ygXI1hmAjxLu8vW7vqpDwwbPsza4di hUojJmolyJOq+1i0N1I4wCUxbB2R+8KV4gZyPbXmkBZRs8j39Ty3GM5hL 4IlDdQ4QcGjniC3oYIRGoG1BEBf4J+4EjJ2eeFeOvrUiowd3dggxYJ/A5 lK0VkLvywAJgLCHVCk/KmTy7zpbXlAw1JZlE8u7pRvwsFfs0l/+QWjXID 1Fe9rBnXcyZwADHGL4JVOhksoju/1ZRTOEyvXMYU4K+5K2uN6j87y7EJI hqViAuHiF3vdx8r2YfcJZ1bPBhQF3cXWRatvk3bhRqbIYRihJKjaFaXDO g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="244072219" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="244072219" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:46 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523689" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:45 -0800 From: Sean Morrissey To: Jiayu Hu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 38/53] gro: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:54 +0000 Message-Id: <20220114162409.334437-39-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/gro/gro_tcp4.c | 1 - lib/gro/gro_tcp4.h | 2 -- lib/gro/gro_udp4.c | 1 - lib/gro/gro_udp4.h | 2 -- lib/gro/gro_vxlan_tcp4.c | 1 - lib/gro/gro_vxlan_udp4.c | 1 - lib/gro/rte_gro.c | 1 - 7 files changed, 9 deletions(-) diff --git a/lib/gro/gro_tcp4.c b/lib/gro/gro_tcp4.c index aff22178e3..7498c66141 100644 --- a/lib/gro/gro_tcp4.c +++ b/lib/gro/gro_tcp4.c @@ -4,7 +4,6 @@ #include #include -#include #include #include "gro_tcp4.h" diff --git a/lib/gro/gro_tcp4.h b/lib/gro/gro_tcp4.h index bb875a5ef0..212f97a042 100644 --- a/lib/gro/gro_tcp4.h +++ b/lib/gro/gro_tcp4.h @@ -5,9 +5,7 @@ #ifndef _GRO_TCP4_H_ #define _GRO_TCP4_H_ -#include #include -#include #define INVALID_ARRAY_INDEX 0xffffffffUL #define GRO_TCP4_TBL_MAX_ITEM_NUM (1024UL * 1024UL) diff --git a/lib/gro/gro_udp4.c b/lib/gro/gro_udp4.c index e78dda7874..dd71135ada 100644 --- a/lib/gro/gro_udp4.c +++ b/lib/gro/gro_udp4.c @@ -4,7 +4,6 @@ #include #include -#include #include #include "gro_udp4.h" diff --git a/lib/gro/gro_udp4.h b/lib/gro/gro_udp4.h index d38b393f79..6467d7bc3b 100644 --- a/lib/gro/gro_udp4.h +++ b/lib/gro/gro_udp4.h @@ -6,8 +6,6 @@ #define _GRO_UDP4_H_ #include -#include -#include #define INVALID_ARRAY_INDEX 0xffffffffUL #define GRO_UDP4_TBL_MAX_ITEM_NUM (1024UL * 1024UL) diff --git a/lib/gro/gro_vxlan_tcp4.c b/lib/gro/gro_vxlan_tcp4.c index 2005899afe..3be4deb7c7 100644 --- a/lib/gro/gro_vxlan_tcp4.c +++ b/lib/gro/gro_vxlan_tcp4.c @@ -4,7 +4,6 @@ #include #include -#include #include #include diff --git a/lib/gro/gro_vxlan_udp4.c b/lib/gro/gro_vxlan_udp4.c index 4767c910bb..b78a7ae89e 100644 --- a/lib/gro/gro_vxlan_udp4.c +++ b/lib/gro/gro_vxlan_udp4.c @@ -4,7 +4,6 @@ #include #include -#include #include #include diff --git a/lib/gro/rte_gro.c b/lib/gro/rte_gro.c index 8ca4da67e9..6f7dd4d709 100644 --- a/lib/gro/rte_gro.c +++ b/lib/gro/rte_gro.c @@ -3,7 +3,6 @@ */ #include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105851 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 B57CFA00C3; Fri, 14 Jan 2022 17:30:22 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 763A64282A; Fri, 14 Jan 2022 17:27:50 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 906D242796 for ; Fri, 14 Jan 2022 17:27:48 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177668; x=1673713668; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=sJObvPCdUvZFNTWXaNQKH3ipjpgXCWWxP3KjfvB5v14=; b=Yq1LDdtPnLqRz6NG1qIc96WrFCj8yhAJNjPN8CO52qOi8JjZs8NxMAfE poqGsqVGUmHtyDv8VM69/zTD/NvyZL2M50QjVSvj7kiWmA/KaCXmxCbTW D6ET5uES8jKMvkFQJStcGL2gCsitQ5SphS8y1LUmSeKitaB920x4j7zgh oqCQnfk7Q44fRxSnIbtl4koCJ6eUDSd+0ezwXsbeYMlpJjXBGKzALteFT vTRpeZELeEOQPW81zIIfY43YGE6J3ezZWR5DyEdcaD45BHv2FppparXLL +yQSimVCga4gSLk3wp/zw1apnTV2YCeXGGKY5zHsKvck4ZVnGqgMsNPzc Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626669" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626669" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523699" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:46 -0800 From: Sean Morrissey To: Jerin Jacob , Kiran Kumar K , Nithin Dabilpuram Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 39/53] graph: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:55 +0000 Message-Id: <20220114162409.334437-40-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/graph/graph_debug.c | 2 -- lib/graph/graph_ops.c | 1 - lib/graph/graph_populate.c | 2 -- lib/graph/node.c | 1 - 4 files changed, 6 deletions(-) diff --git a/lib/graph/graph_debug.c b/lib/graph/graph_debug.c index f8aea16acb..b84412f5dd 100644 --- a/lib/graph/graph_debug.c +++ b/lib/graph/graph_debug.c @@ -2,8 +2,6 @@ * Copyright(C) 2020 Marvell International Ltd. */ -#include -#include #include "graph_private.h" diff --git a/lib/graph/graph_ops.c b/lib/graph/graph_ops.c index 3355953118..20db58d84e 100644 --- a/lib/graph/graph_ops.c +++ b/lib/graph/graph_ops.c @@ -5,7 +5,6 @@ #include #include -#include #include #include "graph_private.h" diff --git a/lib/graph/graph_populate.c b/lib/graph/graph_populate.c index 093512efab..102fd6c29b 100644 --- a/lib/graph/graph_populate.c +++ b/lib/graph/graph_populate.c @@ -2,8 +2,6 @@ * Copyright(C) 2020 Marvell International Ltd. */ -#include -#include #include #include diff --git a/lib/graph/node.c b/lib/graph/node.c index 86ec4316f9..79230035a2 100644 --- a/lib/graph/node.c +++ b/lib/graph/node.c @@ -8,7 +8,6 @@ #include #include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105852 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 254B0A00C3; Fri, 14 Jan 2022 17:30:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 71DBF42796; Fri, 14 Jan 2022 17:27:51 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 604F2427A0 for ; Fri, 14 Jan 2022 17:27:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177669; x=1673713669; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6ZZ8lL2Js078bNtfDdx24YHZf+MSdp/p2WnH8wfINsk=; b=PKCsxl9ebC2hdJDc4w/uZnjCq4URTJa6+I6yNOc+i9u4u1anytJrbnNl XpZeYIAbJKI2vzspGie3hUXl8IOzmDzXHA0OFhKbvKdFKGZ04stFX7jHB T35dXercWr9sX2u+qVQsGdK9oMZf9yVVt2JgdhdN1zrLQ5DCDnNlnpgk+ Pl829ZrJSwKyibHuNIbysEOaE+XMn65qmGhle31oeKgqA+ZYcdA0xaOSP wpVmc8gYX5GTos5Cy7DEWXT6Nk3oTiuZF2AOIez/FXudvV8YCUP+ufxHU X4vn30lD9H4oiPW5CLm4EEHN898jC2f9g+Iu8kXVbpq/TCPKMEQBDoSfN w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626678" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626678" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523703" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:48 -0800 From: Sean Morrissey To: Elena Agostini Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 40/53] gpudev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:56 +0000 Message-Id: <20220114162409.334437-41-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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 9ae36dbae9..98bb759fb2 100644 --- a/lib/gpudev/gpudev.c +++ b/lib/gpudev/gpudev.c @@ -4,7 +4,6 @@ #include #include -#include #include #include #include From patchwork Fri Jan 14 16:23: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: 105853 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 E8AB2A00C3; Fri, 14 Jan 2022 17:30:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 6A83742831; Fri, 14 Jan 2022 17:27:52 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 23B054282E for ; Fri, 14 Jan 2022 17:27:50 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177671; x=1673713671; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=++pfAzgNAHR9ygyv7/ck+Vc7pcygHB3IByZmmm5XKqw=; b=aBRrMM+U+umTcE4rRZ3ceRaz+9/L0L2tcvUM3C9sIcLIcvg7g3hdYdh+ C0eBx9Hw89Rt2jXaYbQv7ubxITxbMrYCnYvfc2NO+dDAyr6Jkq2lyu+Ix GTZx3/8VNNW2HQiXr8Eaf5DvNGrxwheWccmTX9JcLFaH1dG5QVebozUvC iI8OMWq0RDMwfZll8YXXeBpI0+fxBdsIdG/oK9vBzAvpU5RAKom5gXgGs O2UiHBaVyhj+V0cbadyv4F6VpAwx0Zg527sqhtLXOrfodZ6rTKB2tKzY+ X79JBwTa+aO3FmTzEt+fmJdMZHomBCbHrzc19jIjC00gdKSVoIyeYejOA A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626685" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626685" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523708" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:49 -0800 From: Sean Morrissey To: Bernard Iremonger Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 41/53] flow_classify: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:57 +0000 Message-Id: <20220114162409.334437-42-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/flow_classify/rte_flow_classify.c | 3 --- lib/flow_classify/rte_flow_classify.h | 4 ---- lib/flow_classify/rte_flow_classify_parse.c | 1 - lib/flow_classify/rte_flow_classify_parse.h | 1 - 4 files changed, 9 deletions(-) diff --git a/lib/flow_classify/rte_flow_classify.c b/lib/flow_classify/rte_flow_classify.c index d3ba2ed227..e3667306e5 100644 --- a/lib/flow_classify/rte_flow_classify.c +++ b/lib/flow_classify/rte_flow_classify.c @@ -3,12 +3,9 @@ */ #include -#include #include #include "rte_flow_classify_parse.h" -#include #include -#include static uint32_t unique_id = 1; diff --git a/lib/flow_classify/rte_flow_classify.h b/lib/flow_classify/rte_flow_classify.h index 82ea92b6a6..39512b6206 100644 --- a/lib/flow_classify/rte_flow_classify.h +++ b/lib/flow_classify/rte_flow_classify.h @@ -45,11 +45,7 @@ #include #include -#include -#include #include -#include -#include #ifdef __cplusplus extern "C" { diff --git a/lib/flow_classify/rte_flow_classify_parse.c b/lib/flow_classify/rte_flow_classify_parse.c index 465330291f..345d129d35 100644 --- a/lib/flow_classify/rte_flow_classify_parse.c +++ b/lib/flow_classify/rte_flow_classify_parse.c @@ -4,7 +4,6 @@ #include #include "rte_flow_classify_parse.h" -#include struct classify_valid_pattern { enum rte_flow_item_type *items; diff --git a/lib/flow_classify/rte_flow_classify_parse.h b/lib/flow_classify/rte_flow_classify_parse.h index 365a07bd6d..7943efc0d4 100644 --- a/lib/flow_classify/rte_flow_classify_parse.h +++ b/lib/flow_classify/rte_flow_classify_parse.h @@ -6,7 +6,6 @@ #define _RTE_FLOW_CLASSIFY_PARSE_H_ #include -#include #include #include From patchwork Fri Jan 14 16:23: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: 105854 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 D85B5A00C3; Fri, 14 Jan 2022 17:30:38 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 770D542835; Fri, 14 Jan 2022 17:27:53 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 2433E4281E for ; Fri, 14 Jan 2022 17:27:51 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177672; x=1673713672; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7N4aLqgbna4nRQeFy8OzdM7ZdC1VxvuUgd3kVR6oMaA=; b=l3gI9DmsKy10dgQ5ol0QwTamEG8g+R8cfIX/fftQr/SzX6U1qKAJThYW VnGNI/jaJ2flqiLUAuvNKe7jeu9fB1gNHH9sDQ1Zkc+ledPhHwj+cEKKv zI5KAN4Be0Qwef1WopmsBxr9+2nMBs19ho6S2EqT3ml1XWPnOeteNs0iU gHEMiI10RAu3Qy9l++BzcNEk5hQICU3oKEzLvyNhbzHwnEMXnvI4XW9Ug uSG7aXGbsCwPo4zSMWQlWe4TFeUrMcrOq+v3rQEVcBm+0x+NG3hLW3xmP 1j9NlHcUPCE0pL2kk5yJ6rTMXvRWUY+iwEayoElDuza4+1Sv1f6e6RJrP Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626695" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626695" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:51 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523711" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:50 -0800 From: Sean Morrissey To: Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 42/53] fib: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:58 +0000 Message-Id: <20220114162409.334437-43-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/fib/dir24_8.c | 4 ---- lib/fib/rte_fib.c | 2 -- lib/fib/rte_fib.h | 1 - lib/fib/rte_fib6.c | 2 -- lib/fib/rte_fib6.h | 1 - lib/fib/trie.c | 5 ----- lib/fib/trie.h | 2 -- 7 files changed, 17 deletions(-) diff --git a/lib/fib/dir24_8.c b/lib/fib/dir24_8.c index bb3bc9753b..a8ba4f64ca 100644 --- a/lib/fib/dir24_8.c +++ b/lib/fib/dir24_8.c @@ -4,15 +4,11 @@ */ #include -#include #include -#include -#include #include #include #include -#include #include #include diff --git a/lib/fib/rte_fib.c b/lib/fib/rte_fib.c index 0cced97a77..8af4c40919 100644 --- a/lib/fib/rte_fib.c +++ b/lib/fib/rte_fib.c @@ -6,11 +6,9 @@ #include #include -#include #include #include #include -#include #include #include diff --git a/lib/fib/rte_fib.h b/lib/fib/rte_fib.h index e592d3251a..90f28b7e11 100644 --- a/lib/fib/rte_fib.h +++ b/lib/fib/rte_fib.h @@ -17,7 +17,6 @@ #include -#include #ifdef __cplusplus extern "C" { diff --git a/lib/fib/rte_fib6.c b/lib/fib/rte_fib6.c index eebee297d6..4b8e22b142 100644 --- a/lib/fib/rte_fib6.c +++ b/lib/fib/rte_fib6.c @@ -6,11 +6,9 @@ #include #include -#include #include #include #include -#include #include #include diff --git a/lib/fib/rte_fib6.h b/lib/fib/rte_fib6.h index cb133719e1..62a425d9af 100644 --- a/lib/fib/rte_fib6.h +++ b/lib/fib/rte_fib6.h @@ -17,7 +17,6 @@ #include -#include #ifdef __cplusplus extern "C" { diff --git a/lib/fib/trie.c b/lib/fib/trie.c index 044095bf03..3e780afdaf 100644 --- a/lib/fib/trie.c +++ b/lib/fib/trie.c @@ -4,16 +4,11 @@ */ #include -#include #include -#include -#include #include #include #include -#include -#include #include #include diff --git a/lib/fib/trie.h b/lib/fib/trie.h index 9fd15ae79f..3cf161ae25 100644 --- a/lib/fib/trie.h +++ b/lib/fib/trie.h @@ -10,8 +10,6 @@ * @file * RTE IPv6 Longest Prefix Match (LPM) */ -#include -#include /* @internal Total number of tbl24 entries. */ #define TRIE_TBL24_NUM_ENT (1 << 24) From patchwork Fri Jan 14 16:23: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: 105855 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 22D53A00C3; Fri, 14 Jan 2022 17:30:44 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 85A314283B; Fri, 14 Jan 2022 17:27:55 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id A56B842837 for ; Fri, 14 Jan 2022 17:27:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177673; x=1673713673; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3VJAvmb17P29aDb/O7ssAKGuN4GOs7QsF0iW//kRZCY=; b=BuNXD2u3zqalgoHDo4nMqjmy/QXLMK74o07/wxYvTGMvEEi56LZAzmsH cfb5hCy2G48YK5JrMktFcWErDvb4Y990le1wDAaBzihbmfAqjhO9We2eV XVJEeTiqKdv59Xux9pzb7M2gyVX9YTbuAsv2iENrvILpF9FwJLgWD7bgq B9k3hcw/IJn6K19rjWYvBMvkhFCje/YAhM05fwmzTjVCgh0fjbC6CE7jG zbjnr0RE0YUGqh91eTFefhHoPWjdPhnAuBtko/zC4mjNEJ90nEUR8MkOB 4Yjk4ANYTaeLtGg2LHaB0d6gU7BLWmpu+XvymuSEANP4uuYgkTyE92kiy A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626698" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626698" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:53 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523721" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:51 -0800 From: Sean Morrissey To: Jerin Jacob , Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 43/53] eventdev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:23:59 +0000 Message-Id: <20220114162409.334437-44-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/eventdev/rte_event_ring.c | 6 ------ lib/eventdev/rte_event_ring.h | 2 -- lib/eventdev/rte_event_timer_adapter.c | 5 ----- lib/eventdev/rte_event_timer_adapter.h | 2 -- lib/eventdev/rte_eventdev.c | 11 ----------- lib/eventdev/rte_eventdev.h | 2 -- 6 files changed, 28 deletions(-) diff --git a/lib/eventdev/rte_event_ring.c b/lib/eventdev/rte_event_ring.c index d27e23901d..c070715148 100644 --- a/lib/eventdev/rte_event_ring.c +++ b/lib/eventdev/rte_event_ring.c @@ -3,13 +3,7 @@ * Copyright(c) 2019 Arm Limited */ -#include -#include -#include -#include -#include -#include #include "rte_event_ring.h" int diff --git a/lib/eventdev/rte_event_ring.h b/lib/eventdev/rte_event_ring.h index c0861b0ec2..0a54f7fde2 100644 --- a/lib/eventdev/rte_event_ring.h +++ b/lib/eventdev/rte_event_ring.h @@ -17,8 +17,6 @@ #include #include -#include -#include #include #include #include "rte_eventdev.h" diff --git a/lib/eventdev/rte_event_timer_adapter.c b/lib/eventdev/rte_event_timer_adapter.c index 9dad170b5a..7dc39386c9 100644 --- a/lib/eventdev/rte_event_timer_adapter.c +++ b/lib/eventdev/rte_event_timer_adapter.c @@ -6,19 +6,14 @@ #include #include #include -#include #include -#include -#include #include #include -#include #include #include #include #include -#include #include "event_timer_adapter_pmd.h" #include "eventdev_pmd.h" diff --git a/lib/eventdev/rte_event_timer_adapter.h b/lib/eventdev/rte_event_timer_adapter.h index 1551741820..aefa322344 100644 --- a/lib/eventdev/rte_event_timer_adapter.h +++ b/lib/eventdev/rte_event_timer_adapter.h @@ -111,8 +111,6 @@ extern "C" { #endif -#include -#include #include "rte_eventdev.h" #include "rte_eventdev_trace_fp.h" diff --git a/lib/eventdev/rte_eventdev.c b/lib/eventdev/rte_eventdev.c index 79b9ea3a02..1c1b66de88 100644 --- a/lib/eventdev/rte_eventdev.c +++ b/lib/eventdev/rte_eventdev.c @@ -6,26 +6,15 @@ #include #include #include -#include #include #include #include -#include -#include #include -#include #include -#include #include -#include -#include #include #include -#include -#include -#include -#include #include #include #include diff --git a/lib/eventdev/rte_eventdev.h b/lib/eventdev/rte_eventdev.h index eef47d8acc..5738a8d9ea 100644 --- a/lib/eventdev/rte_eventdev.h +++ b/lib/eventdev/rte_eventdev.h @@ -211,10 +211,8 @@ extern "C" { #endif #include -#include #include #include -#include #include #include "rte_eventdev_trace_fp.h" From patchwork Fri Jan 14 16:24:00 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105856 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 F15F0A00C3; Fri, 14 Jan 2022 17:30:48 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 842D24283C; Fri, 14 Jan 2022 17:27:57 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 006CD4283A for ; Fri, 14 Jan 2022 17:27:54 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177675; x=1673713675; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=hg20v+UI6ONaBeJE2WqF5fzVLSkjypVSxIoZ5MlSwXo=; b=ntVgvQO8OrQ/JqJLx1saaXOOhkGZcjX/M52ZygW/5KoPKAaxAyVVu2X0 ox6EztHMRZ1z7SPSgF9Qa7n+wjHeROftdfBrLHo3NA/yHSPB4+oyZ67GX pBMG4VdFQm5xEu68p6NUhkF31hac+G0OMjBL9Pqm3MKFc7FfcVgOeNw5C lLRZFJoP5lG7d3LSxL5pxUntvzJSX6VSF7EorlDZHxlsn7GSE0vqHlLQC 7Ly+42eXNlsA27UfmXc7hxBo7Z5AgrkL9XjSXu7Z5yhUlMIKrrHg/qFgh o1VfqhY7+g3f4trQ3F3ljZYYrRhtwKFGhhRVibs9srDwvaunBLuiTbHFu A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626704" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626704" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:54 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523731" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:53 -0800 From: Sean Morrissey To: Byron Marohn , Yipeng Wang Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 44/53] efd: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:00 +0000 Message-Id: <20220114162409.334437-45-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/efd/rte_efd.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/efd/rte_efd.c b/lib/efd/rte_efd.c index 86ef46863c..560cd78961 100644 --- a/lib/efd/rte_efd.c +++ b/lib/efd/rte_efd.c @@ -6,7 +6,6 @@ #include #include #include -#include #include #include @@ -21,11 +20,9 @@ #include #include #include -#include #include "rte_efd.h" #if defined(RTE_ARCH_X86) -#include "rte_efd_x86.h" #elif defined(RTE_ARCH_ARM64) #include "rte_efd_arm64.h" #endif From patchwork Fri Jan 14 16:24:01 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105857 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 6332DA00C3; Fri, 14 Jan 2022 17:30:53 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9167B42847; Fri, 14 Jan 2022 17:27:58 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 71D864283F for ; Fri, 14 Jan 2022 17:27:56 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177676; x=1673713676; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=q8ydyUlvFqm8xGS/YFN6YGWNfCQII2f+a8rNNE6tXDQ=; b=a4mxYKL/0NaW12CmwygNEFwmmaEtQ6I6n4gqkS0fHCRFejxOjlTsD91Q /RvaWgWmUpSYGUL2OxI+GOSg8emXg7xCsmV2rcGcbquda4xrb7xTAdNxp FaPbwrmzDEcE49zrn038n6l5C9/cKEwJnETJALVa+PKYiXHiscOeHqsAe E6G2a8HWwK19WxLU2Cr20flJEcTI9Ksa6ucfD8dpmfXa3hLckTvNxGbG+ w8JvtLyc20dmahp9z8W3jsDh1ym0/fhsdTW258F5iy6MUkWWaAaFg2Itn jjAYq1HcI0C3Z7pm/1yuKisop9IFm3n6miFwLwfuAJFvpyUJvAAEYkWab Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626710" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626710" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523742" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:54 -0800 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 45/53] eal: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:01 +0000 Message-Id: <20220114162409.334437-46-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/linux/eal_thread.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/eal/linux/eal_thread.c b/lib/eal/linux/eal_thread.c index 9a0250d762..fa6cd7e2c4 100644 --- a/lib/eal/linux/eal_thread.c +++ b/lib/eal/linux/eal_thread.c @@ -10,7 +10,6 @@ #include #include -#include #include #include #include From patchwork Fri Jan 14 16:24:02 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105858 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 593BDA00C3; Fri, 14 Jan 2022 17:30:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 852AF4284C; Fri, 14 Jan 2022 17:27:59 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 27EA342843 for ; Fri, 14 Jan 2022 17:27:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177678; x=1673713678; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=X77UVyFCU3KWX9LUcAlutU6RJE1s6pLnHtCx1grTaT4=; b=Lihe33NWHBIgyqEmyZlGhMhzkjKxYb2W9/AEzRrx0s2KOlHJ2nXYMBfw RQjqXqRqM3SWAdD/DusfGysDxZziWbiPbho26TQmDEv2hcM7oyR/IR3ct ATErFTpPOrx9MGwP7ZuKWeubFd+Y6ociOxSBy1o2hThr0BUghB/f3he01 6WDhZtiW3WTmaRMTWCmt3/jY740NJ1HZwA5TmB10VE8yafMLAOFxqFJeZ EhQYtaykOyufgwgwsqeJK5SG+BFUWLkH/kewQW8ip7zSqQ2emA8kFpfyL 5FFpOteVLRrQCaSX8VU0LXiHOS4gXyGZmQ5kmyTmK/ffKD4iWOo3F/hCT Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626718" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626718" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523750" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:55 -0800 From: Sean Morrissey To: Chengwen Feng , Kevin Laatz , Bruce Richardson Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 46/53] dmadev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:02 +0000 Message-Id: <20220114162409.334437-47-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/dmadev/rte_dmadev.h | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/dmadev/rte_dmadev.h b/lib/dmadev/rte_dmadev.h index 4abe79c536..ad9e7a0975 100644 --- a/lib/dmadev/rte_dmadev.h +++ b/lib/dmadev/rte_dmadev.h @@ -149,7 +149,6 @@ #include #include #include -#include #ifdef __cplusplus extern "C" { From patchwork Fri Jan 14 16:24:03 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105861 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 47CF4A00C3; Fri, 14 Jan 2022 17:31:14 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E0AC64285B; Fri, 14 Jan 2022 17:28:02 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 4392E42844 for ; Fri, 14 Jan 2022 17:27:59 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177679; x=1673713679; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XUXoemzty3cnD/mKc3F/HqB5ERGdQN+sIFdbPTohxew=; b=YUkd3bzVtd/kju5pwvbkP75ozF8pSlpMS/1RVxUTUzGA6jCv4LmBikvB cUuTH3dqk1TT0Pu8z0DVrFIT6FLOAT3wrklyBztCN+Y+s7TOjT8hjJ4B7 FSn0IgisZwQ5Xub+K5xJOlAWntvzm8SjXFy1SA2JFzZJ9OV3idkuVCdb0 tED4Bw2kvoVrpDDGOX1FwII9650vX879PpzTpC7y16LrYUCr4eoQe2szn ZqnMq8JOvkmPGNhpeuDx1fJ9mj8z4OydPg/VeoNSrWxAnTxgusFWBOoIS dxoRsY4HI6egkmb/ulfkHgxpcgXmtmvrO1+7aCdi66qo6heW31cjPkdkX A==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626722" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626722" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:27:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523756" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:57 -0800 From: Sean Morrissey To: David Hunt , Bruce Richardson , Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 47/53] distributor: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:03 +0000 Message-Id: <20220114162409.334437-48-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/distributor/rte_distributor.c | 2 -- lib/distributor/rte_distributor_match_sse.c | 2 -- lib/distributor/rte_distributor_single.c | 2 -- 3 files changed, 6 deletions(-) diff --git a/lib/distributor/rte_distributor.c b/lib/distributor/rte_distributor.c index c210cf86bd..3035b7a999 100644 --- a/lib/distributor/rte_distributor.c +++ b/lib/distributor/rte_distributor.c @@ -6,7 +6,6 @@ #include #include #include -#include #include #include #include @@ -14,7 +13,6 @@ #include #include #include -#include #include "rte_distributor.h" #include "rte_distributor_single.h" diff --git a/lib/distributor/rte_distributor_match_sse.c b/lib/distributor/rte_distributor_match_sse.c index e3b3b79264..11d8819278 100644 --- a/lib/distributor/rte_distributor_match_sse.c +++ b/lib/distributor/rte_distributor_match_sse.c @@ -3,10 +3,8 @@ */ #include -#include "rte_distributor.h" #include "distributor_private.h" #include "smmintrin.h" -#include "nmmintrin.h" void diff --git a/lib/distributor/rte_distributor_single.c b/lib/distributor/rte_distributor_single.c index b653620688..de90aa8bb5 100644 --- a/lib/distributor/rte_distributor_single.c +++ b/lib/distributor/rte_distributor_single.c @@ -4,9 +4,7 @@ #include #include -#include #include -#include #include #include #include From patchwork Fri Jan 14 16:24:04 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105863 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 ED301A00C3; Fri, 14 Jan 2022 17:31:24 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BF81A42862; Fri, 14 Jan 2022 17:28:04 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id A864841178 for ; Fri, 14 Jan 2022 17:28:00 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177680; x=1673713680; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=MB18BzpcoV6r0lJm+UvYVyzlNk4Jg6WXBTdpHBuhJqs=; b=NX4NTqC/Bcxn3EpHhsVQYqlXGjLgjEj2B2iQRC+snoAa9A+xE61OYzEu gMku52JlSEv2liyn1xx/QpzeozpKp7vmwpFER9d8rzQ67feddUmzNLuT/ W9kU44s3lDxsZDpsC1GE37OvCfEsaUZQOsbSftcs+hm41/tNlOsWFHml0 0SqKIR/4fBAkYDcOaiwv8V00Aho4GsS9s9eUZQBe7wTMGjryf9dD096ng 203SF64hRYbWgR0lczhndK2Spf0GLzmcZJJTN0x4LaLCEw2akUhe4c2P3 efZmiAnj+zejEBJIH146bKZDhwxCePXnNmr3Rzyl/hHyIIBWlge0rv3xH Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626725" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626725" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:28:00 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523761" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:27:59 -0800 From: Sean Morrissey To: Fan Zhang , Ashish Gupta Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 48/53] compressdev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:04 +0000 Message-Id: <20220114162409.334437-49-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/compressdev/rte_comp.c | 1 - lib/compressdev/rte_comp.h | 1 - lib/compressdev/rte_compressdev.c | 1 - lib/compressdev/rte_compressdev.h | 1 - lib/compressdev/rte_compressdev_pmd.h | 2 -- 5 files changed, 6 deletions(-) diff --git a/lib/compressdev/rte_comp.c b/lib/compressdev/rte_comp.c index 3b0e46f96e..320c6dab92 100644 --- a/lib/compressdev/rte_comp.c +++ b/lib/compressdev/rte_comp.c @@ -3,7 +3,6 @@ */ #include "rte_comp.h" -#include "rte_compressdev.h" #include "rte_compressdev_internal.h" const char * diff --git a/lib/compressdev/rte_comp.h b/lib/compressdev/rte_comp.h index 95306c5d03..cdb55e5887 100644 --- a/lib/compressdev/rte_comp.h +++ b/lib/compressdev/rte_comp.h @@ -16,7 +16,6 @@ extern "C" { #endif -#include #include /** diff --git a/lib/compressdev/rte_compressdev.c b/lib/compressdev/rte_compressdev.c index 2e9218af68..202ee694d8 100644 --- a/lib/compressdev/rte_compressdev.c +++ b/lib/compressdev/rte_compressdev.c @@ -3,7 +3,6 @@ */ #include -#include #include #include diff --git a/lib/compressdev/rte_compressdev.h b/lib/compressdev/rte_compressdev.h index 2840c27c6c..aa865c4c03 100644 --- a/lib/compressdev/rte_compressdev.h +++ b/lib/compressdev/rte_compressdev.h @@ -21,7 +21,6 @@ extern "C" { #endif -#include #include "rte_comp.h" diff --git a/lib/compressdev/rte_compressdev_pmd.h b/lib/compressdev/rte_compressdev_pmd.h index f9a42d1f05..9fabc399c5 100644 --- a/lib/compressdev/rte_compressdev_pmd.h +++ b/lib/compressdev/rte_compressdev_pmd.h @@ -19,8 +19,6 @@ extern "C" { #include -#include -#include #include "rte_compressdev.h" #include "rte_compressdev_internal.h" From patchwork Fri Jan 14 16:24:05 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105864 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 E8A4EA00C3; Fri, 14 Jan 2022 17:31:29 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B357042868; Fri, 14 Jan 2022 17:28:05 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 30D7E4284B for ; Fri, 14 Jan 2022 17:28:02 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177682; x=1673713682; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KvS6I/L0faXoO9vqlcFr5gTn0O9JfeU5Ui4lMRstcHk=; b=FGRM8n+v0RMhGVijY3THkEp+kQn/rXL3YImuceExJ1dVCsqqCMpe0A2m 5BFIdHHymbgtdJMwxLKea9Kvvm/b52UTUxA0AMJ3uiofnoCPZuXgeZTKm zrudav7EEL2htBJKvsl56vyARFBuJR+fxoPjbfZEToog7d3a5enqXn/66 Zz7Qs0cEtEIGSFD+eU5wqfRfMNwstbkE4NhS4218NRUNHdtsz/Y7ajrru ahpjIKLRVxeKuEX4SBbXiSn3L/GGbKtSoMdoc6+rA3EVaJlEFp3oo2NNs qhvtMAVORRUQkaecsvXwMclbNDxtRJqwibHHX988YNVHGPBDznLIVk25m w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626730" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626730" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:28:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523767" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:28:00 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 49/53] cmdline: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:05 +0000 Message-Id: <20220114162409.334437-50-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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.c | 2 -- lib/cmdline/cmdline_cirbuf.c | 1 - lib/cmdline/cmdline_cirbuf.h | 1 - lib/cmdline/cmdline_parse.c | 3 --- lib/cmdline/cmdline_parse_num.c | 4 ---- lib/cmdline/cmdline_parse_portlist.c | 3 --- lib/cmdline/cmdline_parse_string.c | 4 ---- lib/cmdline/cmdline_rdline.c | 2 -- lib/cmdline/cmdline_socket.c | 5 ----- lib/cmdline/cmdline_socket.h | 1 - lib/cmdline/cmdline_vt100.c | 3 --- 11 files changed, 29 deletions(-) diff --git a/lib/cmdline/cmdline.c b/lib/cmdline/cmdline.c index 8f1854cb0b..e1009ba4c4 100644 --- a/lib/cmdline/cmdline.c +++ b/lib/cmdline/cmdline.c @@ -9,8 +9,6 @@ #include #include #include -#include -#include #include #include diff --git a/lib/cmdline/cmdline_cirbuf.c b/lib/cmdline/cmdline_cirbuf.c index 829a8af563..f9bd7cfd61 100644 --- a/lib/cmdline/cmdline_cirbuf.c +++ b/lib/cmdline/cmdline_cirbuf.c @@ -6,7 +6,6 @@ #include #include -#include #include "cmdline_cirbuf.h" 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.c b/lib/cmdline/cmdline_parse.c index f5cc934782..349ec87bd7 100644 --- a/lib/cmdline/cmdline_parse.c +++ b/lib/cmdline/cmdline_parse.c @@ -5,11 +5,8 @@ */ #include -#include #include #include -#include -#include #include diff --git a/lib/cmdline/cmdline_parse_num.c b/lib/cmdline/cmdline_parse_num.c index b37dd94ae9..a4e68f262c 100644 --- a/lib/cmdline/cmdline_parse_num.c +++ b/lib/cmdline/cmdline_parse_num.c @@ -6,11 +6,7 @@ #include #include -#include -#include #include -#include -#include #include #include "cmdline_parse.h" diff --git a/lib/cmdline/cmdline_parse_portlist.c b/lib/cmdline/cmdline_parse_portlist.c index e1aa07be4b..2e2294553a 100644 --- a/lib/cmdline/cmdline_parse_portlist.c +++ b/lib/cmdline/cmdline_parse_portlist.c @@ -6,11 +6,8 @@ #include #include -#include -#include #include #include -#include #include #include "cmdline_parse.h" diff --git a/lib/cmdline/cmdline_parse_string.c b/lib/cmdline/cmdline_parse_string.c index 9cf41d0f76..d756638905 100644 --- a/lib/cmdline/cmdline_parse_string.c +++ b/lib/cmdline/cmdline_parse_string.c @@ -5,11 +5,7 @@ */ #include -#include -#include #include -#include -#include #include #include "cmdline_parse.h" diff --git a/lib/cmdline/cmdline_rdline.c b/lib/cmdline/cmdline_rdline.c index d92b1cda53..5cf723a012 100644 --- a/lib/cmdline/cmdline_rdline.c +++ b/lib/cmdline/cmdline_rdline.c @@ -6,9 +6,7 @@ #include #include -#include #include -#include #include #include 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" { diff --git a/lib/cmdline/cmdline_vt100.c b/lib/cmdline/cmdline_vt100.c index bb968dd5fa..4c9a46c953 100644 --- a/lib/cmdline/cmdline_vt100.c +++ b/lib/cmdline/cmdline_vt100.c @@ -4,12 +4,9 @@ * All rights reserved. */ -#include #include #include #include -#include -#include #include "cmdline_vt100.h" From patchwork Fri Jan 14 16:24:06 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105865 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 909A6A00C3; Fri, 14 Jan 2022 17:31:35 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A73904286B; Fri, 14 Jan 2022 17:28:06 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 8A6234285D for ; Fri, 14 Jan 2022 17:28:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177683; x=1673713683; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=4WKcVF3AW5g/3waizodcz+Fc/s1DJiQ5EhWPmiWSqlY=; b=jK49Of1oeLHgPy4/mFKSEZz0Gpu+OiG2FwukPz+7ePv2nW8HTTKXsn37 ztdQrgccFd4L08k3x5rN43/xPnbij7wViX/zVk4IIl6RNGv4wAU90utpN EL+8cJhQtHD8HSzAuZwEaziFjpLduG2b//5bHkjUJJl0jeyt9I/LCKLLs rjODDsPkjAW+bOAWfAJa33kjMotJ5T0VGegB8S0zYxGOLr2Xe5HZwNUof daYns3grEFBZBOQ1XIbeuwlIg4bObuVkqKUXeZQaKMPtcuJzo9VBX1+TI pgmRqoUPccCtK1anNPYpR2uoSouBTwBUBkBKXcLhRDpfXeA0CM8ZJ0Zwz Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626734" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626734" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:28:03 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523778" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:28:02 -0800 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 50/53] bpf: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:06 +0000 Message-Id: <20220114162409.334437-51-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/bpf/bpf.c | 4 ---- lib/bpf/bpf_exec.c | 6 ------ lib/bpf/bpf_jit_x86.c | 5 ----- lib/bpf/bpf_load.c | 8 -------- lib/bpf/bpf_pkt.c | 12 ------------ lib/bpf/bpf_validate.c | 3 --- 6 files changed, 38 deletions(-) diff --git a/lib/bpf/bpf.c b/lib/bpf/bpf.c index 0caad2a8f0..1e1dd42a58 100644 --- a/lib/bpf/bpf.c +++ b/lib/bpf/bpf.c @@ -2,15 +2,11 @@ * Copyright(c) 2018 Intel Corporation */ -#include #include -#include #include #include -#include #include -#include #include "bpf_impl.h" diff --git a/lib/bpf/bpf_exec.c b/lib/bpf/bpf_exec.c index b921112feb..09f4a9a571 100644 --- a/lib/bpf/bpf_exec.c +++ b/lib/bpf/bpf_exec.c @@ -2,18 +2,12 @@ * Copyright(c) 2018 Intel Corporation */ -#include #include -#include -#include #include -#include #include #include #include -#include -#include #include #include "bpf_impl.h" diff --git a/lib/bpf/bpf_jit_x86.c b/lib/bpf/bpf_jit_x86.c index 518513376a..c1a30e0386 100644 --- a/lib/bpf/bpf_jit_x86.c +++ b/lib/bpf/bpf_jit_x86.c @@ -2,17 +2,12 @@ * Copyright(c) 2018 Intel Corporation */ -#include #include #include -#include #include #include #include -#include -#include -#include #include "bpf_impl.h" diff --git a/lib/bpf/bpf_load.c b/lib/bpf/bpf_load.c index 272f2ba11b..0c4ac7be6c 100644 --- a/lib/bpf/bpf_load.c +++ b/lib/bpf/bpf_load.c @@ -2,20 +2,12 @@ * Copyright(c) 2018 Intel Corporation */ -#include #include #include #include #include -#include -#include -#include #include -#include -#include -#include -#include #include #include "bpf_impl.h" diff --git a/lib/bpf/bpf_pkt.c b/lib/bpf/bpf_pkt.c index af422afc07..ffd2db7840 100644 --- a/lib/bpf/bpf_pkt.c +++ b/lib/bpf/bpf_pkt.c @@ -2,28 +2,16 @@ * Copyright(c) 2018 Intel Corporation */ -#include #include #include #include #include -#include -#include -#include -#include -#include #include #include -#include #include #include -#include -#include -#include -#include -#include #include #include #include diff --git a/lib/bpf/bpf_validate.c b/lib/bpf/bpf_validate.c index 09331258eb..9ff86fc970 100644 --- a/lib/bpf/bpf_validate.c +++ b/lib/bpf/bpf_validate.c @@ -2,7 +2,6 @@ * Copyright(c) 2018 Intel Corporation */ -#include #include #include #include @@ -10,8 +9,6 @@ #include #include -#include -#include #include "bpf_impl.h" From patchwork Fri Jan 14 16:24:07 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105866 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 517B0A00C3; Fri, 14 Jan 2022 17:31:42 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E497442877; Fri, 14 Jan 2022 17:28:07 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id C93C142863 for ; Fri, 14 Jan 2022 17:28:04 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177685; x=1673713685; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=jONd1CrZ0IUvIrkVEq56v6LLzCxm2Jg/cXb7YrhrfOA=; b=CruFDkwA67oaorEuc91m8cPRT7WQ9TQZig8LHpSSxcCIVQRG1JbXfJLV uqM7KhtiRBiOKB0pzP7BQQd6pALSfEsUU0aP+WjUl1bAu/tCTq05G1Ir6 qrnQXGyJmoNn9US5rKrRZdLoPfeRbBmlUQr2R3QNZVT3cCOPivz4rKsbq XGQlf9jTI6+1r1ytzJrsBsLj6SOrYccaLWw66E0IpYjhO0yNwujGEIpqm 6aZeCui6uVqcpkSjc1hENShiwr10/+CSxYxwYGDpQyjd58w9IwyeXgV7L S+z0arvWCX7SWU5tmDdpIXjgxkGUUjbtnOEA4xz2hUEZO/Hf7/vud5e/Q w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626739" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626739" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:28:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523787" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:28:03 -0800 From: Sean Morrissey To: Nicolas Chautru Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 51/53] bbdev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:07 +0000 Message-Id: <20220114162409.334437-52-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/bbdev/rte_bbdev.c | 4 ---- lib/bbdev/rte_bbdev.h | 4 ---- 2 files changed, 8 deletions(-) diff --git a/lib/bbdev/rte_bbdev.c b/lib/bbdev/rte_bbdev.c index 7f353d4f7e..aaee7b7872 100644 --- a/lib/bbdev/rte_bbdev.c +++ b/lib/bbdev/rte_bbdev.c @@ -6,19 +6,15 @@ #include #include -#include #include #include #include -#include #include #include #include #include #include -#include #include -#include #include #include "rte_bbdev_op.h" diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h index 1dbcf73b0e..b88c88167e 100644 --- a/lib/bbdev/rte_bbdev.h +++ b/lib/bbdev/rte_bbdev.h @@ -26,12 +26,8 @@ extern "C" { #include #include -#include -#include -#include #include -#include #include "rte_bbdev_op.h" From patchwork Fri Jan 14 16:24:08 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105867 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 9D43EA00C3; Fri, 14 Jan 2022 17:31:47 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D8B2642879; Fri, 14 Jan 2022 17:28:08 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id 413B342848 for ; Fri, 14 Jan 2022 17:28:06 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177687; x=1673713687; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6lIxArtOeut3kztuAWYmtZS6EoqMYQFy6kUtFo3x0rQ=; b=M4L0GtqiFm40PGx2L28ymTfnYSMackg/Dqcp0XnfVAkkdtdontJlBasz GGzi1jTs8pN1NL+Wz3nw+tS/XB9QvnDeXYNDvJlE4YvZoM/aIxTb50VVm kKZwOPJ7LDlZPCvLsISSfvF4E3CSPBx4x3DUDL0XVfMu/v3IybbqIyKNQ tpyuiiUWuEr0123kpPyZKvgedA8osViDnG3V2yAV+SOp6Dwf76rJBvW7l Ale4j7XKu0Y1+COCDoya59CACu/OW0wI/8AAromdXZzbR15sn+1F0B0T7 ZTLbn921VC7jSP2R4HaB6EuJnkv7jy1WCyrMiuvWrTMKcf89UyYEjUdze w==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626743" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626743" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:28:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523793" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:28:04 -0800 From: Sean Morrissey To: Akhil Goyal , Declan Doherty Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 52/53] cryptodev: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:08 +0000 Message-Id: <20220114162409.334437-53-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/cryptodev/cryptodev_pmd.h | 4 ---- lib/cryptodev/rte_cryptodev.c | 11 ----------- lib/cryptodev/rte_cryptodev.h | 2 -- 3 files changed, 17 deletions(-) diff --git a/lib/cryptodev/cryptodev_pmd.h b/lib/cryptodev/cryptodev_pmd.h index b9146f652c..8cf2da9b69 100644 --- a/lib/cryptodev/cryptodev_pmd.h +++ b/lib/cryptodev/cryptodev_pmd.h @@ -15,11 +15,7 @@ #include -#include -#include #include -#include -#include #include #include diff --git a/lib/cryptodev/rte_cryptodev.c b/lib/cryptodev/rte_cryptodev.c index a40536c5ea..8c1cccef0b 100644 --- a/lib/cryptodev/rte_cryptodev.c +++ b/lib/cryptodev/rte_cryptodev.c @@ -2,36 +2,25 @@ * Copyright(c) 2015-2020 Intel Corporation */ -#include #include #include #include #include #include -#include #include #include #include -#include #include #include #include -#include #include #include #include -#include -#include #include -#include -#include -#include -#include #include #include #include -#include #include #include #include diff --git a/lib/cryptodev/rte_cryptodev.h b/lib/cryptodev/rte_cryptodev.h index 59ea5a54df..3493384fc7 100644 --- a/lib/cryptodev/rte_cryptodev.h +++ b/lib/cryptodev/rte_cryptodev.h @@ -20,9 +20,7 @@ extern "C" { #include "rte_kvargs.h" #include "rte_crypto.h" -#include "rte_dev.h" #include -#include #include #include "rte_cryptodev_trace_fp.h" From patchwork Fri Jan 14 16:24: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: 105868 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 AA062A00C3; Fri, 14 Jan 2022 17:31:53 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DBA47427E3; Fri, 14 Jan 2022 17:28:10 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by mails.dpdk.org (Postfix) with ESMTP id C5A6D42874 for ; Fri, 14 Jan 2022 17:28:07 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642177688; x=1673713688; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Pinjlhxmyu1NWelct7Hl/mb9kvGW002JpfxiBVUoK58=; b=dLGbOrAZ4MZQb2ZbRQclR6oo3HLp+BzBvgQ7L3AkrCofFZDdAL9AeVwh 7nZ5JLr9vTKN+YTsskqCAkGZtJvsM4BScPu79Oi1KGDrVcDMASUKqrWyX wJToA+dKXax7HdWj8p3osDr4/WnDgVzkn2c03SWeBGjjkj01HgRTl5i/y 9uhMYC+WfRu73D+w7FlBIjhVc0B2AW5WpIREHq8b1dfsJAyUazAVuSiIN gjb5vD1puGXd8RDdt0Q4r7VaXZN83sA9rFhhR0+6+33CvdRLkhwAoQZJq H4UB8e0YUyBt7S33qXaTWjS0/8lV40Zuzh7dN/xuSqHpUWCxiHryDQRQr g==; X-IronPort-AV: E=McAfee;i="6200,9189,10226"; a="231626745" X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="231626745" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Jan 2022 08:28:07 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,289,1635231600"; d="scan'208";a="559523796" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga001.jf.intel.com with ESMTP; 14 Jan 2022 08:28:06 -0800 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v4 53/53] acl: remove unneeded header includes Date: Fri, 14 Jan 2022 16:24:09 +0000 Message-Id: <20220114162409.334437-54-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220114162409.334437-1-sean.morrissey@intel.com> References: <20211007102557.188739-1-sean.morrissey@intel.com> <20220114162409.334437-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/acl/rte_acl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/acl/rte_acl.c b/lib/acl/rte_acl.c index 4e693b2488..a61c3ba188 100644 --- a/lib/acl/rte_acl.c +++ b/lib/acl/rte_acl.c @@ -6,7 +6,6 @@ #include #include #include -#include #include "acl.h"