aboutsummaryrefslogtreecommitdiffstats
path: root/net/bluetooth/l2cap.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/bluetooth/l2cap.c')
-rw-r--r--net/bluetooth/l2cap.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/net/bluetooth/l2cap.c b/net/bluetooth/l2cap.c
index bd0a4c1bced0..810a3c1a4188 100644
--- a/net/bluetooth/l2cap.c
+++ b/net/bluetooth/l2cap.c
@@ -50,7 +50,9 @@
50#include <net/bluetooth/hci_core.h> 50#include <net/bluetooth/hci_core.h>
51#include <net/bluetooth/l2cap.h> 51#include <net/bluetooth/l2cap.h>
52 52
53#define VERSION "2.13" 53#define VERSION "2.14"
54
55static int enable_ertm = 0;
54 56
55static u32 l2cap_feat_mask = L2CAP_FEAT_FIXED_CHAN; 57static u32 l2cap_feat_mask = L2CAP_FEAT_FIXED_CHAN;
56static u8 l2cap_fixed_chan[8] = { 0x02, }; 58static u8 l2cap_fixed_chan[8] = { 0x02, };
@@ -2205,10 +2207,13 @@ static inline int l2cap_information_req(struct l2cap_conn *conn, struct l2cap_cm
2205 2207
2206 if (type == L2CAP_IT_FEAT_MASK) { 2208 if (type == L2CAP_IT_FEAT_MASK) {
2207 u8 buf[8]; 2209 u8 buf[8];
2210 u32 feat_mask = l2cap_feat_mask;
2208 struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) buf; 2211 struct l2cap_info_rsp *rsp = (struct l2cap_info_rsp *) buf;
2209 rsp->type = cpu_to_le16(L2CAP_IT_FEAT_MASK); 2212 rsp->type = cpu_to_le16(L2CAP_IT_FEAT_MASK);
2210 rsp->result = cpu_to_le16(L2CAP_IR_SUCCESS); 2213 rsp->result = cpu_to_le16(L2CAP_IR_SUCCESS);
2211 put_unaligned(cpu_to_le32(l2cap_feat_mask), (__le32 *) rsp->data); 2214 if (enable_ertm)
2215 feat_mask |= L2CAP_FEAT_ERTM;
2216 put_unaligned(cpu_to_le32(feat_mask), (__le32 *) rsp->data);
2212 l2cap_send_cmd(conn, cmd->ident, 2217 l2cap_send_cmd(conn, cmd->ident,
2213 L2CAP_INFO_RSP, sizeof(buf), buf); 2218 L2CAP_INFO_RSP, sizeof(buf), buf);
2214 } else if (type == L2CAP_IT_FIXED_CHAN) { 2219 } else if (type == L2CAP_IT_FIXED_CHAN) {
@@ -2828,6 +2833,9 @@ EXPORT_SYMBOL(l2cap_load);
2828module_init(l2cap_init); 2833module_init(l2cap_init);
2829module_exit(l2cap_exit); 2834module_exit(l2cap_exit);
2830 2835
2836module_param(enable_ertm, bool, 0644);
2837MODULE_PARM_DESC(enable_ertm, "Enable enhanced retransmission mode");
2838
2831MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>"); 2839MODULE_AUTHOR("Marcel Holtmann <marcel@holtmann.org>");
2832MODULE_DESCRIPTION("Bluetooth L2CAP ver " VERSION); 2840MODULE_DESCRIPTION("Bluetooth L2CAP ver " VERSION);
2833MODULE_VERSION(VERSION); 2841MODULE_VERSION(VERSION);