R-b'

On Mon, Sep 16, 2019 at 11:36:43AM +0200, Boris Brezillon wrote:
> ctx is allocated with rzalloc() which takes care of zero-ing the memory
> region. No need to call memset(0) on top.
> 
> Signed-off-by: Boris Brezillon <boris.brezil...@collabora.com>
> ---
>  src/gallium/drivers/panfrost/pan_context.c | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/src/gallium/drivers/panfrost/pan_context.c 
> b/src/gallium/drivers/panfrost/pan_context.c
> index 06a12662dd36..323a48090365 100644
> --- a/src/gallium/drivers/panfrost/pan_context.c
> +++ b/src/gallium/drivers/panfrost/pan_context.c
> @@ -2628,7 +2628,6 @@ panfrost_create_context(struct pipe_screen *screen, 
> void *priv, unsigned flags)
>  {
>          struct panfrost_context *ctx = rzalloc(screen, struct 
> panfrost_context);
>          struct panfrost_screen *pscreen = pan_screen(screen);
> -        memset(ctx, 0, sizeof(*ctx));
>          struct pipe_context *gallium = (struct pipe_context *) ctx;
>  
>          ctx->is_t6xx = pscreen->gpu_id < 0x0700; /* Literally, "earlier than 
> T700" */
> -- 
> 2.21.0
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to