]> git.baikalelectronics.ru Git - kernel.git/commit
Bluetooth: Fix race condition with user channel and setup stage
authorMarcel Holtmann <marcel@holtmann.org>
Sat, 6 Jun 2015 04:06:49 +0000 (06:06 +0200)
committerJohan Hedberg <johan.hedberg@intel.com>
Mon, 8 Jun 2015 08:04:49 +0000 (11:04 +0300)
commit4302c025c646578669c54beaa16d3d702302cc53
tree6cdbb0c74bedbb30f0e8abf68e94f943b51b977b
parent1cbef4b7420b4dab26c33b8360a84f6c931ac797
Bluetooth: Fix race condition with user channel and setup stage

During the initial setup stage of a controller, the low-level transport
is actually active. This means that HCI_UP is true. To avoid toggling
the transport off and back on again for normal operation the kernel
holds a grace period with HCI_AUTO_OFF that will turn the low-level
transport off in case no user is present.

The idea of the grace period is important to avoid having to initialize
all of the controller twice. So legacy ioctl and the new management
interface knows how to clear this grace period and then start normal
operation.

For the user channel operation this grace period has not been taken into
account which results in the problem that HCI_UP and HCI_AUTO_OFF are
set and the kernel will return EBUSY. However from a system point of
view the controller is ready to be grabbed by either the ioctl, the
management interface or the user channel.

This patch brings the user channel to the same level as the other two
entries for operating a controller.

Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Johan Hedberg <johan.hedberg@intel.com>
Cc: stable@vger.kernel.org
net/bluetooth/hci_sock.c