diff --git a/[refs] b/[refs] index a47b22b1d35b..b6e97f5a7f07 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 5a2b3ef4559f3d0ef58cbfb723f528f1c6b2e601 +refs/heads/master: a9febbb4bd1302b6f01aa1203b0a804e4e5c9e25 diff --git a/trunk/kernel/sysctl_check.c b/trunk/kernel/sysctl_check.c index 04cdcf72c827..10b90d8a03c4 100644 --- a/trunk/kernel/sysctl_check.c +++ b/trunk/kernel/sysctl_check.c @@ -143,15 +143,6 @@ int sysctl_check_table(struct nsproxy *namespaces, struct ctl_table *table) if (!table->maxlen) set_fail(&fail, table, "No maxlen"); } - if ((table->proc_handler == proc_doulongvec_minmax) || - (table->proc_handler == proc_doulongvec_ms_jiffies_minmax)) { - if (table->maxlen > sizeof (unsigned long)) { - if (!table->extra1) - set_fail(&fail, table, "No min"); - if (!table->extra2) - set_fail(&fail, table, "No max"); - } - } #ifdef CONFIG_PROC_SYSCTL if (table->procname && !table->proc_handler) set_fail(&fail, table, "No proc_handler");