diff options
author | Vlad Yasevich <vladislav.yasevich@hp.com> | 2007-09-16 16:04:37 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 16:51:23 -0700 |
commit | 007e3936bdaaa012483c9fe06ca71c272458c710 (patch) | |
tree | 04fd9f1b95f7f55826aa1c9df30a93e2170274d1 /net/sctp/sysctl.c | |
parent | 131a47e31ab1a9defd50ff16b04008ab94c21c0d (diff) | |
download | linux-007e3936bdaaa012483c9fe06ca71c272458c710.tar.gz linux-007e3936bdaaa012483c9fe06ca71c272458c710.tar.bz2 linux-007e3936bdaaa012483c9fe06ca71c272458c710.zip |
[SCTP]: Move sysctl_sctp_[rw]mem definitions to protocol.c
The sctp_[rw]mem definitions should really be in protocol.c
since that is where they are initialized. This also allows
one to build a kernel without sysctl support.
Signed-off-by: Vlad Yasevich <vladislav.yasevich@hp.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/sctp/sysctl.c')
-rw-r--r-- | net/sctp/sysctl.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/net/sctp/sysctl.c b/net/sctp/sysctl.c index ba75ef4669e3..39b10ee2f017 100644 --- a/net/sctp/sysctl.c +++ b/net/sctp/sysctl.c @@ -52,14 +52,9 @@ static int int_max = INT_MAX; static long sack_timer_min = 1; static long sack_timer_max = 500; -int sysctl_sctp_mem[3]; -int sysctl_sctp_rmem[3]; -int sysctl_sctp_wmem[3]; - -/* - * per assoc memory limitationf for sends - */ -int sysctl_sctp_wmem[3]; +extern int sysctl_sctp_mem[3]; +extern int sysctl_sctp_rmem[3]; +extern int sysctl_sctp_wmem[3]; static ctl_table sctp_table[] = { { |