Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 327475
b: refs/heads/master
c: 3064837
h: refs/heads/master
i:
  327473: 15f12ed
  327471: e628a9e
v: v3
  • Loading branch information
Jaganath Kanakkassery authored and Gustavo Padovan committed Aug 6, 2012
1 parent c07a225 commit 61f0ac5
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 15 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ee72d150ada90d33cc6e222fbdd7f980c16d974d
refs/heads/master: 3064837289259843310b266a9422aca5f5b4b9c7
16 changes: 2 additions & 14 deletions trunk/include/net/bluetooth/l2cap.h
Original file line number Diff line number Diff line change
Expand Up @@ -671,20 +671,8 @@ enum {
L2CAP_EV_RECV_FRAME,
};

static inline void l2cap_chan_hold(struct l2cap_chan *c)
{
BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->refcnt));

atomic_inc(&c->refcnt);
}

static inline void l2cap_chan_put(struct l2cap_chan *c)
{
BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->refcnt));

if (atomic_dec_and_test(&c->refcnt))
kfree(c);
}
void l2cap_chan_hold(struct l2cap_chan *c);
void l2cap_chan_put(struct l2cap_chan *c);

static inline void l2cap_chan_lock(struct l2cap_chan *chan)
{
Expand Down
15 changes: 15 additions & 0 deletions trunk/net/bluetooth/l2cap_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -425,6 +425,21 @@ void l2cap_chan_destroy(struct l2cap_chan *chan)
l2cap_chan_put(chan);
}

void l2cap_chan_hold(struct l2cap_chan *c)
{
BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->refcnt));

atomic_inc(&c->refcnt);
}

void l2cap_chan_put(struct l2cap_chan *c)
{
BT_DBG("chan %p orig refcnt %d", c, atomic_read(&c->refcnt));

if (atomic_dec_and_test(&c->refcnt))
kfree(c);
}

void l2cap_chan_set_defaults(struct l2cap_chan *chan)
{
chan->fcs = L2CAP_FCS_CRC16;
Expand Down

0 comments on commit 61f0ac5

Please sign in to comment.