mirror of
https://github.com/torvalds/linux.git
synced 2025-11-06 03:29:11 +02:00
It looks like cmtp_session has same pattern as the issue reported in
old rfcomm:
while (1) {
set_current_state(TASK_INTERRUPTIBLE);
if (condition)
break;
// may call might_sleep here
schedule();
}
__set_current_state(TASK_RUNNING);
Which fixed at:
|
||
|---|---|---|
| .. | ||
| capi.c | ||
| cmtp.h | ||
| core.c | ||
| Kconfig | ||
| Makefile | ||
| sock.c | ||