diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2011-05-13 06:03:55 -0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2011-05-24 04:07:22 -0400 |
commit | a8e407925d49c521151dd24b6376c1f9a04a093f (patch) | |
tree | 9751821550b2f332f9937427874854f51a454352 /drivers/block | |
parent | 76727f684aa2d6a2dc59a7e5cf77e092a1bf4fb6 (diff) |
drbd: Fix for the connection problems on high latency links
It seems that the real cause of all the issues where that
we did not noticed in drbd_try_connect() when the other
guy closes one socket if the round trip time gets higher
than 100ms. There were that 100ms hard coded!
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
Diffstat (limited to 'drivers/block')
-rw-r--r-- | drivers/block/drbd/drbd_receiver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/drbd/drbd_receiver.c b/drivers/block/drbd/drbd_receiver.c index 0b17d426c32b..b0b0ba345e83 100644 --- a/drivers/block/drbd/drbd_receiver.c +++ b/drivers/block/drbd/drbd_receiver.c | |||
@@ -787,7 +787,7 @@ static int drbd_connect(struct drbd_conf *mdev) | |||
787 | } | 787 | } |
788 | 788 | ||
789 | if (sock && msock) { | 789 | if (sock && msock) { |
790 | schedule_timeout_interruptible(HZ / 10); | 790 | schedule_timeout_interruptible(mdev->net_conf->ping_timeo*HZ/10); |
791 | ok = drbd_socket_okay(mdev, &sock); | 791 | ok = drbd_socket_okay(mdev, &sock); |
792 | ok = drbd_socket_okay(mdev, &msock) && ok; | 792 | ok = drbd_socket_okay(mdev, &msock) && ok; |
793 | if (ok) | 793 | if (ok) |