aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSjur Braendeland <sjur.brandeland@stericsson.com>2010-09-21 07:44:46 -0400
committerDavid S. Miller <davem@davemloft.net>2010-09-21 21:05:31 -0400
commit9e2e8f14d48dbb6c31aeb739ae4fc8997b9dfe84 (patch)
tree5c3c8acf516e4a840d1fa06cf8ea126cb26735d1
parente5e03ce1e5c6c015cabf274b24976dff408dc07f (diff)
caif: Use default send and receive buffer size in caif_socket.
CAIF sockets should use socket's default send and receive buffers sizes. Signed-off-by: Sjur Braendeland <sjur.brandeland@stericsson.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--net/caif/caif_socket.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/net/caif/caif_socket.c b/net/caif/caif_socket.c
index 3943398f70c..4d918f8f4e6 100644
--- a/net/caif/caif_socket.c
+++ b/net/caif/caif_socket.c
@@ -30,9 +30,6 @@
30MODULE_LICENSE("GPL"); 30MODULE_LICENSE("GPL");
31MODULE_ALIAS_NETPROTO(AF_CAIF); 31MODULE_ALIAS_NETPROTO(AF_CAIF);
32 32
33#define CAIF_DEF_SNDBUF (4096*10)
34#define CAIF_DEF_RCVBUF (4096*100)
35
36/* 33/*
37 * CAIF state is re-using the TCP socket states. 34 * CAIF state is re-using the TCP socket states.
38 * caif_states stored in sk_state reflect the state as reported by 35 * caif_states stored in sk_state reflect the state as reported by
@@ -1118,10 +1115,6 @@ static int caif_create(struct net *net, struct socket *sock, int protocol,
1118 /* Store the protocol */ 1115 /* Store the protocol */
1119 sk->sk_protocol = (unsigned char) protocol; 1116 sk->sk_protocol = (unsigned char) protocol;
1120 1117
1121 /* Sendbuf dictates the amount of outbound packets not yet sent */
1122 sk->sk_sndbuf = CAIF_DEF_SNDBUF;
1123 sk->sk_rcvbuf = CAIF_DEF_RCVBUF;
1124
1125 /* 1118 /*
1126 * Lock in order to try to stop someone from opening the socket 1119 * Lock in order to try to stop someone from opening the socket
1127 * too early. 1120 * too early.