diff options
author | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2013-10-21 18:22:24 -0200 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2013-10-21 13:50:55 -0700 |
commit | 0e790c64f37a1a43c147720bdfa03b7c5538e24a (patch) | |
tree | 62184513e2436b5f331badd2ca050a237d0fb024 /net/bluetooth | |
parent | 8ffb929098a56939ac71509302eeab5b207bf262 (diff) | |
download | linux-stable-0e790c64f37a1a43c147720bdfa03b7c5538e24a.tar.gz linux-stable-0e790c64f37a1a43c147720bdfa03b7c5538e24a.tar.bz2 linux-stable-0e790c64f37a1a43c147720bdfa03b7c5538e24a.zip |
Bluetooth: Add L2CAP channel to skb private data
Adding the channel to the skb private data makes possible to us know which
channel the skb we have came from.
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth')
-rw-r--r-- | net/bluetooth/l2cap_sock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c index a159b0e05202..cba3162dc33d 100644 --- a/net/bluetooth/l2cap_sock.c +++ b/net/bluetooth/l2cap_sock.c @@ -1174,6 +1174,8 @@ static struct sk_buff *l2cap_sock_alloc_skb_cb(struct l2cap_chan *chan, if (!skb) return ERR_PTR(err); + bt_cb(skb)->chan = chan; + return skb; } |