Bluetooth: hidp: fix possible might sleep error in hidp_session_thread
It looks like hidp_session_thread 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:
	dfb2fae7 Bluetooth: Fix nested sleeps
So let's fix it at the same way, also follow the suggestion of:
https://lwn.net/Articles/628628/
Signed-off-by:  Jeffy Chen <jeffy.chen@rock-chips.com>
Tested-by:
Jeffy Chen <jeffy.chen@rock-chips.com>
Tested-by:  AL Yu-Chen Cho <acho@suse.com>
Tested-by:
AL Yu-Chen Cho <acho@suse.com>
Tested-by:  Rohit Vaswani <rvaswani@nvidia.com>
Signed-off-by:
Rohit Vaswani <rvaswani@nvidia.com>
Signed-off-by:  Marcel Holtmann <marcel@holtmann.org>
Marcel Holtmann <marcel@holtmann.org>
Loading
Please register or sign in to comment
