From 7d48a84b16b6f1e60dae921fc17fe4d1e55701d0 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Tue, 3 Jan 2017 18:41:13 +0100 Subject: [PATCH] radeonsi: capitalize VM hex addr when dumping buffer list MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Useful when debugging with R600_DEBUG=vm,check_vm to match addr in both outputs. Signed-off-by: Samuel Pitoiset Reviewed-by: Marek Olšák --- src/gallium/drivers/radeonsi/si_debug.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeonsi/si_debug.c b/src/gallium/drivers/radeonsi/si_debug.c index 1090dda..ef92790 100644 --- a/src/gallium/drivers/radeonsi/si_debug.c +++ b/src/gallium/drivers/radeonsi/si_debug.c @@ -633,7 +633,7 @@ static void si_dump_bo_list(struct si_context *sctx, } /* Print the buffer. */ - fprintf(f, " %10"PRIu64" 0x%013"PRIx64" 0x%013"PRIx64" ", + fprintf(f, " %10"PRIu64" 0x%013"PRIX64" 0x%013"PRIX64" ", size / page_size, va / page_size, (va + size) / page_size); /* Print the usage. */ -- 2.7.4