forked from Minki/linux
Bluetooth: Move check for backlog size to l2cap_sock.c
Remove socket specific code from l2cap_core.c Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk> Acked-by: Andrei Emeltchenko <andrei.emeltchenko@intel.com> Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
This commit is contained in:
parent
0797e01d87
commit
538266929e
@ -1156,12 +1156,6 @@ static void l2cap_le_conn_ready(struct l2cap_conn *conn)
|
|||||||
|
|
||||||
lock_sock(parent);
|
lock_sock(parent);
|
||||||
|
|
||||||
/* Check for backlog size */
|
|
||||||
if (sk_acceptq_is_full(parent)) {
|
|
||||||
BT_DBG("backlog full %d", parent->sk_ack_backlog);
|
|
||||||
goto clean;
|
|
||||||
}
|
|
||||||
|
|
||||||
chan = pchan->ops->new_connection(pchan);
|
chan = pchan->ops->new_connection(pchan);
|
||||||
if (!chan)
|
if (!chan)
|
||||||
goto clean;
|
goto clean;
|
||||||
@ -3349,12 +3343,6 @@ static inline int l2cap_connect_req(struct l2cap_conn *conn, struct l2cap_cmd_hd
|
|||||||
|
|
||||||
result = L2CAP_CR_NO_MEM;
|
result = L2CAP_CR_NO_MEM;
|
||||||
|
|
||||||
/* Check for backlog size */
|
|
||||||
if (sk_acceptq_is_full(parent)) {
|
|
||||||
BT_DBG("backlog full %d", parent->sk_ack_backlog);
|
|
||||||
goto response;
|
|
||||||
}
|
|
||||||
|
|
||||||
chan = pchan->ops->new_connection(pchan);
|
chan = pchan->ops->new_connection(pchan);
|
||||||
if (!chan)
|
if (!chan)
|
||||||
goto response;
|
goto response;
|
||||||
|
@ -895,6 +895,12 @@ static struct l2cap_chan *l2cap_sock_new_connection_cb(struct l2cap_chan *chan)
|
|||||||
{
|
{
|
||||||
struct sock *sk, *parent = chan->data;
|
struct sock *sk, *parent = chan->data;
|
||||||
|
|
||||||
|
/* Check for backlog size */
|
||||||
|
if (sk_acceptq_is_full(parent)) {
|
||||||
|
BT_DBG("backlog full %d", parent->sk_ack_backlog);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
sk = l2cap_sock_alloc(sock_net(parent), NULL, BTPROTO_L2CAP,
|
sk = l2cap_sock_alloc(sock_net(parent), NULL, BTPROTO_L2CAP,
|
||||||
GFP_ATOMIC);
|
GFP_ATOMIC);
|
||||||
if (!sk)
|
if (!sk)
|
||||||
|
Loading…
Reference in New Issue
Block a user