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 CCD54A0547 for ; Fri, 10 Sep 2021 01:35:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C86714067E; Fri, 10 Sep 2021 01:35:29 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id EFDB94003F for ; Fri, 10 Sep 2021 01:35:28 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id EC9EB122527; Fri, 10 Sep 2021 01:35:28 +0200 (CEST) In-Reply-To: <20210909233329.190021-6-stephen@networkplumber.org> References: <20210909233329.190021-6-stephen@networkplumber.org> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Stephen Hemminger Message-Id: <20210909233528.EC9EB122527@dpdk.org> Date: Fri, 10 Sep 2021 01:35:28 +0200 (CEST) Subject: [dpdk-test-report] |WARNING| pw98515 [PATCH v6 05/10] test: add test for bpf_convert 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 Sender: "test-report" Test-Label: checkpatch Test-Status: WARNING http://dpdk.org/patch/98515 _coding style issues_ WARNING:STATIC_CONST_CHAR_ARRAY: static const char * array should probably be static const char * const #174: FILE: app/test/test_bpf.c:3309: +static const char *sample_filters[] = { WARNING:BRACES: braces {} are not necessary for single statement blocks #240: FILE: app/test/test_bpf.c:3375: + for (i = 0; i < RTE_DIM(sample_filters); i++) { + rc |= test_bpf_filter(pcap,sample_filters[i]); + } ERROR:SPACING: space required after that ',' (ctx:VxV) #241: FILE: app/test/test_bpf.c:3376: + rc |= test_bpf_filter(pcap,sample_filters[i]); ^ total: 1 errors, 2 warnings, 157 lines checked