diff options
author | Gustavo Padovan <gustavo@padovan.org> | 2012-03-25 18:59:16 +0200 |
---|---|---|
committer | Gustavo Padovan <gustavo@padovan.org> | 2012-05-09 05:41:36 +0200 |
commit | eef1d9b668c51dcae58d8bb41ce0c805f866dbbd (patch) | |
tree | ca3bdca54bbeeb59a15d8d4dafbda33dbb000101 /net/bluetooth/l2cap_sock.c | |
parent | Bluetooth: Make L2CAP chan_add functions static (diff) | |
download | linux-eef1d9b668c51dcae58d8bb41ce0c805f866dbbd.tar.xz linux-eef1d9b668c51dcae58d8bb41ce0c805f866dbbd.zip |
Bluetooth: Remove sk parameter from l2cap_chan_create()
Following the separation if core and sock code this change avoid
manipulation of sk inside l2cap_chan_create().
Signed-off-by: Gustavo Padovan <gustavo@padovan.org>
Diffstat (limited to 'net/bluetooth/l2cap_sock.c')
-rw-r--r-- | net/bluetooth/l2cap_sock.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c index 29122ed28ea9..53e563f01723 100644 --- a/net/bluetooth/l2cap_sock.c +++ b/net/bluetooth/l2cap_sock.c @@ -1048,12 +1048,14 @@ static struct sock *l2cap_sock_alloc(struct net *net, struct socket *sock, int p sk->sk_protocol = proto; sk->sk_state = BT_OPEN; - chan = l2cap_chan_create(sk); + chan = l2cap_chan_create(); if (!chan) { l2cap_sock_kill(sk); return NULL; } + chan->sk = sk; + l2cap_pi(sk)->chan = chan; return sk; |