timer/sysclt: Restrict timer migration sysctl values to 0 and 1
timer_migration sysctl acts as a boolean switch, so the allowed values should be restricted to 0 and 1. Add the necessary extra fields to the sysctl table entry to enforce that. [ tglx: Rewrote changelog ] Signed-off-by: Myungho Jung <mhjungk@gmail.com> Link: http://lkml.kernel.org/r/1492640690-3550-1-git-send-email-mhjungk@gmail.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
This commit is contained in:
parent
eb64522100
commit
b94bf594cf
@ -1176,6 +1176,8 @@ static struct ctl_table kern_table[] = {
|
|||||||
.maxlen = sizeof(unsigned int),
|
.maxlen = sizeof(unsigned int),
|
||||||
.mode = 0644,
|
.mode = 0644,
|
||||||
.proc_handler = timer_migration_handler,
|
.proc_handler = timer_migration_handler,
|
||||||
|
.extra1 = &zero,
|
||||||
|
.extra2 = &one,
|
||||||
},
|
},
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_BPF_SYSCALL
|
#ifdef CONFIG_BPF_SYSCALL
|
||||||
|
@ -241,7 +241,7 @@ int timer_migration_handler(struct ctl_table *table, int write,
|
|||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
mutex_lock(&mutex);
|
mutex_lock(&mutex);
|
||||||
ret = proc_dointvec(table, write, buffer, lenp, ppos);
|
ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
|
||||||
if (!ret && write)
|
if (!ret && write)
|
||||||
timers_update_migration(false);
|
timers_update_migration(false);
|
||||||
mutex_unlock(&mutex);
|
mutex_unlock(&mutex);
|
||||||
|
Loading…
Reference in New Issue
Block a user