git: e226a45a661a - stable/13 - linux(4): bump osrelease to 4.4.0.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 17 Jun 2022 19:41:38 UTC
The branch stable/13 has been updated by dchagin: URL: https://cgit.FreeBSD.org/src/commit/?id=e226a45a661ac1a44c2afe64b27bc13fee480f6e commit e226a45a661ac1a44c2afe64b27bc13fee480f6e Author: Edward Tomasz Napierala <trasz@FreeBSD.org> AuthorDate: 2021-04-19 10:37:47 +0000 Commit: Dmitry Chagin <dchagin@FreeBSD.org> CommitDate: 2022-06-17 19:35:42 +0000 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 (cherry picked from commit 156da725d3ef6bbafdb0389aada57cf268f44b1e) --- 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 719452ddb92c..615439b4d107 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))