summaryrefslogtreecommitdiffstats
path: root/net/sysctl_net.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sysctl_net.c')
-rw-r--r--net/sysctl_net.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/net/sysctl_net.c b/net/sysctl_net.c
index e539693fe..bda8d54d8 100644
--- a/net/sysctl_net.c
+++ b/net/sysctl_net.c
@@ -42,6 +42,10 @@ extern ctl_table ipv6_table[];
extern ctl_table tr_table[];
#endif
+#ifdef CONFIG_ECONET
+extern ctl_table econet_table[];
+#endif
+
ctl_table net_table[] = {
{NET_CORE, "core", NULL, 0, 0555, core_table},
#ifdef CONFIG_UNIX
@@ -63,5 +67,8 @@ ctl_table net_table[] = {
#ifdef CONFIG_TR
{NET_TR, "token-ring", NULL, 0, 0555, tr_table},
#endif
+#ifdef CONFIG_ECONET
+ {NET_ECONET, "econet", NULL, 0, 0555, econet_table},
+#endif
{0}
};