]> git.hungrycats.org Git - linux/commit
w1: fix oops when w1_search is called from netlink connector
authorMarcin Jurkowski <marcin1j@gmail.com>
Sat, 2 Mar 2013 13:50:15 +0000 (14:50 +0100)
committerpopcornmix <popcornmix@gmail.com>
Thu, 4 Apr 2013 10:30:11 +0000 (11:30 +0100)
commitdd2446434c7f8d8843b6ca258f8644045ac0e9f9
treeac44e833dd8e562df335b228b99e83dd5171fa48
parent4642dffd091481f055d52aba9e0f785a80b6e1cb
w1: fix oops when w1_search is called from netlink connector

On Sat, Mar 02, 2013 at 10:45:10AM +0100, Sven Geggus wrote:
> This is the bad commit I found doing git bisect:
04f482faf50535229a5a5c8d629cf963899f857c is the first bad commit
> commit 04f482faf50535229a5a5c8d629cf963899f857c
> Author: Patrick McHardy <kaber@trash.net>
> Date:   Mon Mar 28 08:39:36 2011 +0000

Good job. I was too lazy to bisect for bad commit;)

Reading the code I found problematic kthread_should_stop call from netlink
connector which causes the oops. After applying a patch, I've been testing
owfs+w1 setup for nearly two days and it seems to work very reliable (no
hangs, no memleaks etc).
More detailed description and possible fix is given below:

Function w1_search can be called from either kthread or netlink callback.
While the former works fine, the latter causes oops due to kthread_should_stop
invocation.

This patch adds a check if w1_search is serving netlink command, skipping
kthread_should_stop invocation if so.

Signed-off-by: Marcin Jurkowski <marcin1j@gmail.com>
Acked-by: Evgeniy Polyakov <zbr@ioremap.net>
Cc: Josh Boyer <jwboyer@gmail.com>
Tested-by: Sven Geggus <lists@fuchsschwanzdomain.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: stable <stable@vger.kernel.org> # 3.0+
drivers/w1/w1.c