Commit 9e2e8f14d48dbb6c31aeb739ae4fc8997b9dfe84

Authored by Sjur Braendeland
Committed by David S. Miller
1 parent e5e03ce1e5

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>

Showing 1 changed file with 0 additions and 7 deletions Side-by-side Diff

net/caif/caif_socket.c
... ... @@ -30,9 +30,6 @@
30 30 MODULE_LICENSE("GPL");
31 31 MODULE_ALIAS_NETPROTO(AF_CAIF);
32 32  
33   -#define CAIF_DEF_SNDBUF (4096*10)
34   -#define CAIF_DEF_RCVBUF (4096*100)
35   -
36 33 /*
37 34 * CAIF state is re-using the TCP socket states.
38 35 * caif_states stored in sk_state reflect the state as reported by
... ... @@ -1117,10 +1114,6 @@
1117 1114  
1118 1115 /* Store the protocol */
1119 1116 sk->sk_protocol = (unsigned char) protocol;
1120   -
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 1117  
1125 1118 /*
1126 1119 * Lock in order to try to stop someone from opening the socket