diff options
author | Marek Olšák <[email protected]> | 2018-10-01 15:51:06 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-10-06 22:05:58 -0400 |
commit | d877451b48a59ab0f9a4210fc736f51da5851c9a (patch) | |
tree | 267f260015d8ac2f9664c9d5c575bf0f66ee7e20 /src/util/disk_cache.c | |
parent | 066aa44fc56d277b3932d124c4962106c6962863 (diff) |
util/u_queue: add UTIL_QUEUE_INIT_SET_FULL_THREAD_AFFINITY
Initial version discussed with Rob Clark under a different patch name.
This approach leaves his driver unaffected.
Diffstat (limited to 'src/util/disk_cache.c')
-rw-r--r-- | src/util/disk_cache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/util/disk_cache.c b/src/util/disk_cache.c index 368ec417927..0aa2646a9bb 100644 --- a/src/util/disk_cache.c +++ b/src/util/disk_cache.c @@ -378,7 +378,8 @@ disk_cache_create(const char *gpu_name, const char *driver_id, */ util_queue_init(&cache->cache_queue, "disk$", 32, 1, UTIL_QUEUE_INIT_RESIZE_IF_FULL | - UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY); + UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY | + UTIL_QUEUE_INIT_SET_FULL_THREAD_AFFINITY); cache->path_init_failed = false; |