From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7DB75A04C7 for ; Tue, 15 Sep 2020 17:22:38 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1192F1C192; Tue, 15 Sep 2020 17:22:38 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 1017) id 98D2D1C192; Tue, 15 Sep 2020 17:22:36 +0200 (CEST) In-Reply-To: <20200915151114.12024-4-stephen@networkplumber.org> References: <20200915151114.12024-4-stephen@networkplumber.org> To: test-report@dpdk.org Cc: Stephen Hemminger Message-Id: <20200915152236.98D2D1C192@dpdk.org> Date: Tue, 15 Sep 2020 17:22:36 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw77751 [PATCH v3 03/17] eal: rename lcore word choices X-BeenThere: test-report@dpdk.org X-Mailman-Version: 2.1.15 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 Sender: "test-report" Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/77751 _coding style issues_ WARNING:TYPO_SPELLING: 'master' may be misspelled - perhaps 'primary'? #79: Replace master lcore with main lcore and WARNING:TYPO_SPELLING: 'slave' may be misspelled - perhaps 'secondary'? #80: replace slave lcore with worker lcore. WARNING:TYPO_SPELLING: 'master' may be misspelled - perhaps 'primary'? #85: The "--master-lcore" command line option is also deprecated WARNING:TYPO_SPELLING: 'master' may be misspelled - perhaps 'primary'? #153: FILE: doc/guides/rel_notes/release_20_11.rst:100: +* eal: Changed the function ``rte_get_master_lcore()`` is WARNING:TYPO_SPELLING: 'SLAVE' may be misspelled - perhaps 'SECONDARY'? #157: FILE: doc/guides/rel_notes/release_20_11.rst:104: + ``RTE_LCORE_FOREACH_SLAVE`` will be replaced with WARNING:TYPO_SPELLING: 'master' may be misspelled - perhaps 'primary'? #160: FILE: doc/guides/rel_notes/release_20_11.rst:107: + The ``master-lcore`` argument to testpmd will be replaced WARNING:TYPO_SPELLING: 'master' may be misspelled - perhaps 'primary'? #161: FILE: doc/guides/rel_notes/release_20_11.rst:108: + with ``main-lcore``. The old ``master-lcore`` argument WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned' #205: FILE: lib/librte_eal/common/eal_common_launch.c:24: +rte_eal_wait_lcore(unsigned worker_id) WARNING:TYPO_SPELLING: 'MASTER' may be misspelled - perhaps 'PRIMARY'? #408: FILE: lib/librte_eal/common/eal_common_options.c:1598: + "option --" OPT_MASTER_LCORE WARNING:PREFER_FALLTHROUGH: Prefer 'fallthrough;' over fallthrough comment #410: FILE: lib/librte_eal/common/eal_common_options.c:1600: + /* fallthrough */ WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned' #611: FILE: lib/librte_eal/freebsd/eal_thread.c:34: +rte_eal_remote_launch(int (*f)(void *), void *arg, unsigned worker_id) WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned' #774: FILE: lib/librte_eal/include/rte_launch.h:65: +int rte_eal_remote_launch(lcore_function_t *f, void *arg, unsigned worker_id); WARNING:TYPO_SPELLING: 'MASTER' may be misspelled - perhaps 'PRIMARY'? #790: FILE: lib/librte_eal/include/rte_launch.h:77: +#define SKIP_MASTER RTE_DEPRECATED(SKIP_MASTER) SKIP_MAIN WARNING:TYPO_SPELLING: 'MASTER' may be misspelled - perhaps 'PRIMARY'? #790: FILE: lib/librte_eal/include/rte_launch.h:77: +#define SKIP_MASTER RTE_DEPRECATED(SKIP_MASTER) SKIP_MAIN WARNING:SPACE_BEFORE_TAB: please, no space before tabs #790: FILE: lib/librte_eal/include/rte_launch.h:77: +#define SKIP_MASTER ^IRTE_DEPRECATED(SKIP_MASTER) SKIP_MAIN$ ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #790: FILE: lib/librte_eal/include/rte_launch.h:77: +#define SKIP_MASTER RTE_DEPRECATED(SKIP_MASTER) SKIP_MAIN WARNING:TYPO_SPELLING: 'MASTER' may be misspelled - perhaps 'PRIMARY'? #791: FILE: lib/librte_eal/include/rte_launch.h:78: +#define CALL_MASTER RTE_DEPRECATED(CALL_MASTER) CALL_MAIN WARNING:TYPO_SPELLING: 'MASTER' may be misspelled - perhaps 'PRIMARY'? #791: FILE: lib/librte_eal/include/rte_launch.h:78: +#define CALL_MASTER RTE_DEPRECATED(CALL_MASTER) CALL_MAIN WARNING:SPACE_BEFORE_TAB: please, no space before tabs #791: FILE: lib/librte_eal/include/rte_launch.h:78: +#define CALL_MASTER ^IRTE_DEPRECATED(CALL_MASTER) CALL_MAIN$ ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #791: FILE: lib/librte_eal/include/rte_launch.h:78: +#define CALL_MASTER RTE_DEPRECATED(CALL_MASTER) CALL_MAIN WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned' #836: FILE: lib/librte_eal/include/rte_launch.h:114: +enum rte_lcore_state_t rte_eal_get_lcore_state(unsigned worker_id); WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned' #862: FILE: lib/librte_eal/include/rte_launch.h:134: +int rte_eal_wait_lcore(unsigned worker_id); WARNING:TYPO_SPELLING: 'master' may be misspelled - perhaps 'primary'? #903: FILE: lib/librte_eal/include/rte_lcore.h:95: +static inline unsigned int rte_get_master_lcore(void) WARNING:TYPO_SPELLING: 'SLAVE' may be misspelled - perhaps 'SECONDARY'? #947: FILE: lib/librte_eal/include/rte_lcore.h:244: +#define RTE_LCORE_FOREACH_SLAVE(l) \ ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses #947: FILE: lib/librte_eal/include/rte_lcore.h:244: +#define RTE_LCORE_FOREACH_SLAVE(l) \ + RTE_DEPRECATED(RTE_LCORE_FOREACH_SLAVE) RTE_LCORE_FOREACH_WORKER(l) WARNING:TYPO_SPELLING: 'SLAVE' may be misspelled - perhaps 'SECONDARY'? #948: FILE: lib/librte_eal/include/rte_lcore.h:245: + RTE_DEPRECATED(RTE_LCORE_FOREACH_SLAVE) RTE_LCORE_FOREACH_WORKER(l) WARNING:UNSPECIFIED_INT: Prefer 'unsigned int' to bare use of 'unsigned' #1081: FILE: lib/librte_eal/linux/eal_thread.c:34: +rte_eal_remote_launch(int (*f)(void *), void *arg, unsigned worker_id) total: 3 errors, 24 warnings, 1060 lines checked ERROR: symbol rte_get_main_lcore is added in the DPDK_21 section, but is expected to be added in the EXPERIMENTAL section of the version map INFO: symbol rte_get_master_lcore is being removed, ensure that it has gone through the deprecation process