aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sysctl.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c
index f1a4eb1a655e..f54afed8426f 100644
--- a/kernel/sysctl.c
+++ b/kernel/sysctl.c
@@ -928,6 +928,18 @@ static ctl_table vm_table[] = {
928 .strategy = &sysctl_jiffies, 928 .strategy = &sysctl_jiffies,
929 }, 929 },
930#endif 930#endif
931#ifdef CONFIG_X86_32
932 {
933 .ctl_name = VM_VDSO_ENABLED,
934 .procname = "vdso_enabled",
935 .data = &vdso_enabled,
936 .maxlen = sizeof(vdso_enabled),
937 .mode = 0644,
938 .proc_handler = &proc_dointvec,
939 .strategy = &sysctl_intvec,
940 .extra1 = &zero,
941 },
942#endif
931 { .ctl_name = 0 } 943 { .ctl_name = 0 }
932}; 944};
933 945