diff options
author | Andrei Emeltchenko | 2012-10-25 15:20:51 +0300 |
---|---|---|
committer | Gustavo Padovan | 2012-11-01 20:27:03 -0200 |
commit | e9b02748ffc043e8a36f7893bbf58bb886f0b7e4 (patch) | |
tree | e93a717d7661a988ad657724c74e30d9f02ae6fd /net/bluetooth/hci_conn.c | |
parent | 27695fb415ab150e1972a882c2538bf9bf130cb0 (diff) |
Bluetooth: Add put(hcon) when deleting hchan
When refcnt reaches zero disconnect timeout will run and hci_conn
will be disconnected.
Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com>
Acked-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
Diffstat (limited to 'net/bluetooth/hci_conn.c')
-rw-r--r-- | net/bluetooth/hci_conn.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/bluetooth/hci_conn.c b/net/bluetooth/hci_conn.c index dc331ceca471..25bfce0666eb 100644 --- a/net/bluetooth/hci_conn.c +++ b/net/bluetooth/hci_conn.c @@ -980,6 +980,8 @@ void hci_chan_del(struct hci_chan *chan) synchronize_rcu(); + hci_conn_put(conn); + skb_queue_purge(&chan->data_q); kfree(chan); } |