Re: [PATCH] GFS2: fix error propagation in init_threads()

2013-06-06 Thread Steven Whitehouse
Hi, Now in the -nmw tree. Thanks, Steve. On Thu, 2013-06-06 at 01:29 +0400, Alexey Khoroshilov wrote: > If kthread_run() fails, init_threads() returns > IS_ERR(p) instead of PTR_ERR(p). > > Found by Linux Driver Verification project (linuxtesting.org). > > Signed-off-by: Alexey Khoroshilov >

[PATCH] GFS2: fix error propagation in init_threads()

2013-06-05 Thread Alexey Khoroshilov
If kthread_run() fails, init_threads() returns IS_ERR(p) instead of PTR_ERR(p). Found by Linux Driver Verification project (linuxtesting.org). Signed-off-by: Alexey Khoroshilov --- fs/gfs2/ops_fstype.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/fs/gfs2/ops_fstyp