aboutsummaryrefslogtreecommitdiffstats
path: root/net/core
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2005-09-05 21:14:11 -0400
committerDavid S. Miller <davem@sunset.davemloft.net>2005-09-05 21:14:11 -0400
commit6baf1f417d092bd2de7c8892cecad456024c993f (patch)
treec4af445058eca6f68186286651a0622abd0611f6 /net/core
parentaa07ca5793414ce257ad98809147bd1dbb7a3837 (diff)
[NET]: Do not protect sysctl_optmem_max with CONFIG_SYSCTL
The ipv4 and ipv6 protocols need to access it unconditionally. SYSCTL=n build failure reported by Russell King. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core')
-rw-r--r--net/core/sock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/sock.c b/net/core/sock.c
index ccd10fd65682..c13594579bfb 100644
--- a/net/core/sock.c
+++ b/net/core/sock.c
@@ -1719,8 +1719,8 @@ EXPORT_SYMBOL(sock_wfree);
1719EXPORT_SYMBOL(sock_wmalloc); 1719EXPORT_SYMBOL(sock_wmalloc);
1720EXPORT_SYMBOL(sock_i_uid); 1720EXPORT_SYMBOL(sock_i_uid);
1721EXPORT_SYMBOL(sock_i_ino); 1721EXPORT_SYMBOL(sock_i_ino);
1722#ifdef CONFIG_SYSCTL
1723EXPORT_SYMBOL(sysctl_optmem_max); 1722EXPORT_SYMBOL(sysctl_optmem_max);
1723#ifdef CONFIG_SYSCTL
1724EXPORT_SYMBOL(sysctl_rmem_max); 1724EXPORT_SYMBOL(sysctl_rmem_max);
1725EXPORT_SYMBOL(sysctl_wmem_max); 1725EXPORT_SYMBOL(sysctl_wmem_max);
1726#endif 1726#endif