From fdd17e367233aa84155213f30cd636a11148eed2 Mon Sep 17 00:00:00 2001 From: Sjur Braendeland Date: Tue, 21 Sep 2010 11:44:46 +0000 Subject: [PATCH] --- yaml --- r: 214608 b: refs/heads/master c: 9e2e8f14d48dbb6c31aeb739ae4fc8997b9dfe84 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/net/caif/caif_socket.c | 7 ------- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/[refs] b/[refs] index 229c6ece2eab..a9341b42e2e3 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e5e03ce1e5c6c015cabf274b24976dff408dc07f +refs/heads/master: 9e2e8f14d48dbb6c31aeb739ae4fc8997b9dfe84 diff --git a/trunk/net/caif/caif_socket.c b/trunk/net/caif/caif_socket.c index 3943398f70cd..4d918f8f4e67 100644 --- a/trunk/net/caif/caif_socket.c +++ b/trunk/net/caif/caif_socket.c @@ -30,9 +30,6 @@ MODULE_LICENSE("GPL"); MODULE_ALIAS_NETPROTO(AF_CAIF); -#define CAIF_DEF_SNDBUF (4096*10) -#define CAIF_DEF_RCVBUF (4096*100) - /* * CAIF state is re-using the TCP socket states. * 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, /* Store the protocol */ sk->sk_protocol = (unsigned char) protocol; - /* Sendbuf dictates the amount of outbound packets not yet sent */ - sk->sk_sndbuf = CAIF_DEF_SNDBUF; - sk->sk_rcvbuf = CAIF_DEF_RCVBUF; - /* * Lock in order to try to stop someone from opening the socket * too early.