From 156da725d3ef6bbafdb0389aada57cf268f44b1e Mon Sep 17 00:00:00 2001 From: Edward Tomasz Napierala Date: Mon, 19 Apr 2021 11:37:47 +0100 Subject: [PATCH] linux(4): bump osrelease to 4.4.0. This is required for the current Arch Linux binaries to work. PR: 254112 Reviewed By: emaste Sponsored By: EPSRC Differential Revision: https://reviews.freebsd.org/D29218 --- sys/compat/linux/linux_mib.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/compat/linux/linux_mib.h b/sys/compat/linux/linux_mib.h index 0a1baec39826..b3d5949c9630 100644 --- a/sys/compat/linux/linux_mib.h +++ b/sys/compat/linux/linux_mib.h @@ -46,8 +46,8 @@ int linux_get_oss_version(struct thread *td); int linux_kernver(struct thread *td); -#define LINUX_KVERSION 3 -#define LINUX_KPATCHLEVEL 17 +#define LINUX_KVERSION 4 +#define LINUX_KPATCHLEVEL 4 #define LINUX_KSUBLEVEL 0 #define LINUX_KERNVER(a,b,c) (((a) << 16) + ((b) << 8) + (c))