cluster-devel.redhat.com archive mirror
 help / color / mirror / Atom feed
* [Cluster-devel] [PATCH] GFS2: fix error propagation in init_threads()
@ 2013-06-05 21:29 Alexey Khoroshilov
  2013-06-06  9:21 ` Steven Whitehouse
  0 siblings, 1 reply; 2+ messages in thread
From: Alexey Khoroshilov @ 2013-06-05 21:29 UTC (permalink / raw)
  To: cluster-devel.redhat.com

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 <khoroshilov@ispras.ru>
---
 fs/gfs2/ops_fstype.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c
index 60ede2a..0262c19 100644
--- a/fs/gfs2/ops_fstype.c
+++ b/fs/gfs2/ops_fstype.c
@@ -916,16 +916,16 @@ static int init_threads(struct gfs2_sbd *sdp, int undo)
 		goto fail_quotad;
 
 	p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
-	error = IS_ERR(p);
-	if (error) {
+	if (IS_ERR(p)) {
+		error = PTR_ERR(p);
 		fs_err(sdp, "can't start logd thread: %d\n", error);
 		return error;
 	}
 	sdp->sd_logd_process = p;
 
 	p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
-	error = IS_ERR(p);
-	if (error) {
+	if (IS_ERR(p)) {
+		error = PTR_ERR(p);
 		fs_err(sdp, "can't start quotad thread: %d\n", error);
 		goto fail;
 	}
-- 
1.8.1.2



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [Cluster-devel] [PATCH] GFS2: fix error propagation in init_threads()
  2013-06-05 21:29 [Cluster-devel] [PATCH] GFS2: fix error propagation in init_threads() Alexey Khoroshilov
@ 2013-06-06  9:21 ` Steven Whitehouse
  0 siblings, 0 replies; 2+ messages in thread
From: Steven Whitehouse @ 2013-06-06  9:21 UTC (permalink / raw)
  To: cluster-devel.redhat.com

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 <khoroshilov@ispras.ru>
> ---
>  fs/gfs2/ops_fstype.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/fs/gfs2/ops_fstype.c b/fs/gfs2/ops_fstype.c
> index 60ede2a..0262c19 100644
> --- a/fs/gfs2/ops_fstype.c
> +++ b/fs/gfs2/ops_fstype.c
> @@ -916,16 +916,16 @@ static int init_threads(struct gfs2_sbd *sdp, int undo)
>  		goto fail_quotad;
>  
>  	p = kthread_run(gfs2_logd, sdp, "gfs2_logd");
> -	error = IS_ERR(p);
> -	if (error) {
> +	if (IS_ERR(p)) {
> +		error = PTR_ERR(p);
>  		fs_err(sdp, "can't start logd thread: %d\n", error);
>  		return error;
>  	}
>  	sdp->sd_logd_process = p;
>  
>  	p = kthread_run(gfs2_quotad, sdp, "gfs2_quotad");
> -	error = IS_ERR(p);
> -	if (error) {
> +	if (IS_ERR(p)) {
> +		error = PTR_ERR(p);
>  		fs_err(sdp, "can't start quotad thread: %d\n", error);
>  		goto fail;
>  	}




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-06-06  9:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-05 21:29 [Cluster-devel] [PATCH] GFS2: fix error propagation in init_threads() Alexey Khoroshilov
2013-06-06  9:21 ` Steven Whitehouse

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).