Skip to content
Snippets Groups Projects
Commit 3bbf5472 authored by Andi Kleen's avatar Andi Kleen Committed by Andi Kleen
Browse files

[PATCH] paravirt: Disable vdso by default when CONFIG_PARAVIRT is enabled


They don't work together and this way even glibc still works.

Signed-off-by: default avatarAndi Kleen <ak@suse.de>
parent 4f205fd4
No related merge requests found
......@@ -27,7 +27,11 @@
* Should the kernel map a VDSO page into processes and pass its
* address down to glibc upon exec()?
*/
#ifdef CONFIG_PARAVIRT
unsigned int __read_mostly vdso_enabled = 0;
#else
unsigned int __read_mostly vdso_enabled = 1;
#endif
EXPORT_SYMBOL_GPL(vdso_enabled);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment