diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2005-09-05 21:14:11 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-09-05 21:14:11 -0400 |
commit | 6baf1f417d092bd2de7c8892cecad456024c993f (patch) | |
tree | c4af445058eca6f68186286651a0622abd0611f6 /include/net/sock.h | |
parent | aa07ca5793414ce257ad98809147bd1dbb7a3837 (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 'include/net/sock.h')
-rw-r--r-- | include/net/sock.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/net/sock.h b/include/net/sock.h index cf628261da52..8c48fbecb7cf 100644 --- a/include/net/sock.h +++ b/include/net/sock.h | |||
@@ -1377,9 +1377,10 @@ extern void sk_init(void); | |||
1377 | 1377 | ||
1378 | #ifdef CONFIG_SYSCTL | 1378 | #ifdef CONFIG_SYSCTL |
1379 | extern struct ctl_table core_table[]; | 1379 | extern struct ctl_table core_table[]; |
1380 | extern int sysctl_optmem_max; | ||
1381 | #endif | 1380 | #endif |
1382 | 1381 | ||
1382 | extern int sysctl_optmem_max; | ||
1383 | |||
1383 | extern __u32 sysctl_wmem_default; | 1384 | extern __u32 sysctl_wmem_default; |
1384 | extern __u32 sysctl_rmem_default; | 1385 | extern __u32 sysctl_rmem_default; |
1385 | 1386 | ||