diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2015-10-06 13:03:19 +0300 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2015-10-08 10:43:52 +0200 |
commit | 301de2cb6a521405cde1a2f9cdc42c5257b5725b (patch) | |
tree | 41ad95cb92df34bf0144234bce28cc7c817fe379 /net/bluetooth/6lowpan.c | |
parent | fe806dceded462f7930f8ac4a41c5d19819e70b7 (diff) | |
download | linux-rpi3-301de2cb6a521405cde1a2f9cdc42c5257b5725b.tar.gz linux-rpi3-301de2cb6a521405cde1a2f9cdc42c5257b5725b.tar.bz2 linux-rpi3-301de2cb6a521405cde1a2f9cdc42c5257b5725b.zip |
Bluetooth: 6lowpan: Fix imtu & omtu values
The omtu value is determined by the remote peer so there's no point in
trying to hard-code it to any value. The IPSP specification otoh gives
a more reasonable value for the imtu, i.e. 1280.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Acked-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/6lowpan.c')
-rw-r--r-- | net/bluetooth/6lowpan.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/bluetooth/6lowpan.c b/net/bluetooth/6lowpan.c index 131e79cde350..3e20f7a60d61 100644 --- a/net/bluetooth/6lowpan.c +++ b/net/bluetooth/6lowpan.c @@ -775,8 +775,7 @@ static struct l2cap_chan *chan_create(void) chan->chan_type = L2CAP_CHAN_CONN_ORIENTED; chan->mode = L2CAP_MODE_LE_FLOWCTL; - chan->omtu = 65535; - chan->imtu = chan->omtu; + chan->imtu = 1280; return chan; } |