From 9908d196999bcdff73f29fbb3ab6ebf6b4da4ae9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolai=20H=C3=A4hnle?= Date: Mon, 7 Dec 2015 15:16:24 -0500 Subject: [PATCH] radeonsi: last_gfx_fence is a winsys fence MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: "11.1" Reviewed-by: Marek Olšák (cherry picked from commit d5a5dbd71f0e8756494809025ba2119efdf26373) --- 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 53062187b88..2c7e65e38ee 100644 --- a/src/gallium/drivers/radeonsi/si_debug.c +++ b/src/gallium/drivers/radeonsi/si_debug.c @@ -632,7 +632,7 @@ void si_check_vm_faults(struct si_context *sctx) /* Use conservative timeout 800ms, after which we won't wait any * longer and assume the GPU is hung. */ - screen->fence_finish(screen, sctx->last_gfx_fence, 800*1000*1000); + sctx->b.ws->fence_wait(sctx->b.ws, sctx->last_gfx_fence, 800*1000*1000); if (!si_vm_fault_occured(sctx, &addr)) return;