| Kernel v2.4.0-ac10 /net/sysctl_net.c |
|---|
 2.4.0-ac10
 net
 sysctl_net.c
diff -u --new-file --recursive --exclude-from exclude linux.vanilla/net/sysctl_net.c linux.ac/net/sysctl_net.c
--- linux.vanilla/net/sysctl_net.c Thu Mar 9 09:57:17 2000
+++ linux.ac/net/sysctl_net.c Sat Jan 13 17:47:05 2001
@@ -26,10 +26,6 @@
extern ctl_table core_table[];
-#ifdef CONFIG_UNIX
-extern ctl_table unix_table[];
-#endif
-
#ifdef CONFIG_NET
extern ctl_table ether_table[], e802_table[];
#endif
@@ -42,15 +38,8 @@
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
- {NET_UNIX, "unix", NULL, 0, 0555, unix_table},
-#endif
#ifdef CONFIG_NET
{NET_802, "802", NULL, 0, 0555, e802_table},
{NET_ETHER, "ethernet", NULL, 0, 0555, ether_table},
@@ -66,9 +55,6 @@
#endif
#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}
};
|