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 44C8641D9B for ; Tue, 28 Feb 2023 10:47:28 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3E7414021F; Tue, 28 Feb 2023 10:47:28 +0100 (CET) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id 78D684021F for ; Tue, 28 Feb 2023 10:47:26 +0100 (CET) Received: by dpdk.org (Postfix, from userid 65534) id 729B1120D89; Tue, 28 Feb 2023 10:47:26 +0100 (CET) Subject: |WARNING| pw124569 [RFC 1/2] eal: add bitset type In-Reply-To: <20230228093916.87206-2-mattias.ronnblom@ericsson.com> References: <20230228093916.87206-2-mattias.ronnblom@ericsson.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: =?utf-8?q?Mattias_R=C3=B6nnblom?= Message-Id: <20230228094726.729B1120D89@dpdk.org> Date: Tue, 28 Feb 2023 10:47:26 +0100 (CET) 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/124569 _coding style issues_ WARNING:TYPO_SPELLING: 'stdio' may be misspelled - perhaps 'studio'? #171: FILE: app/test/test_bitset.c:5: +#include WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided #670: FILE: app/test/test_bitset.c:504: +#define GEN_DECLARE(size) \ + { \ + RTE_BITSET_DECLARE(bitset, size); \ + size_t idx; \ + \ + idx = rte_rand_max(size); \ + rte_bitset_init(bitset, size); \ + \ + rte_bitset_set(bitset, idx); \ + if (!rte_bitset_test(bitset, idx)) \ + return TEST_FAILED; \ + if (rte_bitset_count_set(bitset, size) != 1) \ + return TEST_FAILED; \ + return TEST_SUCCESS; \ + } WARNING:TYPO_SPELLING: 'sucessive' may be misspelled - perhaps 'successive'? #1005: FILE: lib/eal/include/rte_bitset.h:128: + * An iterator variable of type @c ssize_t. For each sucessive iteration, WARNING:TYPO_SPELLING: 'sucessive' may be misspelled - perhaps 'successive'? #1049: FILE: lib/eal/include/rte_bitset.h:172: + * An iterator variable of type @c ssize_t. For each sucessive iteration, WARNING:TYPO_SPELLING: 'sucessive' may be misspelled - perhaps 'successive'? #1077: FILE: lib/eal/include/rte_bitset.h:200: + * An iterator variable of type @c ssize_t. For each sucessive iteration, total: 0 errors, 5 warnings, 1593 lines checked