From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by dpdk.org (Postfix, from userid 1017) id E2EB81CD86; Fri, 6 Apr 2018 20:50:12 +0200 (CEST) In-Reply-To: <1523040581-2522-3-git-send-email-konstantin.ananyev@intel.com> References: <1523040581-2522-3-git-send-email-konstantin.ananyev@intel.com> To: test-report@dpdk.org Cc: Konstantin Ananyev Message-Id: <20180406185012.E2EB81CD86@dpdk.org> Date: Fri, 6 Apr 2018 20:50:12 +0200 (CEST) From: checkpatch@dpdk.org Subject: [dpdk-test-report] |WARNING| pw37450 [PATCH v3 02/10] bpf: add BPF loading and execution framework 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: , X-List-Received-Date: Fri, 06 Apr 2018 18:50:13 -0000 Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/37450 _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, 1255 lines checked