From ac4ba43c558543305c25b0bf565a88b3dbf563c5 Mon Sep 17 00:00:00 2001 From: Asahi Lina Date: Thu, 11 Jul 2024 17:21:04 +0900 Subject: [PATCH] asahi: Print queue ID with batch debug Signed-off-by: Asahi Lina Part-of: --- src/gallium/drivers/asahi/agx_batch.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/asahi/agx_batch.c b/src/gallium/drivers/asahi/agx_batch.c index 6143ea028fe..d7f898451a7 100644 --- a/src/gallium/drivers/asahi/agx_batch.c +++ b/src/gallium/drivers/asahi/agx_batch.c @@ -23,7 +23,8 @@ do { \ if (unlikely(agx_device(batch->ctx->base.screen)->debug & \ AGX_DBG_BATCH)) \ - agx_msg("[Batch %u] " fmt "\n", agx_batch_idx(batch), ##__VA_ARGS__); \ + agx_msg("[Queue %u Batch %u] " fmt "\n", batch->ctx->queue_id, \ + agx_batch_idx(batch), ##__VA_ARGS__); \ } while (0) bool