Revert "venus: Increase the base sleep of vn_relax"

This reverts commit 737937f45e.

Testing has revealed sizable performance drops arising out of this change.

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/15760>
This commit is contained in:
Renato Pereyra 2022-04-05 18:02:46 -07:00 committed by Marge Bot
parent cc78a3a820
commit 5ec4995305

View file

@ -86,7 +86,7 @@ vn_relax(uint32_t *iter, const char *reason)
* keep doubling both sleep length and count.
*/
const uint32_t busy_wait_order = 4;
const uint32_t base_sleep_us = 120;
const uint32_t base_sleep_us = 10;
const uint32_t warn_order = 12;
const uint32_t abort_order = 14;