diff --git a/[refs] b/[refs] index c02f015e2afb..22b741d899a6 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: c1d7e01d7877a397655277a920aeaa3830ed9461 +refs/heads/master: fd4b616b0fbb77e3f349e7d60914f2b7c7e39f9c diff --git a/trunk/kernel/sysctl.c b/trunk/kernel/sysctl.c index b46f496405e4..97186b99b0e4 100644 --- a/trunk/kernel/sysctl.c +++ b/trunk/kernel/sysctl.c @@ -30,6 +30,7 @@ #include #include #include +#include #include #include #include @@ -1556,7 +1557,10 @@ static struct ctl_table dev_table[] = { int __init sysctl_init(void) { - register_sysctl_table(sysctl_base_table); + struct ctl_table_header *hdr; + + hdr = register_sysctl_table(sysctl_base_table); + kmemleak_not_leak(hdr); return 0; }