diff options
author | Ed Maste <emaste@FreeBSD.org> | 2019-07-04 20:42:08 +0000 |
---|---|---|
committer | Ed Maste <emaste@FreeBSD.org> | 2019-07-04 20:42:08 +0000 |
commit | b97ebbbf72324ff496a59305d9c7da941e2c5cfa (patch) | |
tree | 57bcca8ecf81539515d492fa0cc21256e96ddc65 /sys/compat/linux/linux_mib.h | |
parent | 0fabd7b5cce2493f70cedf4f9f3c6fcab65daed4 (diff) | |
download | src-b97ebbbf72324ff496a59305d9c7da941e2c5cfa.tar.gz src-b97ebbbf72324ff496a59305d9c7da941e2c5cfa.zip |
Update Linux compat version to 2.6.36
New system calls between 2.6.32 and 2.6.26 are already implemented.
This should be mostly NFC as far as contemporary Linux applications are
concerned though, as Linux kernel 3.2 is the oldest supported by a
number of popular distros today; work is in progress by others to enable
support for those applications.
Discussed with: trasz
MFC after: 1 month
Notes
Notes:
svn path=/head/; revision=349751
Diffstat (limited to 'sys/compat/linux/linux_mib.h')
-rw-r--r-- | sys/compat/linux/linux_mib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_mib.h b/sys/compat/linux/linux_mib.h index be81e55e323b..2fc32c145f45 100644 --- a/sys/compat/linux/linux_mib.h +++ b/sys/compat/linux/linux_mib.h @@ -48,7 +48,7 @@ int linux_kernver(struct thread *td); #define LINUX_KVERSION 2 #define LINUX_KPATCHLEVEL 6 -#define LINUX_KSUBLEVEL 32 +#define LINUX_KSUBLEVEL 36 #define LINUX_KERNVER(a,b,c) (((a) << 16) + ((b) << 8) + (c)) #define LINUX_VERSION_CODE LINUX_KERNVER(LINUX_KVERSION, \ |