From patchwork Tue Feb 13 19:12:01 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 136676 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2487143B10; Tue, 13 Feb 2024 20:12:26 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B463142EBD; Tue, 13 Feb 2024 20:12:12 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 7F88842E60 for ; Tue, 13 Feb 2024 20:12:09 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id C027620B2000; Tue, 13 Feb 2024 11:12:04 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com C027620B2000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1707851524; bh=FofmWeAdpyWvU8Gi3NrtHrBMbCmS13jPE8YdrRPF+yM=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=sbJix0jHZowlguMZLZtFSicrVGYEFUbuvzVhND7ypDVBaPYST1nUxXy+n2FgmWgi1 t1U5gJRrKCxaxyuEROg9YNO6QxMbqLbUuw4AccKumAOVIO/2KOcfGagMYX9y0tYD77 Bgikj4WeR5RdeQxIyS5aYj0zGAReoD5LVK3IjYCo= From: Tyler Retzlaff To: dev@dpdk.org Cc: Kai Ji , Pablo de Lara , bruce.richardson@intel.com, david.marchand@redhat.com, Tyler Retzlaff Subject: [PATCH v3 1/3] eal: provide type to per lcore macro Date: Tue, 13 Feb 2024 11:12:01 -0800 Message-Id: <1707851523-27998-2-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1707851523-27998-1-git-send-email-roretzla@linux.microsoft.com> References: <1703006864-27378-1-git-send-email-roretzla@linux.microsoft.com> <1707851523-27998-1-git-send-email-roretzla@linux.microsoft.com> X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Adjust the use of per lcore macro to provide type as the first argument as to not require __typeof__ during expansion. Signed-off-by: Tyler Retzlaff Acked-by: Bruce Richardson --- lib/eal/common/eal_common_errno.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/eal/common/eal_common_errno.c b/lib/eal/common/eal_common_errno.c index b30e2f0..fff8c1f 100644 --- a/lib/eal/common/eal_common_errno.c +++ b/lib/eal/common/eal_common_errno.c @@ -28,7 +28,7 @@ static const char *sep = ""; #endif #define RETVAL_SZ 256 - static RTE_DEFINE_PER_LCORE(char[RETVAL_SZ], retval); + static RTE_DEFINE_PER_LCORE(char, retval[RETVAL_SZ]); char *ret = RTE_PER_LCORE(retval); /* since some implementations of strerror_r throw an error