Files
linux/net
Jeffy Chen e1c7a44788 Bluetooth: bnep: fix possible might sleep error in bnep_session
commit 25717382c1 upstream.

It looks like bnep_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:
	dfb2fae 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>
Reviewed-by: Brian Norris <briannorris@chromium.org>
Reviewed-by: AL Yu-Chen Cho <acho@suse.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Cc: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-08-30 10:19:26 +02:00
..
2017-05-02 21:19:55 -07:00
2015-03-02 16:43:41 -05:00
2015-11-23 14:56:15 -05:00
2015-11-02 22:47:14 -05:00
2015-10-07 04:27:43 -07:00
2015-10-21 00:49:24 +02:00
2017-08-30 10:19:20 +02:00