diff options
author | K. Y. Srinivasan <kys@microsoft.com> | 2017-05-18 10:46:05 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2017-05-25 15:42:42 +0200 |
commit | e917a5e23a87e24931625c344daea834cd2d6f2f (patch) | |
tree | f5a9c761a0bab01b97a0927f5569b305168686dc /drivers/hv | |
parent | 1d10602d306cb7f70545b5e1166efc9409e7d384 (diff) | |
download | linux-stable-e917a5e23a87e24931625c344daea834cd2d6f2f.tar.gz linux-stable-e917a5e23a87e24931625c344daea834cd2d6f2f.tar.bz2 linux-stable-e917a5e23a87e24931625c344daea834cd2d6f2f.zip |
drivers: hv: vmbus: Increase the time between retries in vmbus_post_msg()
Commit c0bb03924f1a ("Drivers: hv: vmbus: Raise retry/wait limits in
vmbus_post_msg()") increased the retry/wait limits of vmbus_post_msg()
to address the new DoS protection policies in WS2016.
Increase the time between retries to make the
code more robust.
Signed-off-by: K. Y. Srinivasan <kys@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/hv')
-rw-r--r-- | drivers/hv/connection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/hv/connection.c b/drivers/hv/connection.c index c2d74ee95f60..59c11ff90d12 100644 --- a/drivers/hv/connection.c +++ b/drivers/hv/connection.c @@ -390,7 +390,7 @@ int vmbus_post_msg(void *buffer, size_t buflen, bool can_sleep) else mdelay(usec / 1000); - if (usec < 256000) + if (retries < 22) usec *= 2; } return ret; |