diff options
author | Andrei Emeltchenko <andrei.emeltchenko@intel.com> | 2012-10-25 12:20:51 (GMT) |
---|---|---|
committer | Gustavo Padovan <gustavo.padovan@collabora.co.uk> | 2012-11-01 22:27:03 (GMT) |
commit | e9b02748ffc043e8a36f7893bbf58bb886f0b7e4 (patch) | |
tree | e93a717d7661a988ad657724c74e30d9f02ae6fd /net/bluetooth/hci_conn.c | |
parent | 27695fb415ab150e1972a882c2538bf9bf130cb0 (diff) | |
download | linux-e9b02748ffc043e8a36f7893bbf58bb886f0b7e4.tar.xz |
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 dc331ce..25bfce0 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); } |