diff options
author | Andy Whitcroft <apw@canonical.com> | 2011-01-24 12:31:38 -0500 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2011-01-24 12:33:36 -0500 |
commit | 8c6a98b22b750c9eb52653ba643faa17db8d3881 (patch) | |
tree | 682d083e544bf4b420b6972941c9f3e7493e77ef /kernel/sysctl.c | |
parent | cb1b145929b5b7e1bdc5f76dd2905df9f89c038e (diff) |
Input: sysrq - ensure sysrq_enabled and __sysrq_enabled are consistent
Currently sysrq_enabled and __sysrq_enabled are initialised separately
and inconsistently, leading to sysrq being actually enabled by reported
as not enabled in sysfs. The first change to the sysfs configurable
synchronises these two:
static int __read_mostly sysrq_enabled = 1;
static int __sysrq_enabled;
Add a common define to carry the default for these preventing them becoming
out of sync again. Default this to 1 to mirror previous behaviour.
Signed-off-by: Andy Whitcroft <apw@canonical.com>
Cc: stable@kernel.org
Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Diffstat (limited to 'kernel/sysctl.c')
-rw-r--r-- | kernel/sysctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/sysctl.c b/kernel/sysctl.c index c33a1edb799f..3afce4dc9ba5 100644 --- a/kernel/sysctl.c +++ b/kernel/sysctl.c | |||
@@ -169,7 +169,8 @@ static int proc_taint(struct ctl_table *table, int write, | |||
169 | #endif | 169 | #endif |
170 | 170 | ||
171 | #ifdef CONFIG_MAGIC_SYSRQ | 171 | #ifdef CONFIG_MAGIC_SYSRQ |
172 | static int __sysrq_enabled; /* Note: sysrq code ises it's own private copy */ | 172 | /* Note: sysrq code uses it's own private copy */ |
173 | static int __sysrq_enabled = SYSRQ_DEFAULT_ENABLE; | ||
173 | 174 | ||
174 | static int sysrq_sysctl_handler(ctl_table *table, int write, | 175 | static int sysrq_sysctl_handler(ctl_table *table, int write, |
175 | void __user *buffer, size_t *lenp, | 176 | void __user *buffer, size_t *lenp, |