staging: greybus: loopback: fix broken udelay
commit33b8807a6fupstream. The loopback driver allows the user to set a minimum delay of up to one second to be inserted between test iterations (i.e. request submissions). The delay is currently specified in microseconds and is implemented using udelay. Busy looping for long periods is not just anti-social; udelay must not be used for delays longer than a few milliseconds due to the risk of integer overflow. Replace the broken udelay with a usleep_range with a 100 us range for short delays (< 20 ms) and otherwise revert to using msleep. Fixes:b36f04fa94("greybus: loopback: Convert thread delay to microseconds") Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
6c95eba9ca
commit
2893a55e39
@ -1051,8 +1051,13 @@ static int gb_loopback_fn(void *data)
|
||||
gb_loopback_calculate_stats(gb, !!error);
|
||||
}
|
||||
gb->send_count++;
|
||||
if (us_wait)
|
||||
udelay(us_wait);
|
||||
|
||||
if (us_wait) {
|
||||
if (us_wait < 20000)
|
||||
usleep_range(us_wait, us_wait + 100);
|
||||
else
|
||||
msleep(us_wait / 1000);
|
||||
}
|
||||
}
|
||||
|
||||
gb_pm_runtime_put_autosuspend(bundle);
|
||||
|
||||
Reference in New Issue
Block a user