Bluetooth: debug: Print amp_mgr refcnt
Improve debug output. Signed-off-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>
This commit is contained in:
parent
4b10b274e2
commit
a0dfe0ab6b
1 changed files with 2 additions and 2 deletions
|
@ -501,7 +501,7 @@ static struct l2cap_chan *a2mp_chan_open(struct l2cap_conn *conn)
|
||||||
/* AMP Manager functions */
|
/* AMP Manager functions */
|
||||||
void amp_mgr_get(struct amp_mgr *mgr)
|
void amp_mgr_get(struct amp_mgr *mgr)
|
||||||
{
|
{
|
||||||
BT_DBG("mgr %p", mgr);
|
BT_DBG("mgr %p orig refcnt %d", mgr, atomic_read(&mgr->kref.refcount));
|
||||||
|
|
||||||
kref_get(&mgr->kref);
|
kref_get(&mgr->kref);
|
||||||
}
|
}
|
||||||
|
@ -517,7 +517,7 @@ static void amp_mgr_destroy(struct kref *kref)
|
||||||
|
|
||||||
int amp_mgr_put(struct amp_mgr *mgr)
|
int amp_mgr_put(struct amp_mgr *mgr)
|
||||||
{
|
{
|
||||||
BT_DBG("mgr %p", mgr);
|
BT_DBG("mgr %p orig refcnt %d", mgr, atomic_read(&mgr->kref.refcount));
|
||||||
|
|
||||||
return kref_put(&mgr->kref, &_mgr_destroy);
|
return kref_put(&mgr->kref, &_mgr_destroy);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue