From: Marek Olšák Date: Mon, 17 Jul 2017 20:03:29 +0000 (-0400) Subject: radeonsi: add back the USE_MININUM_PRIORITY flag to the low-prio compiler queue X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ecec21add21c1eaf7e51ae8d3a63db8eddf68afc;p=mesa.git radeonsi: add back the USE_MININUM_PRIORITY flag to the low-prio compiler queue Accidentally removed in 9f320e0a387a1009c5218daf130b3b754a3c2800. Reviewed-by: Samuel Pitoiset Reviewed-by: Nicolai Hähnle --- diff --git a/src/gallium/drivers/radeonsi/si_pipe.c b/src/gallium/drivers/radeonsi/si_pipe.c index 4df60b698fe..0bc30027eab 100644 --- a/src/gallium/drivers/radeonsi/si_pipe.c +++ b/src/gallium/drivers/radeonsi/si_pipe.c @@ -971,7 +971,8 @@ struct pipe_screen *radeonsi_screen_create(struct radeon_winsys *ws, if (!util_queue_init(&sscreen->shader_compiler_queue_low_priority, "si_shader_low", 32, num_compiler_threads, - UTIL_QUEUE_INIT_RESIZE_IF_FULL)) { + UTIL_QUEUE_INIT_RESIZE_IF_FULL | + UTIL_QUEUE_INIT_USE_MINIMUM_PRIORITY)) { si_destroy_shader_cache(sscreen); FREE(sscreen); return NULL;