Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Bluetooth: Change page scan interval in fast connectable mode

This patch is based on a user space (hciops) patch which never made it
upstream but does make sense to include in the mgmt part of the kernel.

(User space) commit message from Dmitriy Paliy:
"
Page scan interval in fast connectable mode is changed from 22.5 msec to
160 msec to perform less aggressive page scanning. This is done
accordingly to controller vendor recommendation.

Primary concern is that current parameters 22.5 interval, 11.25 window,
and interleaved scanning occupy whole radio bandwidth. Changing interval
to 160 msec should be sufficient for both speeding up connection
establishment and leaving space for other activities, like inquiry scan,
e.g.
"

Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Signed-off-by: Gustavo Padovan <gustavo.padovan@collabora.co.uk>

authored by

Johan Hedberg and committed by
Gustavo Padovan
83ce9a06 c20f8e35

+2 -2
+2 -2
net/bluetooth/mgmt.c
··· 2596 2596 if (cp->val) { 2597 2597 type = PAGE_SCAN_TYPE_INTERLACED; 2598 2598 2599 - /* 22.5 msec page scan interval */ 2600 - acp.interval = __constant_cpu_to_le16(0x0024); 2599 + /* 160 msec page scan interval */ 2600 + acp.interval = __constant_cpu_to_le16(0x0100); 2601 2601 } else { 2602 2602 type = PAGE_SCAN_TYPE_STANDARD; /* default */ 2603 2603