Bluetooth: Fix hci_conn reference counting with hci_chan
authorJohan Hedberg <johan.hedberg@intel.com>
Sun, 17 Aug 2014 21:41:42 +0000 (00:41 +0300)
committerMarcel Holtmann <marcel@holtmann.org>
Mon, 8 Sep 2014 17:07:53 +0000 (19:07 +0200)
commit6c388d32ec1b9fcc2f2404fb5e9b3b0096be5de9
treed25aa7646454e2f0cbd73ce4b724c3cfa9587e84
parenteb78d7e53d144995b9e023b151de19fa40af72f3
Bluetooth: Fix hci_conn reference counting with hci_chan

The hci_chan_del() function was doing a hci_conn_drop() but there was no
matching hci_conn_hold() in the hci_chan_create() function. Furthermore,
as the hci_chan struct holds a pointer to the hci_conn there should be
proper use of hci_conn_get/put. This patch fixes both issues so that
hci_chan does correct reference counting of the hci_conn object.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
net/bluetooth/hci_conn.c