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 9DF49A04FF for ; Tue, 24 May 2022 13:09:32 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 9A6AE40140; Tue, 24 May 2022 13:09:32 +0200 (CEST) Received: from dpdk.org (dpdk.org [92.243.24.197]) by mails.dpdk.org (Postfix) with ESMTP id A99FB400D6 for ; Tue, 24 May 2022 13:09:31 +0200 (CEST) Received: by dpdk.org (Postfix, from userid 65534) id A3416120945; Tue, 24 May 2022 13:09:31 +0200 (CEST) Subject: |WARNING| pw111725 [PATCH v3 1/2] eal: get/set thread priority per thread identifier In-Reply-To: <1653390517-4033-2-git-send-email-roretzla@linux.microsoft.com> References: <1653390517-4033-2-git-send-email-roretzla@linux.microsoft.com> To: test-report@dpdk.org From: checkpatch@dpdk.org Cc: Tyler Retzlaff Message-Id: <20220524110931.A3416120945@dpdk.org> Date: Tue, 24 May 2022 13:09:31 +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/111725 _coding style issues_ WARNING:USE_NEGATIVE_ERRNO: return of an errno should typically be negative (ie: return -EINVAL) #201: FILE: lib/eal/unix/rte_thread.c:46: + return EINVAL; WARNING:USE_NEGATIVE_ERRNO: return of an errno should typically be negative (ie: return -EINVAL) #226: FILE: lib/eal/unix/rte_thread.c:71: + return EINVAL; WARNING:USE_NEGATIVE_ERRNO: return of an errno should typically be negative (ie: return -ENOTSUP) #270: FILE: lib/eal/unix/rte_thread.c:121: + return ENOTSUP; WARNING:USE_NEGATIVE_ERRNO: return of an errno should typically be negative (ie: return -EINVAL) #327: FILE: lib/eal/windows/rte_thread.c:83: + return EINVAL; WARNING:USE_NEGATIVE_ERRNO: return of an errno should typically be negative (ie: return -EINVAL) #355: FILE: lib/eal/windows/rte_thread.c:111: + return EINVAL; total: 0 errors, 5 warnings, 327 lines checked