From: Iago Toral Quiroga Date: Thu, 12 Dec 2019 10:19:23 +0000 (+0100) Subject: v3d: actually root the first BO in a command list in the job X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ca475d5fba5f39d836b9f9994cb11caf559c10d9;p=mesa.git v3d: actually root the first BO in a command list in the job We were passing cl->bo, which is NULL, so v3d_job_add_bo was a no-op. Reviewed-by: Alejandro PiƱeiro Reviewed-by: Eric Anholt --- diff --git a/src/gallium/drivers/v3d/v3d_cl.c b/src/gallium/drivers/v3d/v3d_cl.c index 94e83a894a4..575bf5c18e4 100644 --- a/src/gallium/drivers/v3d/v3d_cl.c +++ b/src/gallium/drivers/v3d/v3d_cl.c @@ -74,7 +74,7 @@ v3d_cl_ensure_space_with_branch(struct v3d_cl *cl, uint32_t space) v3d_bo_unreference(&cl->bo); } else { /* Root the first RCL/BCL BO in the job. */ - v3d_job_add_bo(cl->job, cl->bo); + v3d_job_add_bo(cl->job, new_bo); } cl->bo = new_bo;