[lustre-devel] [PATCH] lustre: lprocfs: fix return value of lprocfs_read_helper

James Simmons jsimmons at infradead.org
Sat Oct 20 12:06:24 PDT 2018


 
> This should be 'ret', not zero.

I bet that was one of my first patches to the linux lustre client since 
its a really old patch. Thanks for figuring that out.

Reviewed-by: James Simmons <jsimmons at infradead.org>
 
> Fixes: fdedd94509fd ("staging/lustre/lvfs: remove the lvfs layer")
> Signed-off-by: NeilBrown <neilb at suse.com>
> ---
>  drivers/staging/lustre/lustre/obdclass/lprocfs_status.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
> index dc1d540e05c7..edac88440b41 100644
> --- a/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
> +++ b/drivers/staging/lustre/lustre/obdclass/lprocfs_status.c
> @@ -1509,7 +1509,7 @@ __s64 lprocfs_read_helper(struct lprocfs_counter *lc,
>  		break;
>  	}
>  
> -	return 0;
> +	return ret;
>  }
>  EXPORT_SYMBOL(lprocfs_read_helper);
>  
> -- 
> 2.14.0.rc0.dirty
> 
> 


More information about the lustre-devel mailing list