[PATCH] xfs; fix xfs_da_args sparse warning in xfs_readdir

Brian Foster bfoster at redhat.com
Fri Jun 6 12:33:54 CDT 2014


On Fri, Jun 06, 2014 at 06:18:21PM +1000, Dave Chinner wrote:
> From: Dave Chinner <dchinner at redhat.com>
> 
> The kbuild test robot reported:
> 
> >> fs/xfs/xfs_dir2_readdir.c:672:41: sparse: Using plain integer as NULL pointer
> 
> Fix it.
> 
> Reported-by: kbuild test robot <fengguang.wu at intel.com>
> Signed-off-by: Dave Chinner <dchinner at redhat.com>
> ---

Reviewed-by: Brian Foster <bfoster at redhat.com>

>  fs/xfs/xfs_dir2_readdir.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/fs/xfs/xfs_dir2_readdir.c b/fs/xfs/xfs_dir2_readdir.c
> index ca1f43c..48e99af 100644
> --- a/fs/xfs/xfs_dir2_readdir.c
> +++ b/fs/xfs/xfs_dir2_readdir.c
> @@ -669,7 +669,7 @@ xfs_readdir(
>  	struct dir_context	*ctx,
>  	size_t			bufsize)
>  {
> -	struct xfs_da_args	args = {0};
> +	struct xfs_da_args	args = { NULL };
>  	int			rval;
>  	int			v;
>  	uint			lock_mode;
> -- 
> 2.0.0
> 
> _______________________________________________
> xfs mailing list
> xfs at oss.sgi.com
> http://oss.sgi.com/mailman/listinfo/xfs



More information about the xfs mailing list