mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 06:40:11 +01:00
disk_cache: Fail creation when cannot inizialize queue.
Signed-off-by: Giovanni Mascellani <gmascellani@codeweavers.com>
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
Fixes: e2c4435b07 ("util/disk_cache: add thread queue to disk cache")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8983>
This commit is contained in:
parent
9909fe6bac
commit
c6731daa5e
1 changed files with 5 additions and 4 deletions
|
|
@ -162,10 +162,11 @@ disk_cache_create(const char *gpu_name, const char *driver_id,
|
|||
* The queue will resize automatically when it's full, so adding new jobs
|
||||
* doesn't stall.
|
||||
*/
|
||||
util_queue_init(&cache->cache_queue, "disk$", 32, 4,
|
||||
UTIL_QUEUE_INIT_RESIZE_IF_FULL |
|
||||
UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY |
|
||||
UTIL_QUEUE_INIT_SET_FULL_THREAD_AFFINITY);
|
||||
if (!util_queue_init(&cache->cache_queue, "disk$", 32, 4,
|
||||
UTIL_QUEUE_INIT_RESIZE_IF_FULL |
|
||||
UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY |
|
||||
UTIL_QUEUE_INIT_SET_FULL_THREAD_AFFINITY))
|
||||
goto fail;
|
||||
|
||||
cache->path_init_failed = false;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue