Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Matthew Brost <matthew.brost@intel.com>
To: "Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Cc: intel-xe@lists.freedesktop.org, Rodrigo Vivi <rodrigo.vivi@intel.com>
Subject: Re: [PATCH 4/5] drm/xe: Don't use __user error pointers
Date: Tue, 30 Jan 2024 17:54:02 +0000	[thread overview]
Message-ID: <Zbk3uhTO54zS6fUz@DUT025-TGLU.fm.intel.com> (raw)
In-Reply-To: <20240117134048.165425-5-thomas.hellstrom@linux.intel.com>

On Wed, Jan 17, 2024 at 02:40:47PM +0100, Thomas Hellström wrote:
> The error pointer macros are not aware of __user pointers and as a
> consequence sparse warns.
> 
> Have the copy_mask() function return an integer instead of a __user
> pointer.
> 
> Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
> Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
> Cc: Matthew Brost <matthew.brost@intel.com>

Reviewed-by: Matthew Brost <matthew.brost@intel.com>

> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
>  drivers/gpu/drm/xe/xe_query.c | 50 +++++++++++++++++------------------
>  1 file changed, 25 insertions(+), 25 deletions(-)
> 
> diff --git a/drivers/gpu/drm/xe/xe_query.c b/drivers/gpu/drm/xe/xe_query.c
> index 9b35673b286c..7e924faeeea0 100644
> --- a/drivers/gpu/drm/xe/xe_query.c
> +++ b/drivers/gpu/drm/xe/xe_query.c
> @@ -459,21 +459,21 @@ static size_t calc_topo_query_size(struct xe_device *xe)
>  		 sizeof_field(struct xe_gt, fuse_topo.eu_mask_per_dss));
>  }
>  
> -static void __user *copy_mask(void __user *ptr,
> -			      struct drm_xe_query_topology_mask *topo,
> -			      void *mask, size_t mask_size)
> +static int copy_mask(void __user **ptr,
> +		     struct drm_xe_query_topology_mask *topo,
> +		     void *mask, size_t mask_size)
>  {
>  	topo->num_bytes = mask_size;
>  
> -	if (copy_to_user(ptr, topo, sizeof(*topo)))
> -		return ERR_PTR(-EFAULT);
> -	ptr += sizeof(topo);
> +	if (copy_to_user(*ptr, topo, sizeof(*topo)))
> +		return -EFAULT;
> +	*ptr += sizeof(topo);
>  
> -	if (copy_to_user(ptr, mask, mask_size))
> -		return ERR_PTR(-EFAULT);
> -	ptr += mask_size;
> +	if (copy_to_user(*ptr, mask, mask_size))
> +		return -EFAULT;
> +	*ptr += mask_size;
>  
> -	return ptr;
> +	return 0;
>  }
>  
>  static int query_gt_topology(struct xe_device *xe,
> @@ -493,28 +493,28 @@ static int query_gt_topology(struct xe_device *xe,
>  	}
>  
>  	for_each_gt(gt, xe, id) {
> +		int err;
> +
>  		topo.gt_id = id;
>  
>  		topo.type = DRM_XE_TOPO_DSS_GEOMETRY;
> -		query_ptr = copy_mask(query_ptr, &topo,
> -				      gt->fuse_topo.g_dss_mask,
> -				      sizeof(gt->fuse_topo.g_dss_mask));
> -		if (IS_ERR(query_ptr))
> -			return PTR_ERR(query_ptr);
> +		err = copy_mask(&query_ptr, &topo, gt->fuse_topo.g_dss_mask,
> +				sizeof(gt->fuse_topo.g_dss_mask));
> +		if (err)
> +			return err;
>  
>  		topo.type = DRM_XE_TOPO_DSS_COMPUTE;
> -		query_ptr = copy_mask(query_ptr, &topo,
> -				      gt->fuse_topo.c_dss_mask,
> -				      sizeof(gt->fuse_topo.c_dss_mask));
> -		if (IS_ERR(query_ptr))
> -			return PTR_ERR(query_ptr);
> +		err = copy_mask(&query_ptr, &topo, gt->fuse_topo.c_dss_mask,
> +				sizeof(gt->fuse_topo.c_dss_mask));
> +		if (err)
> +			return err;
>  
>  		topo.type = DRM_XE_TOPO_EU_PER_DSS;
> -		query_ptr = copy_mask(query_ptr, &topo,
> -				      gt->fuse_topo.eu_mask_per_dss,
> -				      sizeof(gt->fuse_topo.eu_mask_per_dss));
> -		if (IS_ERR(query_ptr))
> -			return PTR_ERR(query_ptr);
> +		err = copy_mask(&query_ptr, &topo,
> +				gt->fuse_topo.eu_mask_per_dss,
> +				sizeof(gt->fuse_topo.eu_mask_per_dss));
> +		if (err)
> +			return err;
>  	}
>  
>  	return 0;
> -- 
> 2.43.0
> 

  reply	other threads:[~2024-01-30 17:54 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-17 13:40 [PATCH 0/5] Fixes for sparse warning Thomas Hellström
2024-01-17 13:40 ` [PATCH 1/5] drm/xe/dmabuf: Make xe_dmabuf_ops static Thomas Hellström
2024-01-17 13:48   ` Francois Dugast
2024-01-17 13:40 ` [PATCH 2/5] drm/xe/ggtt: Use ioread64 to dereference ggtt::gsm Thomas Hellström
2024-01-30 17:11   ` Matthew Brost
2024-01-17 13:40 ` [PATCH 3/5] drm/xe: Annotate mcr_[un]lock() Thomas Hellström
2024-01-30 17:18   ` Matthew Brost
2024-01-17 13:40 ` [PATCH 4/5] drm/xe: Don't use __user error pointers Thomas Hellström
2024-01-30 17:54   ` Matthew Brost [this message]
2024-01-17 13:40 ` [PATCH 5/5] drm/xe: Use a NULL pointer instead of 0 Thomas Hellström
2024-01-17 13:59   ` Francois Dugast
2024-01-17 23:12 ` ✓ CI.Patch_applied: success for Fixes for sparse warning Patchwork
2024-01-17 23:12 ` ✗ CI.checkpatch: warning " Patchwork
2024-01-17 23:13 ` ✓ CI.KUnit: success " Patchwork
2024-01-17 23:21 ` ✓ CI.Build: " Patchwork
2024-01-17 23:21 ` ✓ CI.Hooks: " Patchwork
2024-01-17 23:22 ` ✓ CI.checksparse: " Patchwork
2024-01-17 23:46 ` ✓ CI.BAT: " Patchwork

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Zbk3uhTO54zS6fUz@DUT025-TGLU.fm.intel.com \
    --to=matthew.brost@intel.com \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=rodrigo.vivi@intel.com \
    --cc=thomas.hellstrom@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox