From: Marek Olšák Date: Wed, 13 Jun 2018 01:13:44 +0000 (-0400) Subject: radeonsi: return real memory usage instead of per-process usage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a2d4c8ff6df99e5bb68d82549747f8c7baad403e;p=mesa.git radeonsi: return real memory usage instead of per-process usage Reviewed-by: Bas Nieuwenhuizen --- diff --git a/src/gallium/drivers/radeonsi/si_get.c b/src/gallium/drivers/radeonsi/si_get.c index 01050cf02b4..154fabebdcc 100644 --- a/src/gallium/drivers/radeonsi/si_get.c +++ b/src/gallium/drivers/radeonsi/si_get.c @@ -920,8 +920,8 @@ static void si_query_memory_info(struct pipe_screen *screen, * * Instead, return statistics of this process. */ - vram_usage = ws->query_value(ws, RADEON_REQUESTED_VRAM_MEMORY) / 1024; - gtt_usage = ws->query_value(ws, RADEON_REQUESTED_GTT_MEMORY) / 1024; + vram_usage = ws->query_value(ws, RADEON_VRAM_USAGE) / 1024; + gtt_usage = ws->query_value(ws, RADEON_GTT_USAGE) / 1024; info->avail_device_memory = vram_usage <= info->total_device_memory ?