The ETOOMANYREFS errno is missing from the Windows build. it is used in initialization of flow error structures.
The commit will define it with the same error code used by WSAETOOMANYREFS. Signed-off-by: Tal Shnaiderman <tal...@nvidia.com> --- v2: log message fix, apply errno to both Windows builds and remove dependency on winsock2.h [DmitryK] --- --- lib/librte_eal/windows/include/rte_os.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/librte_eal/windows/include/rte_os.h b/lib/librte_eal/windows/include/rte_os.h index 569ed92d51..8300ea483a 100644 --- a/lib/librte_eal/windows/include/rte_os.h +++ b/lib/librte_eal/windows/include/rte_os.h @@ -51,6 +51,8 @@ extern "C" { /* as in <windows.h> */ typedef long long ssize_t; +#define ETOOMANYREFS 10059 /* WSAETOOMANYREFS */ + #ifndef RTE_TOOLCHAIN_GCC static inline int -- 2.16.1.windows.4