[dpdk-test-report] |WARNING| pw36785 [PATCH v2 2/7] bpf: add BPF loading and execution framework

checkpatch at dpdk.org checkpatch at dpdk.org
Fri Mar 30 19:33:47 CEST 2018


Test-Label: checkpatch
Test-Status: WARNING
http://dpdk.org/patch/36785

_coding style issues_


WARNING:SPACING: space prohibited between function name and open parenthesis '('
#211: FILE: lib/librte_bpf/bpf_exec.c:25:
+		((type)(reg)[(ins)->dst_reg] op (type)(reg)[(ins)->src_reg]) ? \

WARNING:SPACING: space prohibited between function name and open parenthesis '('
#216: FILE: lib/librte_bpf/bpf_exec.c:30:
+		((type)(reg)[(ins)->dst_reg] op (type)(ins)->imm) ? \

WARNING:SPACING: space prohibited between function name and open parenthesis '('
#227: FILE: lib/librte_bpf/bpf_exec.c:41:
+		(type)(reg)[(ins)->dst_reg] op (type)(reg)[(ins)->src_reg])

WARNING:SPACING: space prohibited between function name and open parenthesis '('
#234: FILE: lib/librte_bpf/bpf_exec.c:48:
+		(type)(reg)[(ins)->dst_reg] op (type)(ins)->imm)

WARNING:MACRO_WITH_FLOW_CONTROL: Macros with flow control statements should be avoided
#236: FILE: lib/librte_bpf/bpf_exec.c:50:
+#define BPF_DIV_ZERO_CHECK(bpf, reg, ins, type) do { \
+	if ((type)(reg)[(ins)->src_reg] == 0) { \
+		RTE_BPF_LOG(ERR, \
+			"%s(%p): division by 0 at pc: %#zx;
", \
+			__func__, bpf, \
+			(uintptr_t)(ins) - (uintptr_t)(bpf)->prm.ins); \
+		return 0; \
+	} \
+} while (0)

total: 0 errors, 5 warnings, 1244 lines checked


More information about the test-report mailing list