Linux bluetooth development
 help / color / mirror / Atom feed
* [PATCH 1/3] Bluetooth: Fix respecting le_default_mps value
@ 2014-01-27 23:11 johan.hedberg
  2014-01-27 23:11 ` [PATCH 2/3] Bluetooth: Fix disconnecting L2CAP channel for credits violation johan.hedberg
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: johan.hedberg @ 2014-01-27 23:11 UTC (permalink / raw)
  To: linux-bluetooth

From: Johan Hedberg <johan.hedberg@intel.com>

There's a le_default_mps variable that can be modified through debugfs
but it was never actually used for determining our MPS value. This patch
fixes the MPS initialization to use the variable instead of a fixed
value.

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
---
 net/bluetooth/l2cap_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/bluetooth/l2cap_core.c b/net/bluetooth/l2cap_core.c
index cc340700573e..5a30fc72f4ba 100644
--- a/net/bluetooth/l2cap_core.c
+++ b/net/bluetooth/l2cap_core.c
@@ -482,7 +482,7 @@ static void l2cap_le_flowctl_init(struct l2cap_chan *chan)
 	chan->sdu_len = 0;
 	chan->tx_credits = 0;
 	chan->rx_credits = le_max_credits;
-	chan->mps = min_t(u16, chan->imtu, L2CAP_LE_DEFAULT_MPS);
+	chan->mps = min_t(u16, chan->imtu, le_default_mps);
 
 	skb_queue_head_init(&chan->tx_q);
 }
-- 
1.8.5.3


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-01-27 23:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-27 23:11 [PATCH 1/3] Bluetooth: Fix respecting le_default_mps value johan.hedberg
2014-01-27 23:11 ` [PATCH 2/3] Bluetooth: Fix disconnecting L2CAP channel for credits violation johan.hedberg
2014-01-27 23:32   ` Marcel Holtmann
2014-01-27 23:11 ` [PATCH 3/3] Bluetooth: Fix disconnecting L2CAP when a credits overflow occurs johan.hedberg
2014-01-27 23:36   ` Marcel Holtmann
2014-01-27 23:30 ` [PATCH 1/3] Bluetooth: Fix respecting le_default_mps value Marcel Holtmann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox