hk: clarify command pool types

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36633>
This commit is contained in:
Alyssa Rosenzweig 2025-08-02 19:52:30 -04:00 committed by Marge Bot
parent e9bf1c59ed
commit 7eb7db3613

View file

@ -23,7 +23,7 @@ hk_cmd_bo_create(struct hk_cmd_pool *pool, bool usc, struct hk_cmd_bo **bo_out)
return vk_error(pool, VK_ERROR_OUT_OF_HOST_MEMORY);
bo->bo = agx_bo_create(&dev->dev, HK_CMD_BO_SIZE, 0, usc ? AGX_BO_LOW_VA : 0,
"Command pool");
usc ? "USC command pool" : "Main command pool");
if (bo->bo == NULL) {
vk_free(&pool->vk.alloc, bo);
return vk_error(pool, VK_ERROR_OUT_OF_DEVICE_MEMORY);