From: Kenneth Graunke Date: Sat, 2 Sep 2017 00:32:01 +0000 (-0700) Subject: i965: Don't special case the batchbuffer when reference counting. X-Git-Tag: upstream/18.1.0~6167 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=44ac54a3fdcb0dd54ea0cf3f2e5738958aab8010;p=platform%2Fupstream%2Fmesa.git i965: Don't special case the batchbuffer when reference counting. We don't need to special case the batch - when we add the batch to the validation list, we can simply increase the refcount to 2, and when we make a new batch, we'll drop it back down to 1 (when unreferencing all buffers in the validation list). The final reference is still held by brw->batch.bo, as it was before. This removes the special case from a bunch of loops. Reviewed-by: Chris Wilson --- diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.c b/src/mesa/drivers/dri/i965/intel_batchbuffer.c index 73cf252..08d35ac 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c @@ -115,8 +115,7 @@ add_exec_bo(struct intel_batchbuffer *batch, struct brw_bo *bo) return index; } - if (bo != batch->bo) - brw_bo_reference(bo); + brw_bo_reference(bo); if (batch->exec_count == batch->exec_array_size) { batch->exec_array_size *= 2; @@ -199,9 +198,7 @@ intel_batchbuffer_reset_to_saved(struct brw_context *brw) { for (int i = brw->batch.saved.exec_count; i < brw->batch.exec_count; i++) { - if (brw->batch.exec_bos[i] != brw->batch.bo) { - brw_bo_unreference(brw->batch.exec_bos[i]); - } + brw_bo_unreference(brw->batch.exec_bos[i]); } brw->batch.reloc_count = brw->batch.saved.reloc_count; brw->batch.exec_count = brw->batch.saved.exec_count; @@ -217,9 +214,7 @@ intel_batchbuffer_free(struct intel_batchbuffer *batch) free(batch->cpu_map); for (int i = 0; i < batch->exec_count; i++) { - if (batch->exec_bos[i] != batch->bo) { - brw_bo_unreference(batch->exec_bos[i]); - } + brw_bo_unreference(batch->exec_bos[i]); } free(batch->relocs); free(batch->exec_bos); @@ -449,9 +444,7 @@ brw_new_batch(struct brw_context *brw) { /* Unreference any BOs held by the previous batch, and reset counts. */ for (int i = 0; i < brw->batch.exec_count; i++) { - if (brw->batch.exec_bos[i] != brw->batch.bo) { - brw_bo_unreference(brw->batch.exec_bos[i]); - } + brw_bo_unreference(brw->batch.exec_bos[i]); brw->batch.exec_bos[i] = NULL; } brw->batch.reloc_count = 0;