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 9F5BF46BF6 for ; Thu, 24 Jul 2025 02:06:31 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9826B40430; Thu, 24 Jul 2025 02:06:31 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id BF27C40430 for ; Thu, 24 Jul 2025 02:06:30 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id AE2571241EE; Thu, 24 Jul 2025 02:04:43 +0200 (CEST) Subject: |WARNING| pw155501 [PATCH] trace: force 8 byte alignment when --no-huge is used In-Reply-To: <20250724000554.114087-1-drc@linux.ibm.com> References: <20250724000554.114087-1-drc@linux.ibm.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: David Christensen Message-Id: <20250724000443.AE2571241EE@dpdk.org> Date: Thu, 24 Jul 2025 02:04:43 +0200 (CEST) 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/155501 _coding style issues_ ERROR:CODE_INDENT: code indent should use tabs where possible #131: FILE: lib/eal/common/eal_common_trace.c:367: + size_t mem_size = trace_mem_sz(trace->buff_len);$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #131: FILE: lib/eal/common/eal_common_trace.c:367: + size_t mem_size = trace_mem_sz(trace->buff_len);$ ERROR:CODE_INDENT: code indent should use tabs where possible #132: FILE: lib/eal/common/eal_common_trace.c:368: + void *aligned_ptr = NULL;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #132: FILE: lib/eal/common/eal_common_trace.c:368: + void *aligned_ptr = NULL;$ ERROR:CODE_INDENT: code indent should use tabs where possible #133: FILE: lib/eal/common/eal_common_trace.c:369: + int ret = posix_memalign(&aligned_ptr, 8, mem_size);$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #133: FILE: lib/eal/common/eal_common_trace.c:369: + int ret = posix_memalign(&aligned_ptr, 8, mem_size);$ ERROR:CODE_INDENT: code indent should use tabs where possible #134: FILE: lib/eal/common/eal_common_trace.c:370: + header = (ret == 0) ? aligned_ptr : NULL;$ WARNING:LEADING_SPACE: please, no spaces at the start of a line #134: FILE: lib/eal/common/eal_common_trace.c:370: + header = (ret == 0) ? aligned_ptr : NULL;$ total: 4 errors, 4 warnings, 13 lines checked