Refactor the code in order to use the l2cap_chan_destroy()
from l2cap_chan_put() under the refcnt protection.
Signed-off-by: Jaganath Kanakkassery <[email protected]>
Signed-off-by: Syam Sidhardhan <[email protected]>
---
include/net/bluetooth/l2cap.h | 16 ++--------------
net/bluetooth/l2cap_core.c | 15 +++++++++++++++
2 files changed, 17 insertions(+), 14 deletions(-)
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index e5164ff..d8a6145 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -670,20 +670,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)
{
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index 9fd0599..552a8ce 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -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;
--
1.7.1
Hi Jaganath,
* Jaganath Kanakkassery <[email protected]> [2012-07-13 18:17:55 +0530]:
> Move the l2cap channel list chan->global_l under the refcnt
> protection and free it based on the refcnt.
>
> Signed-off-by: Jaganath Kanakkassery <[email protected]>
> Signed-off-by: Syam Sidhardhan <[email protected]>
> ---
> include/net/bluetooth/l2cap.h | 1 -
> net/bluetooth/a2mp.c | 2 +-
> net/bluetooth/l2cap_core.c | 8 +++++---
> net/bluetooth/l2cap_sock.c | 2 +-
> 4 files changed, 7 insertions(+), 6 deletions(-)
Both patches have been applied to bluetooth-next. Thanks.
Gustavo
Hi,
--------------------------------------------------
From: "Andrei Emeltchenko" <[email protected]>
Sent: Monday, July 16, 2012 4:25 PM
To: "Jaganath Kanakkassery" <[email protected]>;
<[email protected]>; <[email protected]>
Subject: Re: [PATCH v1 1/2] Bluetooth: Move l2cap_chan_hold/put to
l2cap_core.c
> On Mon, Jul 16, 2012 at 01:52:58PM +0300, Andrei Emeltchenko wrote:
>> Hi Jaganath,
>>
>> On Fri, Jul 13, 2012 at 06:17:54PM +0530, Jaganath Kanakkassery wrote:
>> > Refactor the code in order to use the l2cap_chan_destroy()
>> > from l2cap_chan_put() under the refcnt protection.
>> >
>> > Signed-off-by: Jaganath Kanakkassery <[email protected]>
>> > Signed-off-by: Syam Sidhardhan <[email protected]>
>>
>> Both patches looks OK to me.
>>
>> Reviewed-by: Emeltchenko Andrei <[email protected]>
>
> sorry old ab :(
>
> Reviewed-by: Andrei Emeltchenko <[email protected]>
> --
Ping.
Thanks,
Jaganath
On Mon, Jul 16, 2012 at 01:52:58PM +0300, Andrei Emeltchenko wrote:
> Hi Jaganath,
>
> On Fri, Jul 13, 2012 at 06:17:54PM +0530, Jaganath Kanakkassery wrote:
> > Refactor the code in order to use the l2cap_chan_destroy()
> > from l2cap_chan_put() under the refcnt protection.
> >
> > Signed-off-by: Jaganath Kanakkassery <[email protected]>
> > Signed-off-by: Syam Sidhardhan <[email protected]>
>
> Both patches looks OK to me.
>
> Reviewed-by: Emeltchenko Andrei <[email protected]>
sorry old ab :(
Reviewed-by: Andrei Emeltchenko <[email protected]>
Hi Jaganath,
On Fri, Jul 13, 2012 at 06:17:54PM +0530, Jaganath Kanakkassery wrote:
> Refactor the code in order to use the l2cap_chan_destroy()
> from l2cap_chan_put() under the refcnt protection.
>
> Signed-off-by: Jaganath Kanakkassery <[email protected]>
> Signed-off-by: Syam Sidhardhan <[email protected]>
Both patches looks OK to me.
Reviewed-by: Emeltchenko Andrei <[email protected]>
Move the l2cap channel list chan->global_l under the refcnt
protection and free it based on the refcnt.
Signed-off-by: Jaganath Kanakkassery <[email protected]>
Signed-off-by: Syam Sidhardhan <[email protected]>
---
include/net/bluetooth/l2cap.h | 1 -
net/bluetooth/a2mp.c | 2 +-
net/bluetooth/l2cap_core.c | 8 +++++---
net/bluetooth/l2cap_sock.c | 2 +-
4 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/include/net/bluetooth/l2cap.h b/include/net/bluetooth/l2cap.h
index d8a6145..3450532 100644
--- a/include/net/bluetooth/l2cap.h
+++ b/include/net/bluetooth/l2cap.h
@@ -758,7 +758,6 @@ int l2cap_add_scid(struct l2cap_chan *chan, __u16 scid);
struct l2cap_chan *l2cap_chan_create(void);
void l2cap_chan_close(struct l2cap_chan *chan, int reason);
-void l2cap_chan_destroy(struct l2cap_chan *chan);
int l2cap_chan_connect(struct l2cap_chan *chan, __le16 psm, u16 cid,
bdaddr_t *dst, u8 dst_type);
int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len,
diff --git a/net/bluetooth/a2mp.c b/net/bluetooth/a2mp.c
index 4ff0bf3..cf16a7c 100644
--- a/net/bluetooth/a2mp.c
+++ b/net/bluetooth/a2mp.c
@@ -412,7 +412,7 @@ static int a2mp_chan_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
static void a2mp_chan_close_cb(struct l2cap_chan *chan)
{
- l2cap_chan_destroy(chan);
+ l2cap_chan_put(chan);
}
static void a2mp_chan_state_change_cb(struct l2cap_chan *chan, int state)
diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index 552a8ce..6b12f48 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -416,13 +416,15 @@ struct l2cap_chan *l2cap_chan_create(void)
return chan;
}
-void l2cap_chan_destroy(struct l2cap_chan *chan)
+static void l2cap_chan_destroy(struct l2cap_chan *chan)
{
+ BT_DBG("chan %p", chan);
+
write_lock(&chan_list_lock);
list_del(&chan->global_l);
write_unlock(&chan_list_lock);
- l2cap_chan_put(chan);
+ kfree(chan);
}
void l2cap_chan_hold(struct l2cap_chan *c)
@@ -437,7 +439,7 @@ 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);
+ l2cap_chan_destroy(c);
}
void l2cap_chan_set_defaults(struct l2cap_chan *chan)
diff --git a/net/bluetooth/l2cap_sock.c b/net/bluetooth/l2cap_sock.c
index a4bb27e..79350d1 100644
--- a/net/bluetooth/l2cap_sock.c
+++ b/net/bluetooth/l2cap_sock.c
@@ -823,7 +823,7 @@ static void l2cap_sock_kill(struct sock *sk)
/* Kill poor orphan */
- l2cap_chan_destroy(l2cap_pi(sk)->chan);
+ l2cap_chan_put(l2cap_pi(sk)->chan);
sock_set_flag(sk, SOCK_DEAD);
sock_put(sk);
}
--
1.7.1