diff options
author | Marek Olšák <[email protected]> | 2018-07-03 14:49:42 -0400 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2018-07-04 22:03:35 -0400 |
commit | 7fab8a4b37a1215c51334242b070b2dcd9a3a80c (patch) | |
tree | 1af7f82103c46273ce61f8cb87caa9e3bc64ec3a /src/gallium/drivers/radeonsi | |
parent | b238e33bc9d48b814370da4a9e49c431981053cc (diff) |
Shorten u_queue names
There is a 15-character limit for thread names shared by the queue name
and process name. Shorten the thread name to make space for the process
name.
Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi')
-rw-r--r-- | src/gallium/drivers/radeonsi/si_pipe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index 86a95a0da01..ac4f77a8964 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -859,7 +859,7 @@ struct pipe_screen *radeonsi_screen_create(struct radeon_winsys *ws, num_comp_lo_threads = MIN2(num_comp_lo_threads, ARRAY_SIZE(sscreen->compiler_lowp)); - if (!util_queue_init(&sscreen->shader_compiler_queue, "si_shader", + if (!util_queue_init(&sscreen->shader_compiler_queue, "sh", 64, num_comp_hi_threads, UTIL_QUEUE_INIT_RESIZE_IF_FULL)) { si_destroy_shader_cache(sscreen); @@ -868,7 +868,7 @@ struct pipe_screen *radeonsi_screen_create(struct radeon_winsys *ws, } if (!util_queue_init(&sscreen->shader_compiler_queue_low_priority, - "si_shader_low", + "shlo", 64, num_comp_lo_threads, UTIL_QUEUE_INIT_RESIZE_IF_FULL | UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY)) { |