aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/sctp/protocol.c6
-rw-r--r--net/sctp/sysctl.c11
2 files changed, 6 insertions, 11 deletions
diff --git a/net/sctp/protocol.c b/net/sctp/protocol.c
index 54edcd978f75..3ec8b12b6da4 100644
--- a/net/sctp/protocol.c
+++ b/net/sctp/protocol.c
@@ -84,9 +84,9 @@ static struct sctp_af *sctp_af_v6_specific;
84struct kmem_cache *sctp_chunk_cachep __read_mostly; 84struct kmem_cache *sctp_chunk_cachep __read_mostly;
85struct kmem_cache *sctp_bucket_cachep __read_mostly; 85struct kmem_cache *sctp_bucket_cachep __read_mostly;
86 86
87extern int sysctl_sctp_mem[3]; 87int sysctl_sctp_mem[3];
88extern int sysctl_sctp_rmem[3]; 88int sysctl_sctp_rmem[3];
89extern int sysctl_sctp_wmem[3]; 89int sysctl_sctp_wmem[3];
90 90
91/* Return the address of the control sock. */ 91/* Return the address of the control sock. */
92struct sock *sctp_get_ctl_sock(void) 92struct sock *sctp_get_ctl_sock(void)
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;
52static long sack_timer_min = 1; 52static long sack_timer_min = 1;
53static long sack_timer_max = 500; 53static long sack_timer_max = 500;
54 54
55int sysctl_sctp_mem[3]; 55extern int sysctl_sctp_mem[3];
56int sysctl_sctp_rmem[3]; 56extern int sysctl_sctp_rmem[3];
57int sysctl_sctp_wmem[3]; 57extern int sysctl_sctp_wmem[3];
58
59/*
60 * per assoc memory limitationf for sends
61 */
62int sysctl_sctp_wmem[3];
63 58
64static ctl_table sctp_table[] = { 59static ctl_table sctp_table[] = {
65 { 60 {