From ca475d5fba5f39d836b9f9994cb11caf559c10d9 Mon Sep 17 00:00:00 2001 From: Iago Toral Quiroga Date: Thu, 12 Dec 2019 11:19:23 +0100 Subject: [PATCH] v3d: actually root the first BO in a command list in the job MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- src/gallium/drivers/v3d/v3d_cl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.30.2