* [PATCH 0/7] Fix various lost wakeups
@ 2011-07-24 4:10 Peter Hurley
2011-07-25 19:18 ` Mat Martineau
0 siblings, 1 reply; 2+ messages in thread
From: Peter Hurley @ 2011-07-24 4:10 UTC (permalink / raw)
To: linux-bluetooth
Several kthreads, and some other functions which also wait/sleep, exhibit
race conditions when using set_current_state(TASK_INTERRUPTIBLE). A common,
but incorrect, usage pattern is:
1: add_wait_queue(...);
2: while (!condition) {
3: set_current_state(TASK_INTERRUPTIBLE);
4: do_work();
5: schedule();
6: }
7: set current_state(TASK_RUNNING);
8: remove_wait_queue(...);
The problem here develops after line 2 executes but before line 3 executes.
If, at this point, another task now sets the 'condition' and issues a wakeup
for the first task, it will be 'lost' as line 3 is now executed (ie, the
task is moved off the run queue).
A more robust general pattern is:
1: add_wait_queue(...);
2: while (1) {
3: set_current_state(TASK_INTERRUPTIBLE);
4: if (condition)
5: break;
6: do_work();
7: schedule();
8: }
9: set current_state(TASK_RUNNING);
10: remove_wait_queue(...);
This pattern also allows for multiple-condition tests without further
complications.
Another usage pattern without race conditions:
1: add_wait_queue(...);
2: set_current_state(TASK_INTERRUPTIBLE);
3: while (!condition) {
4: do_work();
5: schedule();
6: set_current_state(TASK_INTERRUPTIBLE);
7: if (condition2)
8: break;
9: }
10: set current_state(TASK_RUNNING);
11: remove_wait_queue(...);
This approach is required when condition2 is only valid after sleeping,
for example.
Regards,
Peter
PS - I did not fix the usage in l2cap_core.c pending if the new ERTM
reassembly will make that work unnecessary.
Peter Hurley (7):
Bluetooth: rfcomm: Remove unnecessary krfcommd event
Bluetooth: rfcomm: Fix lost wakeups waiting to accept socket
Bluetooth: Fix lost wakeups waiting for sock state change
Bluetooth: l2cap: Fix lost wakeups waiting to accept socket
Bluetooth: sco: Fix lost wakeups waiting to accept socket
Bluetooth: bnep: Fix lost wakeup of session thread
Bluetooth: cmtp: Fix lost wakeup of session thread
net/bluetooth/af_bluetooth.c | 6 +++---
net/bluetooth/bnep/core.c | 6 ++++--
net/bluetooth/cmtp/core.c | 6 ++++--
net/bluetooth/l2cap_sock.c | 28 ++++++++++++++--------------
net/bluetooth/rfcomm/core.c | 17 +++++++----------
net/bluetooth/rfcomm/sock.c | 28 ++++++++++++++--------------
net/bluetooth/sco.c | 28 ++++++++++++++--------------
7 files changed, 60 insertions(+), 59 deletions(-)
--
1.7.4.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH 0/7] Fix various lost wakeups
2011-07-24 4:10 [PATCH 0/7] Fix various lost wakeups Peter Hurley
@ 2011-07-25 19:18 ` Mat Martineau
0 siblings, 0 replies; 2+ messages in thread
From: Mat Martineau @ 2011-07-25 19:18 UTC (permalink / raw)
To: Peter Hurley; +Cc: linux-bluetooth
Hi Peter -
On Sun, 24 Jul 2011, Peter Hurley wrote:
> Several kthreads, and some other functions which also wait/sleep, exhibit
> race conditions when using set_current_state(TASK_INTERRUPTIBLE). A common,
> but incorrect, usage pattern is:
>
> 1: add_wait_queue(...);
> 2: while (!condition) {
> 3: set_current_state(TASK_INTERRUPTIBLE);
> 4: do_work();
> 5: schedule();
> 6: }
> 7: set current_state(TASK_RUNNING);
> 8: remove_wait_queue(...);
<snip>
> PS - I did not fix the usage in l2cap_core.c pending if the new ERTM
> reassembly will make that work unnecessary.
I think your fix is needed in l2cap_core.c. ERTM reassembly (and
other pending changes) won't be modifying that code.
Thanks,
--
Mat Martineau
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2011-07-25 19:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-24 4:10 [PATCH 0/7] Fix various lost wakeups Peter Hurley
2011-07-25 19:18 ` Mat Martineau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).