[Mesa-dev] [PATCH v2 2/2] i965: perf: fix pointer to integer cast

Tapani Pälli tapani.palli at intel.com
Mon May 15 05:52:30 UTC 2017


Reviewed-by: Tapani Pälli <tapani.palli at intel.com>

On 05/12/2017 06:49 PM, Lionel Landwerlin wrote:
> v2: Just use cast to uintptr_t (Chris)
> 
> Reported-by: Mauro Rossi <issor.oruam at gmail.com>
> Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin at intel.com>
> ---
>   src/mesa/drivers/dri/i965/brw_performance_query.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/mesa/drivers/dri/i965/brw_performance_query.c b/src/mesa/drivers/dri/i965/brw_performance_query.c
> index 95f112e99f0..d1c4b6514bc 100644
> --- a/src/mesa/drivers/dri/i965/brw_performance_query.c
> +++ b/src/mesa/drivers/dri/i965/brw_performance_query.c
> @@ -833,7 +833,7 @@ open_i915_perf_oa_stream(struct brw_context *brw,
>                  I915_PERF_FLAG_FD_NONBLOCK |
>                  I915_PERF_FLAG_DISABLED,
>         .num_properties = ARRAY_SIZE(properties) / 2,
> -      .properties_ptr = (uint64_t)properties
> +      .properties_ptr = (uintptr_t) properties,
>      };
>      int fd = drmIoctl(drm_fd, DRM_IOCTL_I915_PERF_OPEN, &param);
>      if (fd == -1) {
> --
> 2.11.0
> _______________________________________________
> mesa-dev mailing list
> mesa-dev at lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
> 


More information about the mesa-dev mailing list