Commit 42d7f7e8 authored by Bryan O'Donoghue's avatar Bryan O'Donoghue Committed by Greg Kroah-Hartman

greybus: loopback: masked out threads should sleep

If a thread is masked out it should not consume CPU cycles during a test.
We set an arbitrary 100 millisecond sleep time for each masked out thread.
Reasonably blunt instrument to ensure threads with nothing to do don't end
up thrashing the acquisition/release of mutexes.
Signed-off-by: default avatarBryan O'Donoghue <bryan.odonoghue@linaro.org>
Reviewed-by: default avatarPatrick Titiano <ptitiano@baylibre.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent f01f7a98
......@@ -693,8 +693,10 @@ static int gb_loopback_fn(void *data)
break;
mutex_lock(&gb_dev.mutex);
if (!gb_loopback_active(gb))
if (!gb_loopback_active(gb)) {
ms_wait = 100;
goto unlock_continue;
}
if (gb_dev.iteration_max) {
/* Determine overall lowest count */
low_count = gb->iteration_count;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment