diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2022-05-24 04:46:50 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2022-05-24 04:46:50 +0200 |
commit | d6ecaa0024485effd065124fe774de2e22095f2d (patch) | |
tree | f575c04296d9155980f5d5087c0b8e505af08fef /arch/x86/entry | |
parent | Merge tag 'x86_microcode_for_v5.19_rc1' of git://git.kernel.org/pub/scm/linux... (diff) | |
parent | x86/vsyscall: Remove CONFIG_LEGACY_VSYSCALL_EMULATE (diff) | |
download | linux-d6ecaa0024485effd065124fe774de2e22095f2d.tar.xz linux-d6ecaa0024485effd065124fe774de2e22095f2d.zip |
Merge tag 'x86_vdso_for_v5.19_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 vdso update from Borislav Petkov:
- Get rid of CONFIG_LEGACY_VSYSCALL_EMULATE as nothing should be using
it anymore
* tag 'x86_vdso_for_v5.19_rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86/vsyscall: Remove CONFIG_LEGACY_VSYSCALL_EMULATE
Diffstat (limited to 'arch/x86/entry')
-rw-r--r-- | arch/x86/entry/vsyscall/vsyscall_64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/entry/vsyscall/vsyscall_64.c b/arch/x86/entry/vsyscall/vsyscall_64.c index fd2ee9408e91..4af81df133ee 100644 --- a/arch/x86/entry/vsyscall/vsyscall_64.c +++ b/arch/x86/entry/vsyscall/vsyscall_64.c @@ -48,7 +48,7 @@ static enum { EMULATE, XONLY, NONE } vsyscall_mode __ro_after_init = #elif defined(CONFIG_LEGACY_VSYSCALL_XONLY) XONLY; #else - EMULATE; + #error VSYSCALL config is broken #endif static int __init vsyscall_setup(char *str) |