diff options
author | Sagi Grimberg <[email protected]> | 2017-03-21 16:32:38 +0200 |
---|---|---|
committer | Jens Axboe <[email protected]> | 2017-04-04 09:48:23 -0600 |
commit | 782d820ca47fa9335cbf14ef058060625fc33a00 (patch) | |
tree | df7716962f704e906862909dbf5cc66f96aef9b0 | |
parent | 777dc82395de6e04b3a5fedcf153eb99bf5f1241 (diff) |
nvme-rdma: Give some more grace for rdma connection establishment
The target might be occupied with multiple hosts so lets
give it some more grace before failing the connection
establishment.
Signed-off-by: Sagi Grimberg <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
-rw-r--r-- | drivers/nvme/host/rdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nvme/host/rdma.c b/drivers/nvme/host/rdma.c index 25d4eeaeca60..d809e5ab8106 100644 --- a/drivers/nvme/host/rdma.c +++ b/drivers/nvme/host/rdma.c @@ -34,7 +34,7 @@ #include "fabrics.h" -#define NVME_RDMA_CONNECT_TIMEOUT_MS 1000 /* 1 second */ +#define NVME_RDMA_CONNECT_TIMEOUT_MS 3000 /* 3 second */ #define NVME_RDMA_MAX_SEGMENT_SIZE 0xffffff /* 24-bit SGL field */ |