瀏覽代碼

Bluetooth: L2CAP: Don't return -EAGAIN if out of credits

Just keep queueing them into TX queue since the caller might just have
to do the same and there is no impact in adding another packet to the
TX queue even if there aren't any credits to transmit them.

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Acked-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Luiz Augusto von Dentz 8 年之前
父節點
當前提交
03732141bf
共有 1 個文件被更改,包括 0 次插入3 次删除
  1. 0 3
      net/bluetooth/l2cap_core.c

+ 0 - 3
net/bluetooth/l2cap_core.c

@@ -2458,9 +2458,6 @@ int l2cap_chan_send(struct l2cap_chan *chan, struct msghdr *msg, size_t len)
 		if (len > chan->omtu)
 		if (len > chan->omtu)
 			return -EMSGSIZE;
 			return -EMSGSIZE;
 
 
-		if (!chan->tx_credits)
-			return -EAGAIN;
-
 		__skb_queue_head_init(&seg_queue);
 		__skb_queue_head_init(&seg_queue);
 
 
 		err = l2cap_segment_le_sdu(chan, &seg_queue, msg, len);
 		err = l2cap_segment_le_sdu(chan, &seg_queue, msg, len);