diff options
author | Tapani Pälli <[email protected]> | 2018-02-28 18:54:24 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2018-02-28 19:50:54 +0200 |
commit | 0c983b9094bb544456da5efd0960fae00ce73358 (patch) | |
tree | 58eaab81b5d353eea24395f076e7f1196d9b58fa /src/intel/vulkan/anv_device.c | |
parent | a01d5e371269eed50fb5f478b98ace5b64490001 (diff) |
anv: remove anv_gem_set_context_priority helper
anv_gem_set_context_param is to be used directly instead!
Fixes: 6d8ab53303 "anv: implement VK_EXT_global_priority extension"
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index f314d7667d6..56c0c5fa9fd 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -1433,8 +1433,9 @@ VkResult anv_CreateDevice( * is returned. */ if (physical_device->has_context_priority) { - int err = - anv_gem_set_context_priority(device, vk_priority_to_gen(priority)); + int err = anv_gem_set_context_param(device->fd, device->context_id, + I915_CONTEXT_PARAM_PRIORITY, + vk_priority_to_gen(priority)); if (err != 0 && priority > VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT) { result = vk_error(VK_ERROR_NOT_PERMITTED_EXT); goto fail_fd; |