diff options
author | Johan Hedberg <johan.hedberg@intel.com> | 2013-10-16 04:37:01 -0400 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2013-10-16 04:41:13 -0400 |
commit | 3432711f49c31c8f21f8a9beb0b3d4b2c7bc9dc2 (patch) | |
tree | 6fc07f41305210d4b02c2e1774020dabee2c61c9 /net/bluetooth/smp.c | |
parent | 07e307f807fecf056f0f9024ade4c0187159c46b (diff) |
Bluetooth: Ignore SMP data on non-LE links
The SMP CID is only defined for LE transports. Instead of returning an
error from smp_sig_channel() in this case (which would cause a
disconnection) just return 0 to ignore the data, which is consistent
with the behavior for other unknown CIDs.
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Diffstat (limited to 'net/bluetooth/smp.c')
-rw-r--r-- | net/bluetooth/smp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bluetooth/smp.c b/net/bluetooth/smp.c index 463e50c58716..fc200e06aa04 100644 --- a/net/bluetooth/smp.c +++ b/net/bluetooth/smp.c | |||
@@ -856,7 +856,7 @@ int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb) | |||
856 | 856 | ||
857 | if (hcon->type != LE_LINK) { | 857 | if (hcon->type != LE_LINK) { |
858 | kfree_skb(skb); | 858 | kfree_skb(skb); |
859 | return -ENOTSUPP; | 859 | return 0; |
860 | } | 860 | } |
861 | 861 | ||
862 | if (skb->len < 1) { | 862 | if (skb->len < 1) { |