[PATCH] sysctl: create sys/fs/binfmt_misc as an ordinary sysctl entry
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / sysctl.c
index ca376e733ce4c12ddb3dc975c546cab7afe5f44d..fc2ce3d8f97e8ba8d4152e87161af24c9e4e946d 100644 (file)
@@ -881,6 +881,12 @@ static ctl_table vm_table[] = {
        { .ctl_name = 0 }
 };
 
+#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
+static ctl_table binfmt_misc_table[] = {
+       { .ctl_name = 0 }
+};
+#endif
+
 static ctl_table fs_table[] = {
        {
                .ctl_name       = FS_NRINODE,
@@ -1004,6 +1010,14 @@ static ctl_table fs_table[] = {
                .mode           = 0644,
                .proc_handler   = &proc_dointvec,
        },
+#if defined(CONFIG_BINFMT_MISC) || defined(CONFIG_BINFMT_MISC_MODULE)
+       {
+               .ctl_name       = CTL_UNNUMBERED,
+               .procname       = "binfmt_misc",
+               .mode           = 0555,
+               .child          = binfmt_misc_table,
+       },
+#endif
        { .ctl_name = 0 }
 };