|WARNING| pw136234 [RFC v3] eal: add bitset type
checkpatch at dpdk.org
checkpatch at dpdk.org
Wed Jan 31 14:22:52 CET 2024
Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/136234
_coding style issues_
Must be a reply to the first patch (--in-reply-to).
WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#671: FILE: app/test/test_bitset.c:503:
+#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; \
+ }
total: 0 errors, 1 warnings, 1588 lines checked
More information about the test-report
mailing list