From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2970346BCF for ; Mon, 21 Jul 2025 17:19:45 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2521140297; Mon, 21 Jul 2025 17:19:45 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 27F2A40297 for ; Mon, 21 Jul 2025 17:19:44 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id 0F6AC12530F; Mon, 21 Jul 2025 17:18:00 +0200 (CEST) Subject: |WARNING| pw155388 [PATCH v5 5/9] eal: define the EAL parameters in argparse format In-Reply-To: <20250721151643.2739725-6-bruce.richardson@intel.com> References: <20250721151643.2739725-6-bruce.richardson@intel.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Bruce Richardson Message-Id: <20250721151800.0F6AC12530F@dpdk.org> Date: Mon, 21 Jul 2025 17:18:00 +0200 (CEST) X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: automatic DPDK test reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: test-report-bounces@dpdk.org Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/155388 _coding style issues_ WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon #138: FILE: lib/eal/common/eal_common_options.c:70: +#define LIST_ARG(long, short, help_str, fieldname) struct arg_list fieldname; WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon #139: FILE: lib/eal/common/eal_common_options.c:71: +#define STR_ARG(long, short, help_str, fieldname) char *fieldname; WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon #140: FILE: lib/eal/common/eal_common_options.c:72: +#define OPT_STR_ARG(long, short, help_str, fieldname) char *fieldname; WARNING:TRAILING_SEMICOLON: macros should not use a trailing semicolon #141: FILE: lib/eal/common/eal_common_options.c:73: +#define BOOL_ARG(long, short, help_str, fieldname) bool fieldname; WARNING:QUOTED_WHITESPACE_BEFORE_NEWLINE: unnecessary whitespace before a quoted newline #238: FILE: lib/eal/common/eal_common_options.c:170: + .epilog = "For more information on EAL options, see the DPDK documentation at: " WARNING:LONG_LINE: line length of 104 exceeds 100 columns #303: FILE: lib/eal/common/eal_option_list.h:35: +LIST_ARG("--allow", "-a", "Add device to allow-list, causing DPDK to only use specified devices", allow) WARNING:LONG_LINE: line length of 110 exceeds 100 columns #307: FILE: lib/eal/common/eal_option_list.h:39: +LIST_ARG("--driver-path", "-d", "Path to external driver shared object, or directory of drivers", driver_path) WARNING:LONG_LINE: line length of 120 exceeds 100 columns #308: FILE: lib/eal/common/eal_option_list.h:40: +STR_ARG("--force-max-simd-bitwidth", NULL, "Set max SIMD bitwidth to use in vector code paths", force_max_simd_bitwidth) WARNING:LONG_LINE: line length of 105 exceeds 100 columns #309: FILE: lib/eal/common/eal_option_list.h:41: +OPT_STR_ARG("--huge-unlink", NULL, "Unlink hugetlbfs files on exit (existing|always|never)", huge_unlink) WARNING:LONG_LINE: line length of 136 exceeds 100 columns #310: FILE: lib/eal/common/eal_option_list.h:42: +BOOL_ARG("--in-memory", NULL, "DPDK should not create shared mmap files in filesystem (disables secondary process support)", in_memory) WARNING:LONG_LINE: line length of 117 exceeds 100 columns #315: FILE: lib/eal/common/eal_option_list.h:47: +STR_ARG("--log-level", NULL, "Log level for loggers; use log-level=help for list of log types and levels", log_level) WARNING:LONG_LINE: line length of 112 exceeds 100 columns #329: FILE: lib/eal/common/eal_option_list.h:61: +STR_ARG("--service-coremask", "-s", "Hexadecimal bitmask of cores to use for service threads", service_coremask) WARNING:LONG_LINE: line length of 127 exceeds 100 columns #330: FILE: lib/eal/common/eal_option_list.h:62: +BOOL_ARG("--single-file-segments", NULL, "Store all pages within single files (per-page-size, per-node)", single_file_segments) WARNING:LONG_LINE: line length of 103 exceeds 100 columns #332: FILE: lib/eal/common/eal_option_list.h:64: +LIST_ARG("--vdev", NULL, "Add a virtual device to the system; format=[,key=val,...]", vdev) WARNING:LONG_LINE: line length of 138 exceeds 100 columns #350: FILE: lib/eal/common/eal_option_list.h:82: +OPT_STR_ARG("--huge-worker-stack", NULL, "Allocate worker thread stacks from hugepage memory, with optional size (kB)", huge_worker_stack) WARNING:LONG_LINE: line length of 107 exceeds 100 columns #353: FILE: lib/eal/common/eal_option_list.h:85: +STR_ARG("--numa-limit", NULL, "Limit memory allocation on NUMA nodes (comma separated values)", numa_limit) total: 0 errors, 16 warnings, 263 lines checked