From 8b01da645264d0a968bd4299c775a0f2991d3a85 Mon Sep 17 00:00:00 2001 From: Stephen Kitt Date: Sat, 2 May 2026 09:57:09 +0200 Subject: [PATCH] test/util.h: include limits.h This is needed for _MAX constants; it used to be included through the kernel UAPI (linux/ethtool.h) but the latter has been fixed to no longer rely on the C library's limits.h. See https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=e8c6888e177c5ae0e09e184f51bf60d28bb49a34 for details. Signed-off-by: Stephen Kitt --- src/test/util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/util.h b/src/test/util.h index 7d5172de989..eb60103b688 100644 --- a/src/test/util.h +++ b/src/test/util.h @@ -26,6 +26,7 @@ #include #include #include +#include #include #include #include