From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C9369A09E0; Sat, 14 Nov 2020 22:12:24 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B3293C88E; Sat, 14 Nov 2020 22:12:21 +0100 (CET) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id 332CBC882 for ; Sat, 14 Nov 2020 22:12:20 +0100 (CET) Received: from Internal Mail-Server by MTLPINE1 (envelope-from talshn@nvidia.com) with SMTP; 14 Nov 2020 23:12:18 +0200 Received: from nvidia.com (l-wincomp04-vm.mtl.labs.mlnx [10.237.1.5]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 0AELCHjl008361; Sat, 14 Nov 2020 23:12:17 +0200 From: Tal Shnaiderman To: dev@dpdk.org Cc: thomas@monjalon.net, dmitry.kozliuk@gmail.com, navasile@linux.microsoft.com, dmitrym@microsoft.com, pallavi.kadam@intel.com Date: Sat, 14 Nov 2020 23:11:56 +0200 Message-Id: <20201114211156.17196-1-talshn@nvidia.com> X-Mailer: git-send-email 2.16.1.windows.4 Subject: [dpdk-dev] [PATCH] eal/windows: definition for ETOOMANYREFS errno X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The ETOOMANYREFS errno is missing from the Windows clang build is it used in initialization of flow error structures. The commit will define it as it is done in the minGW Windows build. Signed-off-by: Tal Shnaiderman --- lib/librte_eal/windows/include/rte_os.h | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/librte_eal/windows/include/rte_os.h b/lib/librte_eal/windows/include/rte_os.h index 569ed92d51..2a91ebf6a1 100644 --- a/lib/librte_eal/windows/include/rte_os.h +++ b/lib/librte_eal/windows/include/rte_os.h @@ -90,6 +90,7 @@ eal_strerror(int code) } #define strerror eal_strerror +#define ETOOMANYREFS WSAETOOMANYREFS #endif /* RTE_TOOLCHAIN_GCC */ -- 2.16.1.windows.4