diff options
author | Caio Marcelo de Oliveira Filho <[email protected]> | 2019-10-28 14:46:23 -0700 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2019-10-29 08:16:07 -0700 |
commit | 5290062a3f1c039c6b94069dd503cf1ddb6365cd (patch) | |
tree | e9194b5d11c9531553f9121fca3029987125d244 | |
parent | 7affc43e81a7f45fe5237fef49c57a91d4646018 (diff) |
anv: Fix output of INTEL_DEBUG=bat for chained batches
The anv_batch_bo contents are linked one to another, and when printing
we have to start with the first of those. Since in `u_vector` new
elements are added to the head, to get the first element we need the
vector's tail.
Fixes: 32ffd90002b ("anv: add support for INTEL_DEBUG=bat")
Reviewed-by: Lionel Landwerlin <[email protected]>
(cherry picked from commit e2155158e99e405313d6bc4d4478b92b4234dc4e)
-rw-r--r-- | src/intel/vulkan/anv_batch_chain.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_batch_chain.c b/src/intel/vulkan/anv_batch_chain.c index 3b1f713ef5b..e5d8b3b568d 100644 --- a/src/intel/vulkan/anv_batch_chain.c +++ b/src/intel/vulkan/anv_batch_chain.c @@ -1732,7 +1732,7 @@ anv_cmd_buffer_execbuf(struct anv_device *device, if (cmd_buffer) { if (unlikely(INTEL_DEBUG & DEBUG_BATCH)) { - struct anv_batch_bo **bo = u_vector_head(&cmd_buffer->seen_bbos); + struct anv_batch_bo **bo = u_vector_tail(&cmd_buffer->seen_bbos); device->cmd_buffer_being_decoded = cmd_buffer; gen_print_batch(&device->decoder_ctx, (*bo)->bo.map, |