|
@@ -1362,7 +1362,6 @@ static struct l2cap_chan *l2cap_global_chan_by_scid(int state, u16 cid,
|
|
|
static void l2cap_le_conn_ready(struct l2cap_conn *conn)
|
|
|
{
|
|
|
struct hci_conn *hcon = conn->hcon;
|
|
|
- struct sock *parent;
|
|
|
struct l2cap_chan *chan, *pchan;
|
|
|
u8 dst_type;
|
|
|
|
|
@@ -1384,9 +1383,7 @@ static void l2cap_le_conn_ready(struct l2cap_conn *conn)
|
|
|
if (hci_blacklist_lookup(hcon->hdev, &hcon->dst, dst_type))
|
|
|
return;
|
|
|
|
|
|
- parent = pchan->sk;
|
|
|
-
|
|
|
- lock_sock(parent);
|
|
|
+ l2cap_chan_lock(pchan);
|
|
|
|
|
|
chan = pchan->ops->new_connection(pchan);
|
|
|
if (!chan)
|
|
@@ -1402,7 +1399,7 @@ static void l2cap_le_conn_ready(struct l2cap_conn *conn)
|
|
|
__l2cap_chan_add(conn, chan);
|
|
|
|
|
|
clean:
|
|
|
- release_sock(parent);
|
|
|
+ l2cap_chan_unlock(pchan);
|
|
|
}
|
|
|
|
|
|
static void l2cap_conn_ready(struct l2cap_conn *conn)
|
|
@@ -3705,7 +3702,6 @@ static struct l2cap_chan *l2cap_connect(struct l2cap_conn *conn,
|
|
|
struct l2cap_conn_req *req = (struct l2cap_conn_req *) data;
|
|
|
struct l2cap_conn_rsp rsp;
|
|
|
struct l2cap_chan *chan = NULL, *pchan;
|
|
|
- struct sock *parent;
|
|
|
int result, status = L2CAP_CS_NO_INFO;
|
|
|
|
|
|
u16 dcid = 0, scid = __le16_to_cpu(req->scid);
|
|
@@ -3721,10 +3717,8 @@ static struct l2cap_chan *l2cap_connect(struct l2cap_conn *conn,
|
|
|
goto sendresp;
|
|
|
}
|
|
|
|
|
|
- parent = pchan->sk;
|
|
|
-
|
|
|
mutex_lock(&conn->chan_lock);
|
|
|
- lock_sock(parent);
|
|
|
+ l2cap_chan_lock(pchan);
|
|
|
|
|
|
/* Check if the ACL is secure enough (if not SDP) */
|
|
|
if (psm != __constant_cpu_to_le16(L2CAP_PSM_SDP) &&
|
|
@@ -3800,7 +3794,7 @@ static struct l2cap_chan *l2cap_connect(struct l2cap_conn *conn,
|
|
|
}
|
|
|
|
|
|
response:
|
|
|
- release_sock(parent);
|
|
|
+ l2cap_chan_unlock(pchan);
|
|
|
mutex_unlock(&conn->chan_lock);
|
|
|
|
|
|
sendresp:
|