summaryrefslogtreecommitdiffstats
path: root/net/bluetooth/a2mp.c
diff options
context:
space:
mode:
authorJaganath Kanakkassery2012-07-13 14:47:55 +0200
committerGustavo Padovan2012-08-06 20:02:58 +0200
commit4af66c691f4e5c2db9bb00793669a548e9db1974 (patch)
tree2ea27d4467c635d78d5b001ee4bee384b1ab7eea /net/bluetooth/a2mp.c
parentBluetooth: Move l2cap_chan_hold/put to l2cap_core.c (diff)
downloadkernel-qcow2-linux-4af66c691f4e5c2db9bb00793669a548e9db1974.tar.gz
kernel-qcow2-linux-4af66c691f4e5c2db9bb00793669a548e9db1974.tar.xz
kernel-qcow2-linux-4af66c691f4e5c2db9bb00793669a548e9db1974.zip
Bluetooth: Free the l2cap channel list only when refcount is zero
Move the l2cap channel list chan->global_l under the refcnt protection and free it based on the refcnt. Signed-off-by: Jaganath Kanakkassery <jaganath.k@samsung.com> Signed-off-by: Syam Sidhardhan <s.syam@samsung.com> Reviewed-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth/a2mp.c')
-rw-r--r--net/bluetooth/a2mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/a2mp.c b/net/bluetooth/a2mp.c
index 79af661a58dd..0760d1fed6f0 100644
--- a/net/bluetooth/a2mp.c
+++ b/net/bluetooth/a2mp.c
@@ -416,7 +416,7 @@ static int a2mp_chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
static void a2mp_chan_close_cb(struct l2cap_chan *chan)
{
- l2cap_chan_destroy(chan);
+ l2cap_chan_put(chan);
}
static void a2mp_chan_state_change_cb(struct l2cap_chan *chan, int state)