Module: Mesa Branch: main Commit: 94e867e4a682305e28efbacafc01551172f5a11a URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=94e867e4a682305e28efbacafc01551172f5a11a
Author: Tatsuyuki Ishi <[email protected]> Date: Tue Nov 14 16:30:24 2023 +0900 zink: Fix waiting for texture commit semaphores. The commit was always being treated as failed... Fixes: d1456a6b0ad ("zink: add semaphore handling for sparse binds") Reviewed-by: Dave Airlie <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26171> --- src/gallium/drivers/zink/zink_bo.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gallium/drivers/zink/zink_bo.c b/src/gallium/drivers/zink/zink_bo.c index c7a3833eb3a..0ba1e196a0f 100644 --- a/src/gallium/drivers/zink/zink_bo.c +++ b/src/gallium/drivers/zink/zink_bo.c @@ -1139,8 +1139,8 @@ zink_bo_commit(struct zink_context *ctx, struct zink_resource *res, unsigned lev fprintf(stderr, "zink: leaking sparse backing memory\n"); } } + ok = false; } - ok = false; } out:
