]> git.baikalelectronics.ru Git - kernel.git/commit
staging: greybus: loopback: fix broken udelay
authorJohan Hovold <johan@kernel.org>
Thu, 26 Jan 2017 11:37:32 +0000 (12:37 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jan 2017 08:29:23 +0000 (09:29 +0100)
commit4811bf59f7e60558d03c1f45ba87fb3a0759a15c
treefcee4b762409698da1ef63438f4efd342b8c335d
parent6331756390d9596913a87680081dda33a89682a0
staging: greybus: loopback: fix broken udelay

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: b36f04fa9417 ("greybus: loopback: Convert thread delay to microseconds")
Signed-off-by: Johan Hovold <johan@kernel.org>
Cc: stable <stable@vger.kernel.org> # 4.9+
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/greybus/loopback.c