summaryrefslogtreecommitdiffstats
path: root/src/kernel/xloop_main.c
diff options
context:
space:
mode:
authorSimon Rettberg2024-12-11 16:34:41 +0100
committerSimon Rettberg2024-12-11 16:34:41 +0100
commit4995b9c979a3729b88ebe51575bd82242143ba5a (patch)
tree04921a6d01d43d1ec25f2f2eaf12341dab89d59f /src/kernel/xloop_main.c
parentgithub: touch magic .prelink.mod files after cmake to fix latest CentOS (diff)
downloadxloop-4995b9c979a3729b88ebe51575bd82242143ba5a.tar.gz
xloop-4995b9c979a3729b88ebe51575bd82242143ba5a.tar.xz
xloop-4995b9c979a3729b88ebe51575bd82242143ba5a.zip
Fix compile on Linux 6.11+
Diffstat (limited to 'src/kernel/xloop_main.c')
-rw-r--r--src/kernel/xloop_main.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/kernel/xloop_main.c b/src/kernel/xloop_main.c
index cff7aa3..067159a 100644
--- a/src/kernel/xloop_main.c
+++ b/src/kernel/xloop_main.c
@@ -12,6 +12,8 @@
#include "xloop_main_4.18.c"
#elif LINUX_VERSION_CODE < KERNEL_VERSION(6, 6, 0)
#include "xloop_main_5.15.c"
-#else
+#elif LINUX_VERSION_CODE < KERNEL_VERSION(6, 11, 0)
#include "xloop_main_6.6.c"
+#else
+#include "xloop_main_6.11.c"
#endif