From patchwork Mon Jan 17 20:18: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: 105929 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 EF0C7A00C3; Mon, 17 Jan 2022 21:20:40 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A7A7A426DF; Mon, 17 Jan 2022 21:20:33 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 34DAC40140 for ; Mon, 17 Jan 2022 21:20:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450831; x=1673986831; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=LBav9WjVXoaC8qdhePzJwt4fEHVKUj6RGWv6FDYI/8s=; b=KfvpGkW8oOcVylJWEieTeLQlwbcq8FrPrxUOjstlmlA0EKnNYLRBb6r1 DDRZP+LeAsNRMbPb21JTxxej+XwgeDgRPIUD/FWjTtDYUhAoKrWA/nGEL gN8uFyESTC2CijlmoqXc+brzJMGLJd/XuHZq7DPCn81AVI5EUYZ2NJ3r3 GBAGA40n+7S2qeyJKlc6RQGM8Fl9EsfRYe1LxtnNCFK8VwU8E1Uxy1WlD CFdXJDxKpQZ+IEaTRkOfi8SgoNgbCYzm0qkjRL/rhq2jX367G3ZnQSuz8 yclZsoWZx6h/OVZDy9Nj0xuVlQjqQ1xTHzNHmJcSBTgwbSxYOYCON+9/0 Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037925" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037925" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:30 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520704" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:28 -0800 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey , Conor Fogarty , Bruce Richardson Subject: [PATCH v5 01/50] devtools: script to remove unused headers includes Date: Mon, 17 Jan 2022 20:18:54 +0000 Message-Id: <20220117201943.873922-2-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:18: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: 105930 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 BE66FA00C3; Mon, 17 Jan 2022 21:20:46 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9AEA1426DA; Mon, 17 Jan 2022 21:20:35 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 72451426D4 for ; Mon, 17 Jan 2022 21:20: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=1642450832; x=1673986832; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7ksZ0dEAJxhYkLZ4rq1vIzVsXl3hQNbCVQtL+YMbNFc=; b=JyhQOnFEp002zKQkvIaIawLQUHiQy1szXfcHPm8S+tuJWfvSxFGqfFvP 0g2QTGDWZkmdGCDivjGspMVmwqvL4PogSypP3egalJDcjYahAH3ARsAor qK5h6JJkPe3g0eVpUICRZfBQOnRJH32k/QOoTURQ4Kxi3krim8SErulao IOONjGDUXQV3qKNTx8CgpUBHNHUNNT1fDa898lcsVlXj69VjOE0m7ud2z DzUfGvymdCjfeHTP69wA2fE/TQ/ap7QOlLUjQIS5An8h1/4oMdDB3kGMV O26sYO3NghF30GHzGr6Z6MMlowQiwwQUFi5pCHKYGKgGWyIdEd6HAsEcb Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037929" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037929" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520709" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:30 -0800 From: Sean Morrissey To: Ciara Power Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 02/50] telemetry: remove unneeded header includes Date: Mon, 17 Jan 2022 20:18:55 +0000 Message-Id: <20220117201943.873922-3-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:18: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: 105931 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 EFED7A00C3; Mon, 17 Jan 2022 21:20:51 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8DF6D426E6; Mon, 17 Jan 2022 21:20:36 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id DD1E0426D5 for ; Mon, 17 Jan 2022 21:20: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=1642450835; x=1673986835; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=GThK9HmHHeSyOwHfv00+zBIkJaAiKLlAUXeA3wmdS+8=; b=jCbXR1Pkp8JP2ajynKeJkHTTEC7Qr5NKS7jJiBbJvhELMi3ZCv4XyFX6 N5wGPOcfGmoG8JsER+j2Zly+Et2qoHV9cYqGvEnc3PFUAaAlwK1Xptw3h k64GpJo6VJUhzG6Xg2fRcMBNoOUfJ8C7tF5Wd2+7ftYppk7/3glVnPZbQ DflmJDfl8E5P+dSzSlaaC4r1lDZ3NQEn7bBatpnYmFG8wIo5Ev8hEavcd dOk38UupXyHcvMti/GCLzes3ZQKRl/u7gRuPJRfZ10YtNyn5qDWoGPAyI 33N51MccyCmEVRtUBAVbpUdGiRWt+d++n/yGxKgTWetCW/HWpoWuUbnsJ g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037931" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037931" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:33 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520713" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:31 -0800 From: Sean Morrissey To: Honnappa Nagarahalli , Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 03/50] ring: remove unneeded header includes Date: Mon, 17 Jan 2022 20:18:56 +0000 Message-Id: <20220117201943.873922-4-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 | 9 --------- 1 file changed, 9 deletions(-) diff --git a/lib/ring/rte_ring.c b/lib/ring/rte_ring.c index f17bd966be..7945e5d9ed 100644 --- a/lib/ring/rte_ring.c +++ b/lib/ring/rte_ring.c @@ -8,7 +8,6 @@ */ #include -#include #include #include #include @@ -17,19 +16,11 @@ #include #include -#include #include #include -#include -#include #include -#include -#include -#include -#include #include #include -#include #include #include "rte_ring.h" From patchwork Mon Jan 17 20:18: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: 105932 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 46B92A00C3; Mon, 17 Jan 2022 21:20:57 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7A5E9426EC; Mon, 17 Jan 2022 21:20:37 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 2E3D9426D8 for ; Mon, 17 Jan 2022 21:20: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=1642450835; x=1673986835; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=I1obe6U8e8vzDWOHf6lot72mCQnUa5yOB/+kjzmRB3Q=; b=IZ33PHAtTZAKQgIqYZaVsgJaIp6fm3RLp7L1Tb1b+19z77ol2v77Z/mN hd/qa4dxUd9jZKDUpZGQm1J/YB3Moj50Pfnjc+IQ1hxkItiyNyP5L7+YI EDFvZbWJ7PioC3SgIgTUt+y9Q95DOv9bw2eLiP9bHckCY08QmNEvZs87w Dl0Q5cfwHcqWQygSdXKfG/qtwOjlUQTgmM+LJiwI9KJG6hlcnCFyzGZjn Bk3Km1Kau9mhjvlQQMGPQO7sUceFFriN4BxQAhZDpSglhkWbd+ot/ENlZ /DUTdAmcB2eq0C9v8NOkz8P7d5TS3OQeRJbR1Zdymfb8TV3/X38aN5orl A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037935" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037935" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520719" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:33 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 04/50] kvargs: remove unneeded header includes Date: Mon, 17 Jan 2022 20:18:57 +0000 Message-Id: <20220117201943.873922-5-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/kvargs/rte_kvargs.c b/lib/kvargs/rte_kvargs.c index 11f624ef14..9a59c500bf 100644 --- a/lib/kvargs/rte_kvargs.c +++ b/lib/kvargs/rte_kvargs.c @@ -7,8 +7,6 @@ #include #include -#include -#include #include "rte_kvargs.h" From patchwork Mon Jan 17 20:18:58 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105933 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 799A0A00C3; Mon, 17 Jan 2022 21:21:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5A212426F2; Mon, 17 Jan 2022 21:20:40 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id E5EF4426F1 for ; Mon, 17 Jan 2022 21:20:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450839; x=1673986839; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=qtryKMz/4C7tCgVRessD6vNarDB0WJWi2BWIXoHYYQM=; b=akbIBIuJ7YzMbNYyF3jLgre+BwgvacvcI1pYBqC63b2vFtcW+BQx1a65 B6z8ohBglfaNHNiapzW+uzTo3v5AeALWrgRREEOlob1bgaKwqiHJdLTho tyVvcz5O6yFJh840nKBxaW+6+1+A81qrqJheF+teriiGXLNi0KyZFaEzA oUJH3hC9eI7H1+x0Pz1mSW+sN40N4YJX90WTdaJpSGfW5Zz8dG0UOCV2P jpaiTIRERn7UnU89Rhed9O89SyO0Obb8hHV4dgEnlp/1wxVU5+QBWGR6V 3nFiBJy6urAIjVGImZfz30OgWOXxHHnN7gSLmSrjqEbcFY9zE7W0tCvYk g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037943" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037943" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:37 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520738" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:34 -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 v5 05/50] eal: remove unneeded header includes Date: Mon, 17 Jan 2022 20:18:58 +0000 Message-Id: <20220117201943.873922-6-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 | 6 ------ 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(+), 202 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..fa6cd7e2c4 100644 --- a/lib/eal/linux/eal_thread.c +++ b/lib/eal/linux/eal_thread.c @@ -4,20 +4,14 @@ #include #include -#include #include #include #include -#include -#include #include #include -#include #include #include -#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 Mon Jan 17 20:18: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: 105934 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 36B3BA00C3; Mon, 17 Jan 2022 21:21:10 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BE2B1426FB; Mon, 17 Jan 2022 21:20:42 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 0D6B2426D8 for ; Mon, 17 Jan 2022 21:20: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=1642450840; x=1673986840; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=HvprPNfk3v4pGee32vx76TxlrpIRFMmi9bizIAhpC5k=; b=KTRJswXANBimyc6SJNt2F6id0UQdTsos0pbWDjIRnb5BdJY5NGvY4km4 FOPMyS32brHvSdTji/3hO89HQTfs8RDu1/Pnyv4lL3u+l7mrv1D2GO2PN EnZJ+N51mh6pKLWtz48tS4UwAnku128kCfK7gJUbcq8OQm+00yC7r7fBK 49X9W1ClmCvfgjzDDlDyOqT7gP8UettJcWQLM4nkoI7mtEFQW8AWUcoqg mCPvj/boiPbQaqIe46I66Nx/rCnSq9/hYksWiI8Rpm+7oznq5CVaxi/Sa ub13fppRn6s03O01lqFytlpwFT7jESrAIEia/yBn29M+xPZ6lMS+j6XMz Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037949" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037949" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:39 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520747" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:38 -0800 From: Sean Morrissey To: Maxime Coquelin , Chenbo Xia Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 06/50] vhost: remove unneeded header includes Date: Mon, 17 Jan 2022 20:18:59 +0000 Message-Id: <20220117201943.873922-7-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 | 2 -- lib/vhost/vhost_user.c | 2 -- 7 files changed, 17 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..819d361578 100644 --- a/lib/vhost/vhost.h +++ b/lib/vhost/vhost.h @@ -17,11 +17,9 @@ #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 From patchwork Mon Jan 17 20:19: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: 105935 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 B417BA00C3; Mon, 17 Jan 2022 21:21:15 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C1F1A42702; Mon, 17 Jan 2022 21:20:43 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 7E92B426F7 for ; Mon, 17 Jan 2022 21:20:41 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450841; x=1673986841; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XgwuLtnW+nsUNvcrrRQrvJockBdxajFMn0KCCzoOaCw=; b=mWjQYNzLwy1yQKGu1V8l0A3hc+26d1prfazCEfj8M2YLxvsnnSeIb8y9 /Zeaq3FmD7Xi8SeS3P1SJ2L6EB8TyB5LQFeVl791PJ67s0jFMsiRX4t/K tuNU9NizHuBEDXPS6rgbtBxHBgR4muk40SpXuxvJKlVN1ufpBvMty2/Af oCPMscGii7ZtwkEO3ai613iqDIZLr/iUybMJhFjHP66BeKGPGrt1qAuVG 16P3JiAagWLCacjLf8GsxgqxR/7W6S4eLc1vRdWl3CQrxM7W/eL+bhkvl WKZDod6RRGzFnKjfpXnUzyZetVbBnftGwQWS4ToGsFq+j/EoapJwS015h w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037953" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037953" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520752" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:39 -0800 From: Sean Morrissey To: Robert Sanford , Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 07/50] timer: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:00 +0000 Message-Id: <20220117201943.873922-8-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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: Erik Gabriel Carrillo --- 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 Mon Jan 17 20:19: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: 105936 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 53F31A00C3; Mon, 17 Jan 2022 21:21:21 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AD5F5426F5; Mon, 17 Jan 2022 21:20:44 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 51F43426FF for ; Mon, 17 Jan 2022 21:20:43 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450843; x=1673986843; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=8n7uNAWvK5Pf6Iru/aZ+6Vk5CWQYZSMjVYa+VtnZgVM=; b=KzmZ7OxMsvLw/th72NCSFYZZQfdhX6YT7bubQibUZ6KYz7oYS0y6VJf9 jGMcTAcCrZaKXy6W2SrTUW+xIkaCN+1NhrTKiTxjRBPH1MtXVOhJOjKLs 3DbJsuF01svtoz26SgYDaseMmi/ndXRd45mTvDLSn6QN43ejdmDLpJcLr avo57MIRgQgXNIgdVTKcXwnH0YEWEn9IrflBPvVlbKMW63EB/9fcbNViw XeT9t+Hwx1qGoigZCDAOjsC9ozyn1IilM4/V2EOleKeHQFxfsG6Yd8qSp jRjCLeRbIjW1VLRlNwyqc166MjYkXsnMSc9eL5S5yEecMAC+RTXm73IqU w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037957" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037957" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:42 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520774" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:41 -0800 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 08/50] table: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:01 +0000 Message-Id: <20220117201943.873922-9-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105937 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 946B9A00C3; Mon, 17 Jan 2022 21:21:26 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id ACE934270A; Mon, 17 Jan 2022 21:20:45 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 786FF426FF for ; Mon, 17 Jan 2022 21:20:44 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450844; x=1673986844; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mjYVeLiFduBoKrJgJBsEX7bf8Oi8tfMrBHr11FG2Q8A=; b=bTs3y77P7plQ5Ev7G8kry+1kPW3ReF8/2MbbJxOwlNzd09jWhfi/X/BH TYxQ2HDrXKw9ws0BvyXXkJmDLg/l7lrNyo3zTLTCJdpaty8mrAkg12pe5 uaGTkQvQ6dgmZYkGWjGAR8ezNfStitPG7vPQrRcfdTzbBzhJw3MIOaKc6 jR0x0sEfbRbivBtJ/kXDfJaC+YGbi3gwdxZXqIHQLF69KL0CH09i+5s8e +FHpzVcYiZDsT2QM4XORlYHWQWUEK6XPg6GvGpxB0YGcr8dAnaMSReW45 OIVf3+ypCWYyohulPL5CfoAyDu1WIS7r+GNZghviBcys1H+03IEFGlPnG g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037962" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037962" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520779" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:43 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 09/50] stack: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:02 +0000 Message-Id: <20220117201943.873922-10-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105938 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 C0972A00C3; Mon, 17 Jan 2022 21:21:31 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9D1B84270D; Mon, 17 Jan 2022 21:20:47 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 167B54270D for ; Mon, 17 Jan 2022 21:20:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450846; x=1673986846; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XC//6kYGQ+23cOqeDkVk0OMscfTxPiovGf4bu5YSmDU=; b=DqwUP2LaUojB0uemD7MM0tH/SHzhEUGzjH9Q9ZoCVgPOQ+9+OK9TgTA5 m2Sanca365XrxsHS5nmPklJF6ZhgJbQYpgQks/yEmaQTn6Q4F7AqszsPs SYtexJN04UZ0ib5oHUMAi4QssbqZBC4QkV3fIArgbkFrqI4FsJUZNnED9 7S8GyqIu00MgID2MPM+iOcNmHyX28ua1E8fOEXh9uE+w4qRkLIh7eHqmy SD6ndZ1839DvEKSJhaJNrtu5l5tSwItQrn008jzmvYkOOlX1wy9N76XQe kQ1v7bm+6mGsIYgnmJMoJUEARX7gSId8rBMbLsE8I1uzAK8niZ4A2dbai Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037970" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037970" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520782" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:44 -0800 From: Sean Morrissey To: Akhil Goyal , Declan Doherty Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 10/50] security: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:03 +0000 Message-Id: <20220117201943.873922-11-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105939 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 E222EA00C3; Mon, 17 Jan 2022 21:21:36 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8185A42713; Mon, 17 Jan 2022 21:20:50 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 82955426F6 for ; Mon, 17 Jan 2022 21:20: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=1642450847; x=1673986847; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Uzky0EbMwCeF2Z7312/0yz/yhkrRZ1B6R9P5qvl4q5U=; b=MHR7dZZGuzwz9so1ds7Plz6BeBq/r35CLCOg2oh+43+nS3oujZPmOrur taXNR5KhUmwzn0Nkw9btCDnoA0flrXAkbj2Z3KKSS+zaYdZ9fwfxvPYnd TdWKdTTy/Y2Ck9NFi3kbO3MSQ6XESnD7ORhJkINhywyEIb4oMUCZedfMo dzNnpO5vIlbASU+6rvkbIzjAQYHLVyz9e3EE5bkbakJN/og+br7ON12OZ fnJRAB7mC8sbgLUj9XQKZtxG4sa0gtCDqT+sor7Gh+8lpj7yEV/zNpXfL e8xbG/w6jSuc/zmYcxmunj9/lamvPRIgw1pditEycgFbOhIDfsrkgaTgb Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037983" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037983" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:47 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520786" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:45 -0800 From: Sean Morrissey To: Cristian Dumitrescu , Jasvinder Singh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 11/50] sched: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:04 +0000 Message-Id: <20220117201943.873922-12-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105940 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 95B9EA00C3; Mon, 17 Jan 2022 21:21:43 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 65B694271C; Mon, 17 Jan 2022 21:20:51 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id C949242710 for ; Mon, 17 Jan 2022 21:20: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=1642450849; x=1673986849; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=DgAARMc3lGaToMseh3ulg78UV0c337IUm9Qzi0ioXE0=; b=bIurdCcBxR5WIs/xQr5zoeILqRPmen4EIc7NYsMTtPGGYQerz+WgfEXD LrVwUBQUUUAXDnSs/vIrYkX/fTPBsO5G9GgO48PAU8YWmMNWG5qYuOJIN 7JE7sar4aDAwngpe5zU+6hPxrJrVuQFEq4Za1N1ADeOrn9DaNDlDOR+hc zct2tEmZYJIFjm5DSPoRb94S9MYfkso3yw9qfZLrdlizEuGjDdJeNJl8A RYorDBx9anS1WSvHXmjmGLWH53Eecm85AxqgNI8djuLQewkpwBgAxntsn IGj98NkvgtjW/EW45YGu7zdMKNAmp9EqNEIihe9cTrDacbH3DlZO4Ugza g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037990" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037990" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:48 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520795" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:47 -0800 From: Sean Morrissey To: Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 12/50] rib: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:05 +0000 Message-Id: <20220117201943.873922-13-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105941 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 05B30A00C3; Mon, 17 Jan 2022 21:21:48 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4312B42724; Mon, 17 Jan 2022 21:20:52 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 1538F4270B for ; Mon, 17 Jan 2022 21:20: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=1642450850; x=1673986850; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=WkP6rz7fuURRRU+lCzi9DQzkDpkjMO3nW7h86yau+bI=; b=n59iRyOZ0s0oabdKtPG4Xt6fGM8qjv5gvR7sb16UQGdYAYZKm00j4kuJ WGo9aNCIDQ7kjfoyzEDXqyJcfI6ofaVKT7Isf9eZUTZtooTY0cFjBPfR7 ayp7hA5eaLNIdRqVlNR+rwNGT2AW41qewwiXBx5YUuA//pAMl2AUBp5lN j2g/8jwfLLplEI49VOoSkRzDiUQ9MqI1JHRArE2xXg7u9N4Vre/1nML+W Oh2pYEYnTslsBBUAnSA8JUbtvhtsq1VdI0ifRLHssYxEJYKNXmyCgl45R W9mc0EhqXY1xDaa9z1gdg5hcmeOTJiY+A+6zF9HqUVWm7xodoOkg+LeGH g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331037997" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331037997" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520801" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:48 -0800 From: Sean Morrissey To: Reshma Pattan Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 13/50] reorder: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:06 +0000 Message-Id: <20220117201943.873922-14-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105942 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 8D13EA00C3; Mon, 17 Jan 2022 21:21:54 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7CF7F42737; Mon, 17 Jan 2022 21:20:53 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 57BDB42717 for ; Mon, 17 Jan 2022 21:20: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=1642450851; x=1673986851; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=UuqccCxIv5oEv2NxzHdQTIwjmcLClK7HGEY4yDOIEq0=; b=Y6VlwOW8Glft+ovomIQ7sSVczuAahbNZtVDyWLCba+Q2CifwsxiLwFiL /O2OsIDvjQb/l25o5jhID1Gu5bi636WZDA2xHLr6T82MyzN/lp65fXLIQ tltklMeXYz9PnbAY+GfloqAzVprkYkuJhS9Sk7XHmQJQiQPTj7J91strp e0IbaCnNO8dbo6kjmkH4upcMMwk02lanDrDMnNRjpN2P4EUR6gTwuIGdy 5Dg9zFpN3tQ1MdWERQ99CBdk43DvYZjN+p2VhNPhZXdVggyaoYRWJyskY d4Vpj8D32mKwFPxWfGcc6RwOQ953UQoWP532nY/oQUXH8TqWk9fNT6OQ3 A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038004" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038004" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520805" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:49 -0800 From: Sean Morrissey To: Ori Kam Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 14/50] regexdev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:07 +0000 Message-Id: <20220117201943.873922-15-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105943 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 96497A00C3; Mon, 17 Jan 2022 21:21:59 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 55A074272B; Mon, 17 Jan 2022 21:20:56 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 9C1364271E for ; Mon, 17 Jan 2022 21:20:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450852; x=1673986852; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=xM99L+P/Yv8BMdHUjOxjUH0I0N+/RyZo1Txfd85dfc4=; b=Yc7fM1Sj7c35nfg64ISoiZDuu22hQWd9+rVNY6RybNb307baQ3nvqleo Jy7KFMZaaZVbzTJtoIfkxBIWtW1SYOZJJZW6o+UrdvMjMg8bWvGkqyz9l QG5gnlxe7hyVgeiGYXlEPgsmvgdp1Fhtt26jG4Dd7vf7RY0xeu+V1aumI o+5WGIadOZwPnVNmIMyNGROYHCJR9RHE82bpz06vPfHsn8otQI1QuR4V1 H5hQcK02YQLAVDThUqbWOkEp8RuBwpzpNShAzTLHcfBmM5BQn0Yf9F9lG aZP8k/pneQNGj8JZ9jkCaAwTklINAVYUlDOQy5n3mRHX+YC8vDXZRERkU A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038010" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038010" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520808" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:51 -0800 From: Sean Morrissey To: Honnappa Nagarahalli Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 15/50] rcu: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:08 +0000 Message-Id: <20220117201943.873922-16-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105944 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 342BDA00C3; Mon, 17 Jan 2022 21:22:04 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 39147426E0; Mon, 17 Jan 2022 21:20:57 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 1E4AF4273F for ; Mon, 17 Jan 2022 21:20: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=1642450854; x=1673986854; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=50pKyGb506sog/XYEEebYHFbIbVyGDhdCl9k/Kq2p8k=; b=E30CjVjHJgK3MLvNqqf6GfnXl3xBfWP2uexsR48wJAKfzYO5v6vBdbRm S5ww9GHdkJIOt4AyAf7qB8u8X8dO6GNwO+Zh/R1HlDFNZZHBclEjq5Yjy n5z4r5n00aOkG9gpVk9uCus/+3PUYKEZHi8DSdA3m+XOSqSZ87+YfEbxa C1t+8sbzo8gdAT+2NE6jNlxnuEgvomXtnJHeC6fVo9JfweefZ6xXsFbPK r+SiCIlYnwAuFCA1zo0ldiUy4swZMtSmNHw6FyTFMSYKpj+EthDtga5L5 2YGdetHsBbHk9qZLP4ID5XlmPytR2L3KnThdTHz1C5WwZy02Hh4GKsmbf Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038019" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038019" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:53 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520814" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:52 -0800 From: Sean Morrissey To: Nipun Gupta , Hemant Agrawal Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 16/50] rawdev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:09 +0000 Message-Id: <20220117201943.873922-17-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-1-sean.morrissey@intel.com> MIME-Version: 1.0 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org These header includes have been flagged by the iwyu_tool and removed. Signed-off-by: Sean Morrissey Acked-by: Hemant Agrawal --- lib/rawdev/rte_rawdev.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 Mon Jan 17 20:19:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105945 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 CEBC1A00C3; Mon, 17 Jan 2022 21:22:08 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 16D0142738; Mon, 17 Jan 2022 21:20:58 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id C1D8D426DD for ; Mon, 17 Jan 2022 21:20: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=1642450856; x=1673986856; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=weYOb32PxVT4qyDx+/5LGpvizyAaMrFYnG1UsPt+iX0=; b=mjF5WTBN0mv24EMJL9a81LQ0x9jEy9VNxiuE9+g3F1QYLRfHQDHt87C0 PLr5ieBK5S1koZXJdVLZ6m6mbLJeERbSKQK4uOUY7Wc3KbwFe3pdiFpdJ hjne5rxCmYvG5cXJ3vE63j4AqpYKOKZJyESqyMNiJmXvhuu6VJM6Xl/vC MAuAntqxEGyyEHRPLOqt5Qk6Vigv6sXKQstb9JKAo/JerUCvqeG4zFx6P FHWHP4QNmmHnY189xIGYr7Wxoe7h+AjGSSV9TI6cm4GwgUf2M/F21HumC +blDhJYDd3LTrWJxrj98+/zpxQhz2K/ftATPWbcVNpZfbWoKFoY8r6sOb g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038027" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038027" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520817" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:54 -0800 From: Sean Morrissey To: David Hunt Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 17/50] power: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:10 +0000 Message-Id: <20220117201943.873922-18-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Acked-by: David Hunt --- 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 Mon Jan 17 20:19:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105946 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 7D93BA00C3; Mon, 17 Jan 2022 21:22:13 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E828042783; Mon, 17 Jan 2022 21:20:58 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 2BCFE4272E for ; Mon, 17 Jan 2022 21:20: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=1642450857; x=1673986857; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=cSZglcfcKi63QqKUUpBx2Pmi2AWDSq/U3VI8BZCNz7A=; b=kLzjeMCh8ZkDXJvYIQvE1dZ27Dh3ptcQS75UiDy+DIpGsIO9Fta2dN94 WjcZGDa1aAPDh9eg8zpdHv932CI802rNSqPU1xjcU9KrRSPb2U206odB9 rpOK7bH+hnfT1w+KTb/XC/TNn5j+Hm2xQncyi6i/W8VU9JZSuMRof7Z25 0UhkVTjHxEtdgzhW5g0Sow79RvLfmr13N4HLukYPNKm1rebLZd3NwM/GM vkp3Nzu/9QnXcyykTj60MBMCP39HB0wkRKLtIo7vaLZ4gY2fKdGpz5ujv A3a3XGLOKkWFjof0jAK3uha3Y3TeBuY9dejz0YWnJKzn2r7oq7vpY4ZUC g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038035" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038035" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:56 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520820" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:55 -0800 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 18/50] port: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:11 +0000 Message-Id: <20220117201943.873922-19-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19:12 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105947 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 3378CA00C3; Mon, 17 Jan 2022 21:22:18 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id DDA8C42787; Mon, 17 Jan 2022 21:21:00 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id A74DE42779 for ; Mon, 17 Jan 2022 21:20: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=1642450858; x=1673986858; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=+na9zf7PTLIO6LVVvfqzqJ9xTn1V5VMoei+d7GgY6sk=; b=hrC5GlduOhPKpX7DNx4NDA0FPxWVq5hqQOXK7NpiEW2+Aqy1zQ1+keJh HaJ03uKIdG4qP3helF54N+k1A+qzAIw9hyQLYFQdLmp/QxMMvZQTCU/9Y CKPVCIF7j7OvY+oSWH4Gk/GEFm2xQwNIAzk9Decrd/MFwJecZn4YvtamS XwTFQK5lBZG94LOnG+x3ipad7SD9dm7uveRdRQMZ9vkevDujLpc9Z3WuE LFA++llagoT6SU6wgGIbwz3+03kba0fVbH1nKBV0HPGRa2+JESelIwB07 9A21w1VOWy/8aeVaIdPKm97xwfYD78v+QEBs2vlD0gR2g5l5PhLeZMQMk A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038041" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038041" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:58 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520829" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:57 -0800 From: Sean Morrissey To: Cristian Dumitrescu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 19/50] pipeline: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:12 +0000 Message-Id: <20220117201943.873922-20-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19:13 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105948 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 76A66A00C3; Mon, 17 Jan 2022 21:22:24 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3027542795; Mon, 17 Jan 2022 21:21:02 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 2F83D4273F for ; Mon, 17 Jan 2022 21:21: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=1642450860; x=1673986860; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=mhp7Qf5sbPH71MG3+BwyuYtvhLatxsuGRv0MpH1/PEo=; b=EIAu31ObBm8v1SatIo+9gB12lw5CtjJdlKnEvCFDqdpEfLjKqx3hf6et fmz619gzH2Kn+xx1L95x5XnWRlXd3NKB8qwhhtJMPpFFH2tLdeqZvVK4N 5+HVY6trIsXfkS2/CcI/XIchuwqfeXJhOasH3luaT9ZNSMgz6wCQ9w04K lA8oBi7QwkSpVxd4ihP8/PaZ43FTSXHtZROBJLdt5KPqKZLZi9X/uaO+m OAkPhpwKdZC3o04tL71E3uAn+u1bAJ2yPN0+x1F4VQJ6jrCJHTiY1SVBh jHB87DwNFT2vjIrxzSTmuOBURK8H5L1Igq+iDqZUbDgglCYWt1ujRKF4Z w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038052" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038052" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:20:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520851" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:20:58 -0800 From: Sean Morrissey To: Reshma Pattan , Stephen Hemminger Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 20/50] pdump: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:13 +0000 Message-Id: <20220117201943.873922-21-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19:14 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105949 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 4FDD7A00C3; Mon, 17 Jan 2022 21:22:29 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 238CC42790; Mon, 17 Jan 2022 21:21:03 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 71C164278A for ; Mon, 17 Jan 2022 21:21:01 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450861; x=1673986861; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=+6RkWs1n5Neqw2ubf1bi+UzR9Aakp3EuyBtQvQPK3Jc=; b=ILO4XOlPUpKsGGaYexBwsAMOpfZUJA1wslUCGeikpFtwdiYIGTZEOHgx Xs5Za5VEQED3danodYnGvwqkZ+kCQhLq1uLHmG7ufHhw7n1iMsbQH5iNB dF+XTaxWjCj5uMx/4pghhbKAThAFuOd7jt0L5qUPmc5NiI3HvkqNxWtZ8 EiLABsXaETwrf9YSGuWgMkaTwndEiQOSKz3PIgS1w/DNWc2y4n6Oj7Uv/ wUoyfPq06dSarfsiNY+u8ptev7NH5XmxI/IzaRN2KqGbGQuzjUhadwNN0 hA0myZixBKYg6ywFY7yP2cJwC7z/7xi5nuf+UY7sAveOJpdUQ53T/q4Mu w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038063" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038063" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520858" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:00 -0800 From: Sean Morrissey To: Gaetan Rivet Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 21/50] pci: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:14 +0000 Message-Id: <20220117201943.873922-22-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105950 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 05CB0A00C3; Mon, 17 Jan 2022 21:22:34 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4C67E4279C; Mon, 17 Jan 2022 21:21:05 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 070A94279A for ; Mon, 17 Jan 2022 21:21: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=1642450863; x=1673986863; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=550ljhVlbQblPCB5CYHexqerWPnSDdajSYhG1wHQrxo=; b=eazQv4NQMkk/iGGPCiUEpI8qMe9vu4OfmG5fu9epXnAuAG/Ew2GuRYOT 6yibk45IhHGWN0CriPbgZIYmU8LmX+uAZzvmXy0aj/ADclzIxMu8nCg0Y oejYh+0Wuerc2nGgrBVoz40uGTNVYnCi89qsifPn6tHoSokJ1BApHexiq ug+XPhdyvNUujxxiTGZLFwfiCKTKU6iYkCZjnbCDkEIBs6JA2noCJ8AUt 7TaLdoN/5RnvtLMfg7IYYEamJnuXGRQc1Lg15xLAe9qpRsoIqEGux4VIc Eh3seLvC9qGP4UhRruqBe4OSM9/XboNQH16qMi37+aU3PciN4cG3QZ+Ax w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038072" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038072" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:02 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520877" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:01 -0800 From: Sean Morrissey To: Reshma Pattan , Stephen Hemminger Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 22/50] pcapng: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:15 +0000 Message-Id: <20220117201943.873922-23-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19:16 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105951 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 460D0A00C3; Mon, 17 Jan 2022 21:22:39 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 50479427A7; Mon, 17 Jan 2022 21:21:07 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id BAACD4279B for ; Mon, 17 Jan 2022 21:21: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=1642450864; x=1673986864; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZrW064G68NxYOzRJTEvAj3Q+sQxqzp8prYZi3RBmlI0=; b=GPIUj8INqqaGrGomHk7Wi7aXP0VzAmdQw+61YrDz2GMIDxuSGZ6CeB3H xv8XRJSeU72aTr3CToo7NWqxP74KVDOBG3VLS4XvGnkZspPPqWVjUEPU7 /X3LhZk5rurivqZktRvTjE9PUs7AgIDHP+pchjGFkrK2pfoM9haj6+xB9 5u7X47F128I5OcbXx70WtqNVhv93zpV0mSfsFcBL2xmelSyUdRyMH5vEv Ay0NXBhV8aTpaEQqPbAnT1Vjbw+IFtioC7eQ3kGOp32b//OffzG2bZH94 463JFCUkXwRG1NZ/FNZNylzNCK1btNiFZdNpls36PvPaonl8YtCeE+OZG Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038076" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038076" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520891" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:02 -0800 From: Sean Morrissey To: Nithin Dabilpuram , Pavan Nikhilesh Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 23/50] node: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:16 +0000 Message-Id: <20220117201943.873922-24-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105952 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 C5462A00C3; Mon, 17 Jan 2022 21:22:43 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3EA45427A5; Mon, 17 Jan 2022 21:21:09 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 8CC53427A6 for ; Mon, 17 Jan 2022 21:21: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=1642450866; x=1673986866; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vHlQ64uz3Dgb1mKLToNRi7Pf8WCv4Cnh+ovSEE/ksgo=; b=S4Cd+AmE6dZKVLN6p/4ewVpaDQIyvZBKcEXrS6aosnsMcGhhuBgQ3IAb RJbkMiv7mvGjDYi7hxyUPAyOvAjvPZB+9bP65/3J+XfHQ3KYjZBzDKCp/ /8Jnp7MHU+S3IjQLkbU8mBFegAOzeruVgdCMTetzfKgdzWLJeAsbmkEN2 0eH4QmDxVFsaZO+iw2LB2a67ta5kB/4lDd5ly4ivgweIen1ASB6B1y4Be 6wXohhyyTYKm0JRG4OEgHy8gWBiE4WOd+BwhNqnr4cSyYH0UrgVln8N0F cNUOOx0bycB+Vb82B+sIG0BmgWr4pAWDxJ7naeMWBiDM91cMfWASSJs4O w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038082" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038082" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:06 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520909" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:04 -0800 From: Sean Morrissey To: Jasvinder Singh , Bruce Richardson , Konstantin Ananyev , Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 24/50] net: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:17 +0000 Message-Id: <20220117201943.873922-25-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105953 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 8495DA00C3; Mon, 17 Jan 2022 21:22:48 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 35FD0427B3; Mon, 17 Jan 2022 21:21:10 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id C0D62427AD for ; Mon, 17 Jan 2022 21:21: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=1642450868; x=1673986868; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=KYIoP8W6bKrVbI8V0gOlcjN4k9F2lpkQPt5t6EqpGYU=; b=SohRil1R4y2VS3MdkIgIr9Z72Pud1h15LYet9IU0msyXT20i4n4fus4D l1bJW4VoP4jP+hxtek1+elhKs/80en67QOl3jEYcY786ANo3qKEsIr84m htkopWoc5DceEgP6zIhn6qrV82iP+EynZRd68Ozf1fO1+CTybwPPeEBtY 1b1pjDqeWbPcc4el+ozyYtZb5iFhBloJx6STNRnuQh8a+rEpnKEJxRjwN yqdKHoxezSNHKw2ZKygP/R6GXreRguQrKwgl4iHFEvW6ep5GAI3YkqvRp 4ej89GRC2mCOL4rVC1irIzi2Ore7evQds+0UFvpDF//4Qw/13gjF/ILk1 g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038087" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038087" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:07 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520917" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:06 -0800 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 25/50] metrics: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:18 +0000 Message-Id: <20220117201943.873922-26-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105954 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 85B39A00C3; Mon, 17 Jan 2022 21:22:53 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 19253427BB; Mon, 17 Jan 2022 21:21:11 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 7B332427B1 for ; Mon, 17 Jan 2022 21:21:08 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450869; x=1673986869; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=5nYrCTy+lMMYB4vECTlaMQnwvxIeENPvuBLz5MGZejQ=; b=gmldHAIpaaEAvLwLPp+ZBR6/yp75IL/GYvYCUpojXqwQiuFSxKP2Q/1n /fCKEO9lP9u/cNAfcQCxo2nX+nUsadph622abPfGQlZFW+CBrXNm4nTE1 i99JEvo6Ln6+VZs/pnKUoDCxNQ8kkdqWwsFORdWwLI6jcFoUjjTQJzdF6 g4XrBfVCtj74izpoktBxNuzaReDfjQIEOZu3zia7plMnpLu2UmbydmWCt ZNAo5zHRwgRWP75cZF0UlrN/pAovQxLo0sKeUE+nhGwz1U1g+3mGgevio ZWjIfwWlWR9NQb4Scd4v4hfiw0YXTPLhL2xso4fTlMNcwsSozUWEfOBFF g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038091" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038091" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520930" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:07 -0800 From: Sean Morrissey To: Olivier Matz , Andrew Rybchenko Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 26/50] mempool: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:19 +0000 Message-Id: <20220117201943.873922-27-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105955 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 06B0BA00C3; Mon, 17 Jan 2022 21:22:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 01B1F427BF; Mon, 17 Jan 2022 21:21:12 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 9E096427B8 for ; Mon, 17 Jan 2022 21:21: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=1642450870; x=1673986870; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=MU/REjD7QD1HrjqUZ6oqJjoOAWK4aPeQcd81LisMSuU=; b=R8K20UQA0Q50TB15FiEgi6uvPjlC69esp+KyEnDQ76gfo44EFK/O67Ht nTgw7Kj/FQxCbKI9hdm1/zsyv33zh3PDyv28JYOiVloagzJk3TTiOdU4Q cCLHfuK0FKgubbfmfYsxeft98hrLhiv1uiDhA7pg6YnExVAHBu9K8n0yN 9URPRzDml4tBxCFboffVMMLBYZ1OnG0DdKDgAudgirjBDU5tM6uF+NHUS UP0+8bJGHcYXnXs47y/z6gro/VsltVcUO1LucYSGyn8N9eV0IOSU4EfKI 9fajbeBqGO1GYxNj47wJqooPnUu2+OcTgCu9QyiF+EcVEo/qCHbClLP3b w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038096" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038096" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520940" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:09 -0800 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 27/50] member: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:20 +0000 Message-Id: <20220117201943.873922-28-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19:21 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sean Morrissey X-Patchwork-Id: 105956 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 A200EA00C3; Mon, 17 Jan 2022 21:23:04 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4244E427CE; Mon, 17 Jan 2022 21:21:13 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 2A95A427C2 for ; Mon, 17 Jan 2022 21:21: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=1642450872; x=1673986872; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=y+DE9r6OXVcOknqpQgg1o9Sf5KW0Q+PMkFmO+UW4sH8=; b=Er5A4OY18pdbtYkMnb0G0H2xCAuqUmdKhGHsQ+JELvLBsdgCsZjyB2FQ VXiygh2o0qQc9QPV5Eng0mfqz8OdEeBAVSt6pob+NIB8SsdDlBeGnvoZc GrngtwmgC4b/zR3TWQpDGePm8jKuMYUJ5P3OC4zf20tMZypD8742LubXw phXj7jdMelBNrcEiFMCF59QDw/96V9e98WpNz33HF4e9spcC0CLEaK2it 10CGs59uZpLUJvth/ctSKGNvaYGzD/oJVqUvH69OWxI+CydGfFD5r4wd+ gDvDhr8Upb9G8UG6a3g/Zx2rxC4Fwa7hWOWTh/v7v3Cc2uCV4lbYcFRmI Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038104" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038104" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520951" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:10 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 28/50] mbuf: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:21 +0000 Message-Id: <20220117201943.873922-29-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105957 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 969F1A00C3; Mon, 17 Jan 2022 21:23:09 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1C873427D4; Mon, 17 Jan 2022 21:21:15 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id AB354427D4 for ; Mon, 17 Jan 2022 21:21: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=1642450873; x=1673986873; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=ZU/fWrSJ9Sly2GpqY+l+YVjU2sUVtRoeqVwHXFKvJlU=; b=iFXeMg/8+djDMIc1uCVA8WO5NT9tMvteiz5g3ECbe4uRT79fUO+jkeRT mnJvwKyXB6FFkMhDLJmVWtsOZ1S/RW+3fSWX27DbrfurjBZ1KTi4Yf/7r +nYbeRMxDZsby3TJA1s4EGBWekBYrPRt+2UgM+uHE1TkbqmwLRIVYuP52 2wgV5Z7VgB6pbghh4bpp/KS2J2k9pG/iosmSOpt4xfcIsB/esq7PHVC5+ c4llEPwoXGI++T1/3B2kW6p0CcQEtTO8pVM84Aj9lzM6t8zZ2EJOfBkb1 zu3MIwLBELPR90Frld2Rn3ZPK2WEs2+In72pNlYFczZKKwphLNixoT30y w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038108" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038108" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:13 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520971" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:11 -0800 From: Sean Morrissey To: Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 29/50] lpm: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:22 +0000 Message-Id: <20220117201943.873922-30-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105958 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 B9B9CA00C3; Mon, 17 Jan 2022 21:23:14 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1E130427DA; Mon, 17 Jan 2022 21:21:16 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id D8EAD427C2 for ; Mon, 17 Jan 2022 21:21: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=1642450875; x=1673986875; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=anC25U6lCPtF3M+fedWTaRe18+D0LFk1yWV5TY5ByDU=; b=LEzIFF3V4rUWvgFmyOom1m8eYR4JdMxOVkqWIRXNL5S/CAqz/tM09gUJ FD0zTmvDOePrAB2Ylg/0yzDC+Q4KkHIZXnS9OhtV4M8Dy77k++l7XazRA gx6XtPXR0iapFkweMRtlzPTUTO5I+hXkhGG5aSVT77AAUisTJwGcJiINC +Ii1/BjxE/+Xs7DytYn4/j7OTeMB+37TTvY1GbzJl49DuZEcxd0thA2iE xPeg/UAQtLtS7YxnH6v/NQ7KkLbTec3GdIfHk/npOs1XoG5KHv4aoAtou FF1cZrRh1utoiFd+Cq7JdPsfyMsijKWKQhtrpofGrvskUdMCpKXUoOYpq Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038115" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038115" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520975" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:13 -0800 From: Sean Morrissey To: Reshma Pattan Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 30/50] latencystats: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:23 +0000 Message-Id: <20220117201943.873922-31-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105959 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 61AE3A00C3; Mon, 17 Jan 2022 21:23:19 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2AE4A427DC; Mon, 17 Jan 2022 21:21:18 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 30CCB427DC for ; Mon, 17 Jan 2022 21:21: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=1642450876; x=1673986876; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=pGdplYfecC+JqqjMimlHuyEnHK2NopXUrT877UPIQLQ=; b=WAxlO0zB/6x0HvksmYq3Qyx04VO5M72Ud3f93ge645+VlvjemfORjLzW E2a6a28SdpWBEq0MqUNDrv85g85wqOyQ6NKiKBr5lCn2BGMGDMNFn396W tht0ddwPNCJ7COnCRyPcyt9MJCl4aF7QO/K17ID5N6wPOhcCIHlx9Aiaw uMQNFV4TGaPnIH+iUmAhxSRyBBzhPLCf7Xr7FC+TzW7jB5kqaN5SIelvK sAuvszj/YeS7HvqufHTJZFqhg2vKRXGF1Zc6aNjLuwa16IZAiFCjCEnWJ WoCeANpfYBTur0Mp7P7phO01u38Lx/tUhJrJWQpJLVWf+X3i0N+daISeG A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038117" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038117" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:15 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520982" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:14 -0800 From: Sean Morrissey To: Ferruh Yigit Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 31/50] kni: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:24 +0000 Message-Id: <20220117201943.873922-32-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105960 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 07456A00C3; Mon, 17 Jan 2022 21:23:24 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 12AB1427E0; Mon, 17 Jan 2022 21:21:20 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 6A32C427DC for ; Mon, 17 Jan 2022 21:21: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=1642450877; x=1673986877; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=FELRGDbs0t6EK7C56kMNNVL1QBPrMpzknsnkhQIVnNY=; b=Vb4Os0cCJ7Z+jMjSoCcEeHfPVypfM0WAwDrh5fbHrWNBU9V+aVLGUTgN ozgmWoTCDnzqIqbT4j3J6C9GrWLmYjahym4wT6U2sdzsnbnWCNByr4GBL ZqtfImUbVE1/yQLEjDUtO1iejLDveQV3lA1h+iTIkCB0RKB8aZ/NpryJ+ lTlCVe1dQrr52mD/Rs0+FVwWJ+WVXn6VJ6+4pJfw2WBQ1OOXGZ5YszVt/ kXvO7qC05Q01H1U8ynyT4IMHM3txSAFI1ZBMcPpEyH74ACvEbCOer/itr RQ4xigXNsrGyT9Cat1So/VgBnaZJ98kgE70fJCAskmJPvrtKeukFeW9mo Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038120" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038120" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:16 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520988" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:16 -0800 From: Sean Morrissey To: Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 32/50] jobstats: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:25 +0000 Message-Id: <20220117201943.873922-33-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105961 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 7EC79A00C3; Mon, 17 Jan 2022 21:23:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 0EE8D427E8; Mon, 17 Jan 2022 21:21:21 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id F140D427E0 for ; Mon, 17 Jan 2022 21:21: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=1642450879; x=1673986879; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=zEiz47CG+vBIA4HwZ6Xk8p6JmWzuUDtRLy3kBBLVsVQ=; b=G024I0Lrb2jI3ENhnN3ldxWJN2O8FPW3uq52dND9FSoYUKG1O75ojsZx QED5TpevaftE3O+rszH8ctHrFF7OlJ3oB3ycJRwlepICJCxCRXsv/Bl7/ u9Amyp1Aa+QyXq8tJdYSzybf2caYWSM6Pep08Vp2xDh4q4DcJPfUnP5H8 pMMD1T7WgM9NeNCYwfQFkyMPf/SVrhEAEywXwkNb2RejxtTYXZeM1b6o2 uUK6sutjz8GXG4l9G7oWEZKOCEO/fLbJ6qF9ZxE25VEvRB45+OgVWYH7D nlKb7bhcLA1+MA9o6ZWiPWDNyhkTMklAIYW16NXiW9IApFXxLqMkT7oEB A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038123" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038123" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:18 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517520996" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:17 -0800 From: Sean Morrissey To: Konstantin Ananyev , Bernard Iremonger , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 33/50] ipsec: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:26 +0000 Message-Id: <20220117201943.873922-34-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105962 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 1E9E7A00C3; Mon, 17 Jan 2022 21:23:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id F061B427DD; Mon, 17 Jan 2022 21:21:23 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 684C6427E5 for ; Mon, 17 Jan 2022 21:21: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=1642450880; x=1673986880; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=oFtCIY9g6Hsg2q6+a7A5v0IICJ44O3S20oISZ5/MgMg=; b=LmQghsBSxOLK5kH0z8qp2APpbs3XS1k+DMg/BB3RDIAMfWrkVoWLzUa1 Cv5e6W2i3f+vGA7IudTrnP2n96DjrNPJ8wPuD+sfq68YAS4odeOZmp5dA SksB7kLu6UEMJ2XNgqRF+fawS4vcZnuiodmkNnNMbKO+4xVM7Sq26H7h3 CZM9Mn7xFhT1x1/G6w65Hgp1xp7F7ZZGUJ/87BQ5qHD4W1qsrfsVlJ49v iNs92eZ3QNUNf1lbbs+lMwoO0a1UJ0Q2/7LGMnZc8EPGPn9ZesMwvQDa9 9pbUsP/MZGDRg03YlBoNwK3QjAkeqRfEC1ID9/H3LCH0sfQCAeS1vbiDy w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038127" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038127" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:19 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521001" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:18 -0800 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 34/50] ip_frag: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:27 +0000 Message-Id: <20220117201943.873922-35-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105963 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 B6150A00C3; Mon, 17 Jan 2022 21:23:37 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E9703427F2; Mon, 17 Jan 2022 21:21:24 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 44D80427ED for ; Mon, 17 Jan 2022 21:21:22 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450882; x=1673986882; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=BvTTtictC4X23XZOZ/TZi3Rrp6NCD08P285Eo++1DvU=; b=aZeAQrq5ls9VQgn/5wPyNOwSYEUfy66dX8aWpGzRF5RAC+wzQgiXr+8F oWyfB1OSZGXrxPtEXjikKOaojMIKU5Pgk0VPhw4S62hIZXJRMDW6bt0WS ohqF5HjqF+21n1rwkklHaGAgvIE6b77EPmxB/o6BcesEUiS4U+CJK5UhW 4eC/YxUKmX5DWpOlm0zOoWpJOi5mdiEXlffWKqpeDmN26plAZzaihRpU4 tDv0v9piw1Falwr5sBJIrFR0AxfDyjFNRWojaLw4VNoL7pc6u2ypi2o0N o1Xx7FfFAbuLv37uDdDXbnhS0dehK75ZqcEIz1JJ+OmbctH2e48ZWHgQi A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038131" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038131" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:21 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521004" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:20 -0800 From: Sean Morrissey To: Yipeng Wang , Sameh Gobriel , Bruce Richardson , Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 35/50] hash: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:28 +0000 Message-Id: <20220117201943.873922-36-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105964 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 63F12A00C3; Mon, 17 Jan 2022 21:23:44 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 25D7D427FC; Mon, 17 Jan 2022 21:21:26 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 8EAB142700 for ; Mon, 17 Jan 2022 21:21: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=1642450883; x=1673986883; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XP47NBmybwv8nHxfUrQkJi+EXHwHs9W7YkoCGL3jIw0=; b=GvsQRpbz7JagnP6OREwFqLiBQbvxq1KMxkF7Szz8CLn0TPWKuhryFYO1 IuzQB8lh9V4Cawt0KJ/ahPr3VOvBM4h+F/XliScBj0SaTFTgJbXw38ZMS QoHk2vqSUvk//jhOAAUM0mQpnYANfr8f2mxNNixE/rQG4wPx1gfpzuiLU iLCz6QwYft7iZ0rVYEAz2n9gcD/2l/Eb2/poo9y9MgFPKAVqu0JMrNbcq b7Ifkv1P/Sit+9u5ZIN5Ok3nurJUl7YvqyHI1A8KLLV/kUBZxYO/bbNR4 VqobGF2CrVEJ+cRQJ+2uz2kf6czAH0Ys9ItUSORw35X1vcTGvfnWHnjh5 g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038133" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038133" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:23 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521012" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:22 -0800 From: Sean Morrissey To: Jiayu Hu Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 36/50] gro: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:29 +0000 Message-Id: <20220117201943.873922-37-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105965 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 980E4A00C3; Mon, 17 Jan 2022 21:23:49 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1C02D42800; Mon, 17 Jan 2022 21:21:27 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 63BEE427F5 for ; Mon, 17 Jan 2022 21:21: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=1642450885; x=1673986885; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=sJObvPCdUvZFNTWXaNQKH3ipjpgXCWWxP3KjfvB5v14=; b=LzXTVYFAiiNba26Hm3xoI5PEtIxrERVGC3R04JodxYYk4cl9JL6Xn0WB VciRJ6iOs/hmFkb6g93RooREH91zyMMw3JEcZ4hqSkPckyyBvylXE18au 3QzFOl0oA/TWhl2OS8i0GVkIBON7wt6bDfvgvqxpYLmgW60xE3trI9SF4 kAKEoZdtc9imjkejapbGz0SE+v23TQxg3hfVxpjjKmFuoU0GOb7E3rM57 2YBZtqgzThavJApLsDrSwr64PAbuPvQeR6d65nQELybsamy4RZeueAgCC QIdfqN+VODH5/0merwVpkjKWRtOsp7KyODBHQZbO+xbqUDD3Q+KqujtGS Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038139" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038139" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:24 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521020" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:23 -0800 From: Sean Morrissey To: Jerin Jacob , Kiran Kumar K , Nithin Dabilpuram Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 37/50] graph: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:30 +0000 Message-Id: <20220117201943.873922-38-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105966 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 1BBB6A00C3; Mon, 17 Jan 2022 21:23:54 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 179EC42807; Mon, 17 Jan 2022 21:21:28 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 8C75042800 for ; Mon, 17 Jan 2022 21:21:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450886; x=1673986886; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6ZZ8lL2Js078bNtfDdx24YHZf+MSdp/p2WnH8wfINsk=; b=UlCKT9QY8WwW4fKy/jEbNElky4OThFBGR5ua9i+25qaHjhZGETzzctOF 0dUrfPkWpg8U1KQ2btsaBGV9BEqMWHVD9spMrNJJKnclnyWvVuSKGiShb 6sqr4yw301Q/ginmD2PjS9LMxXz/a/StaKSfTo763d1mmGkDnZZul3hsV NmSGdpVAhK8PjyeARGc/Wlu7Zi03xow02bXcHOTsBMSg8xww4bNnxkAnM EecCy6klLyZF9yaaVaHTld39yI2BIjhKvDGyYwgqqB5vqDKA53wtniz/K 6RTgywaD72zAT5EnSzppyCjeUIJQP+UZnyo54dMvXXKoBtjNLwTD2xONQ Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038140" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038140" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:26 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521026" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:25 -0800 From: Sean Morrissey To: Elena Agostini Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 38/50] gpudev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:31 +0000 Message-Id: <20220117201943.873922-39-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105967 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 64F4DA00C3; Mon, 17 Jan 2022 21:23:58 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 345674280C; Mon, 17 Jan 2022 21:21:29 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id CBFAB42804 for ; Mon, 17 Jan 2022 21:21: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=1642450888; x=1673986888; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=++pfAzgNAHR9ygyv7/ck+Vc7pcygHB3IByZmmm5XKqw=; b=eFc/HPn9b84Lrga+uzN+s4kLOXFVpfAqLGRF4lPk0eJgdyZ0f8CLiTjz aEFPcH4GI+qVEGZu57fpOaSjlnd7+3xG7gOqexnJWbtobq/Kdg7WZp014 6BR5yg4Cv9yh6i492JtmID8cRgBClAyoNGrr3D0e/enYlUJ4Fe3e8HDUC GMGHAFDmf6sxKSMlIQIkoyN2ba1VM9W0cnDigVtfQ79pWAwDQNj9ABfzh ntFEndV8p/QaqGL3K3IG+565wBUOAqstPl1+rsOg/g0zjfX3vb92bgCMo dSzSDkrYGXF7T4CJrKAcRgBJpBu0MXccl7SykY5voJJnAzoEZ6Bb/54ij A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038144" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038144" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521031" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:26 -0800 From: Sean Morrissey To: Bernard Iremonger Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 39/50] flow_classify: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:32 +0000 Message-Id: <20220117201943.873922-40-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105968 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 D4D49A00C3; Mon, 17 Jan 2022 21:24:02 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2424D42814; Mon, 17 Jan 2022 21:21:31 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 87ADF42812 for ; Mon, 17 Jan 2022 21:21:29 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450889; x=1673986889; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=7N4aLqgbna4nRQeFy8OzdM7ZdC1VxvuUgd3kVR6oMaA=; b=Cu7fKGkrfY2y0ftpNxoH+VhPbstJrWFSJW4eFIo++d6CNb3fUYQqUjaJ 4dcUnUxKngKXYuChzDz5JNpNzTDiDTUWX2n84MGp/eaatbapVSS+2upVH p/+CxpVl8H7HtrM2MSJ/yWhpX47+kR9T6xFeUs6/IAhJ2OVVZq4/EK8VU hDCTn0hahERvHPSIO8wY/6xhT17AjqiTMSrHEy6bAO6SfdV0MdTnqEJn3 XDO+GS5o4iUbHBKIvgC8IEk5JTLWdaguqCrsqQglGP7UoBsGZCCdOCWqo NtepozX/DMRN/FBboEJzdwuidfFpuLPqpLYATmjtUvWkYfREnKRS//oMJ A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038147" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038147" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:29 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521037" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:27 -0800 From: Sean Morrissey To: Vladimir Medvedkin Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 40/50] fib: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:33 +0000 Message-Id: <20220117201943.873922-41-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105969 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 3DACCA00C3; Mon, 17 Jan 2022 21:24:07 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1B2B84281B; Mon, 17 Jan 2022 21:21:33 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 4B8BD427ED for ; Mon, 17 Jan 2022 21:21:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450891; x=1673986891; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=3VJAvmb17P29aDb/O7ssAKGuN4GOs7QsF0iW//kRZCY=; b=QqdO0ohQAPOfpIRLNf2PJ3d+o2D90fZpTI8WSEq4lw635vPhyMQiRz91 pWfcOQIBPeK2C9fr4u0jsZQZDQKV4MI9BEP3665kHuWzCxiJ6ZKx6msLB +KCiV8VwfYOm2S/ejvy8LGBmJ5PlZwssrZy29t2AI1r5cuvlAALv5BVM+ iTzvUFBzsbXo8OrPO9Z4NvbnYBbe2Pmo1AYHhWLYXOrKlHbEn8zAG4khu /3i6wdxSDY95zZXVKgoO4J6vjHEXLhT4nvvdpFJiAURAbpMBFblaH8NbG wMdkwMPLJD4mQ0M0F0HlgJrm5r6LA2Ed/tPctsYQKpu6zTUmnSsP4eJm7 g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038151" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038151" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:30 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521042" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:29 -0800 From: Sean Morrissey To: Jerin Jacob , Erik Gabriel Carrillo Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 41/50] eventdev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:34 +0000 Message-Id: <20220117201943.873922-42-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105970 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 9FBFDA00C3; Mon, 17 Jan 2022 21:24:11 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1262642819; Mon, 17 Jan 2022 21:21:34 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id CE11442819 for ; Mon, 17 Jan 2022 21:21: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=1642450893; x=1673986893; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=hg20v+UI6ONaBeJE2WqF5fzVLSkjypVSxIoZ5MlSwXo=; b=lbPqVQFM1ATg6/g39UcXVwUcTCfFl+b9+HXTMDJmcO481a7PhUdBX6Ok 2ZspFjPd/0gcb+uDJcYPjC8beQ6oRfdGIHGoFjyDH3kmLJ/fSIrvdzbcl +MK/LNs4IlZ0CvzpHLuZyKa6nd2a7YhQtVe/8984LalyMmYHSrEjiS8fB mjDSpFkPN9mSvf3GEe4Gi915mUkyjtrO+0xZl/Dg/wyg1OukZGlRoHwNJ GykPrrAyyjo6RjXgZgjx1SULZHwCCY9GIkMv1ein8ghr4WJ4WjOeVL+Qo oXqN09rtDTfTaSx/WW6NfeK3Yr0ueJUqePvqg4HrRZ9o1kxXgPYmjp7iK w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038155" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038155" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:32 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521055" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:31 -0800 From: Sean Morrissey To: Byron Marohn , Yipeng Wang Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 42/50] efd: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:35 +0000 Message-Id: <20220117201943.873922-43-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105971 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 64D67A00C3; Mon, 17 Jan 2022 21:24:17 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4F01A4282C; Mon, 17 Jan 2022 21:21:36 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 784B942822 for ; Mon, 17 Jan 2022 21:21: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=1642450895; x=1673986895; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=X77UVyFCU3KWX9LUcAlutU6RJE1s6pLnHtCx1grTaT4=; b=T5VZHmmXrAhjIo4jJpVoXOhN385cDm0zQP6U+HuX530N9q6/ASlwhA6c zMyrAKtbG+H4MlZ5H/R7D0Kym3AA99CGIIu8KFThPhB8eUUI2zPrSmEws 8BRfTKggN1YIB3gPoepzdSzGTbrnbMk0xEcXNO8cZxhToy9CEtrE922IH N/P7MJBdAEb5HJfDrWziQ0Ry3+o5XC+37VLBvd3Uy1V6ML97uUVX33KZM ye3et7fQXu/4jcTKf3bC247QmP5keL92dxcp242oRGuxof2xGzthjDlyn lWCKRAY4rV/5/Mr0ATBgHAIS+0HoghAfleBECnDr+IiFOHqO28CPV2N9w Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038160" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038160" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521060" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:32 -0800 From: Sean Morrissey To: Chengwen Feng , Kevin Laatz , Bruce Richardson Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 43/50] dmadev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:36 +0000 Message-Id: <20220117201943.873922-44-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105972 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 865F2A00C3; Mon, 17 Jan 2022 21:24:21 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 292C942822; Mon, 17 Jan 2022 21:21:37 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 3BDD442829 for ; Mon, 17 Jan 2022 21:21: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=1642450896; x=1673986896; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=XUXoemzty3cnD/mKc3F/HqB5ERGdQN+sIFdbPTohxew=; b=n1Jj4LgCHEMni8JZwPge9XpZYK/y6jTGfhZQTw0sAHSC0JukgMOZJnV8 nbYK69Xw15V0GoysWd/kWp18B6zbt5wSs5QZYuIqLtKfl/u5x7nMHDByR 9wWGpoLFP0tAb81xG09BoyYC8ofWY4n1580qUaEKHi/FAirtBYhyNBej8 gVcLbp5PsH0J27ykrLYoXGdevugCWUFLYPdhkH00jg0oTos6zYahNpB4v WJFlioJlNCARA2QE8GCm6JJv2gDMHoKOergxplub4KB9IZSKFLO5y9CWX yQkHsWlTkwvFmQZONV+I9Whd1fbxpi91AaEIsEAnEaP61dzvodG823imY A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038163" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038163" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521065" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:34 -0800 From: Sean Morrissey To: David Hunt , Bruce Richardson , Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 44/50] distributor: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:37 +0000 Message-Id: <20220117201943.873922-45-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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: David Hunt --- 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 Mon Jan 17 20:19: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: 105973 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 2FA0FA00C3; Mon, 17 Jan 2022 21:24:26 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 17DCD427FD; Mon, 17 Jan 2022 21:21:40 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 972D642833 for ; Mon, 17 Jan 2022 21:21:37 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450897; x=1673986897; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=MB18BzpcoV6r0lJm+UvYVyzlNk4Jg6WXBTdpHBuhJqs=; b=Et20TyR706tIHuIEJlHyhyPt3ssE9JmzGSnEzNEp9K4J09Lwjt+SvLcl aOrxDmAIfPCYNc1EXbwUCManQqRyR83Ue0SXBkY7XDlzkF+RO7NIV9RK4 Gbtn2Wp0ZTKf9rk4V4E2p9GnjRIsKJNh0/NRdXWuQGtefa4od8vd0wcQK ET4+tdQhQ9a88EakTFvJqmIoOFIOB/lKzYGktzalblC1mVoaafuWGammM lzWcQGroNxCOEs4Tv1FZuEhfEhSga6H0zOUkHTU5XV3NzJL8pinl5WF0p 3yZYSCLYLQCtHIgerXX0EvlgTMr2P2I7sMcZ5M2svpS8qpYgJWYOfYZth A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038167" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038167" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:37 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521070" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:36 -0800 From: Sean Morrissey To: Fan Zhang , Ashish Gupta Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 45/50] compressdev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:38 +0000 Message-Id: <20220117201943.873922-46-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105974 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 96749A00C3; Mon, 17 Jan 2022 21:24:30 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 15BF542836; Mon, 17 Jan 2022 21:21:41 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 212E6426FC for ; Mon, 17 Jan 2022 21:21:38 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450899; x=1673986899; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=lqaCTswMpGhQKbC2eY/S6GEhdVNqhUTo82TU8ktPl4o=; b=n1DzPCWYdie29RwAJQwhw53kS6MduvwVBLVZ5zZ4x7VvdwlKq6qdaXET siHNlSFHX77HYuuTPTbrn1TzgATMI0ePAXszXxu47tddYwVX8P0LURy8x XNEmgCQfdGijj/RRUGKgy82PKhnRcmc2AadQFaxfcxqsYoE3Liuu7gkL2 JuVGW2bNvMVwVoYUwl2T823veL9JB8zPenoryiKl1hZyWvQdCXzNjRKHB JnA6E5xajiPdOCyobM3eVXGJBTJMfWP125SfkUF5Raf5AVRWoa+8HAndJ Wj3aCxFAu9v7x+BrFKimAjNlB3oennkAn8/pv5NcU+yNRlnJmwWLQULRJ Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038171" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038171" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:38 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521076" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:37 -0800 From: Sean Morrissey To: Olivier Matz Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 46/50] cmdline: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:39 +0000 Message-Id: <20220117201943.873922-47-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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_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_vt100.c | 3 --- 7 files changed, 21 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_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_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 Mon Jan 17 20:19: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: 105975 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 EF911A00C3; Mon, 17 Jan 2022 21:24:35 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E63CC42751; Mon, 17 Jan 2022 21:21:42 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 9C86742825 for ; Mon, 17 Jan 2022 21:21: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=1642450900; x=1673986900; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=4WKcVF3AW5g/3waizodcz+Fc/s1DJiQ5EhWPmiWSqlY=; b=Sk6cEvuLtfSwXcNvdRdDcHZUCkew1E5qAgOvjVJr9Vl4vXg4tAzoXoVQ 6VQlaZ8l/uxH4kmkGUYDSPUlUlDXXIhepaM06wROyT8Y/Fxh6TQ9q+B+f ENcylmDtKAJwzEw6IlwwBKsU2Lb7+oFP4U3z8DhHOXvi8QCbKsoEggrZ6 TgwBvL2bAxLbPPeUDoiVdwCTUnNR2ckB5Rmi022/+WFjWpBli4ugzYjRT JAnVSWh4+L3ubdm6yB/woAhHEr88b9FQNWVOv16V7ckOA+PSefRQuH20s CnAsNcMBi/671UTiAsePi/LoV+teeaNPEkLWS2bKObn4SFpNVtGnDjZtx w==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038174" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038174" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:40 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521083" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:39 -0800 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 47/50] bpf: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:40 +0000 Message-Id: <20220117201943.873922-48-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105976 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 0F64EA00C3; Mon, 17 Jan 2022 21:24:41 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C4F7D42841; Mon, 17 Jan 2022 21:21:43 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 000A042830 for ; Mon, 17 Jan 2022 21:21:41 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450902; x=1673986902; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=jONd1CrZ0IUvIrkVEq56v6LLzCxm2Jg/cXb7YrhrfOA=; b=KmAMEFOgbbzgaV7QZn5HePtHWYGnFl/OYUlFZALkgTdRgqVQgqHBKBm7 djettzDhToWLTw7pJLGcg+YHMgfL1OdDzwrCDD9UJp2IJkKRbvoRh7ieB SJBSeUDi/l4paCucox0tJ4c5T0oHUpi7BXua8tRSbdZ2sxAzqPo2mNJ3D Os5Qxoa5xr0dUd84NkIDYS/Hh8BoejOIe1v5XE501lYD7O28FvN8+Tspu bCOAaUCjkM4vUepSrrHMetI+/EArS2KylpiU6L/GfRGZ2jmpWuYgH6MK/ M/z1gOQFnXNV6jieianKNcQXSuZzk5J1Aq/Ce8mlDR1ULw9FC8mZvQagS Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038180" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038180" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:41 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521087" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:40 -0800 From: Sean Morrissey To: Nicolas Chautru Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 48/50] bbdev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:41 +0000 Message-Id: <20220117201943.873922-49-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105977 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 438F6A00C3; Mon, 17 Jan 2022 21:24:46 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B13F942845; Mon, 17 Jan 2022 21:21:45 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id B13ED4283F for ; Mon, 17 Jan 2022 21:21:43 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450903; x=1673986903; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=6lIxArtOeut3kztuAWYmtZS6EoqMYQFy6kUtFo3x0rQ=; b=D/5/wSXl0pBLPsYhQFIee+1iI8Wla+qIUF3SGSrjEMMgY6ZPo44pUj8u GqCQjs2/eAovl3N5eFMHSuu63IhvVqS291jf9FBoDIyOA6MwFmgE5yxid E36LHvTnE7PWgapyRqn2zxLqLXVXjRTbqRnVWiZ8T0ROVZ3JHuMiqWJHS bEqoyUQKvaCKY83r+pI2pRJ88UTY3PfOem+zp0yaA8BJVZ4z2rgGGzN1m hSaKCQQ6a8RU8FzPXxz3d57DPMxIGj+aGhapX7Y80q/TkcY9V8P6c6kE4 t5R/YOHlfpqRJxv1Wd+VaxxYwkgdZxNmP7FF3eAjmLcgbtGwH9Ox5IO7G A==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="331038193" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="331038193" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521098" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:41 -0800 From: Sean Morrissey To: Akhil Goyal , Declan Doherty Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 49/50] cryptodev: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:42 +0000 Message-Id: <20220117201943.873922-50-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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 Mon Jan 17 20:19: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: 105978 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 87BA7A00C3; Mon, 17 Jan 2022 21:24:52 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EE42B42853; Mon, 17 Jan 2022 21:21:46 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 8384C42837 for ; Mon, 17 Jan 2022 21:21:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1642450905; x=1673986905; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=Pinjlhxmyu1NWelct7Hl/mb9kvGW002JpfxiBVUoK58=; b=OC+igtauJX5H9WFfKXbLLWxnAnv+jrQYg4VQh0zcs7DPjVJzixCbUspG swIqiYihThDEfKkSkEb79A4Lnpe1hhB9kM/we0qrwWcrt0ueyxPDNuQ/t rksXSNpyFeavT2IKi2m1315TF27jchxVRD85naIQcZZO8cplpgReZYsag lobTMGibh95NS65g/Ja0VEmERIIboJbQZLXoUwzGgkzaY2A5b4V8vgJaM fqW2AJH0SxdOJH8Ig5SsvzjRm6MSXM/hJP3mcWjcOP0HI/eEht02gUjMz YcT8KXMu9I5WEdlNUcG1cPaHduKiXfwPMxChCLu6PtijS3AlRyKlfBA5C g==; X-IronPort-AV: E=McAfee;i="6200,9189,10230"; a="243513536" X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="243513536" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Jan 2022 12:21:44 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.88,296,1635231600"; d="scan'208";a="517521101" Received: from silpixa00401215.ir.intel.com ([10.55.128.96]) by orsmga007.jf.intel.com with ESMTP; 17 Jan 2022 12:21:43 -0800 From: Sean Morrissey To: Konstantin Ananyev Cc: dev@dpdk.org, Sean Morrissey Subject: [PATCH v5 50/50] acl: remove unneeded header includes Date: Mon, 17 Jan 2022 20:19:43 +0000 Message-Id: <20220117201943.873922-51-sean.morrissey@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20220117201943.873922-1-sean.morrissey@intel.com> References: <20220114162409.334437-1-sean.morrissey@intel.com> <20220117201943.873922-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"