[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1368188011-23661-9-git-send-email-imre.deak@intel.com>
Date: Fri, 10 May 2013 15:13:27 +0300
From: Imre Deak <imre.deak@...el.com>
To: linux-kernel@...r.kernel.org
Cc: Andrew Morton <akpm@...ux-foundation.org>,
Daniel Vetter <daniel.vetter@...ll.ch>,
"J. Bruce Fields" <bfields@...ldses.org>,
Trond Myklebust <Trond.Myklebust@...app.com>,
"David S. Miller" <davem@...emloft.net>,
Haggai Eran <haggaie@...lanox.com>,
Or Gerlitz <ogerlitz@...lanox.com>,
Shani Michaeli <shanim@...lanox.com>,
Roland Dreier <roland@...estorage.com>,
linux-nfs@...r.kernel.org, netdev@...r.kernel.org
Subject: [PATCH 09/11] net/sunrpc: take msecs_to_jiffies_min into use
Use msecs_to_jiffies_min instead of open-coding the same.
Signed-off-by: Imre Deak <imre.deak@...el.com>
---
net/sunrpc/xprtrdma/verbs.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/sunrpc/xprtrdma/verbs.c b/net/sunrpc/xprtrdma/verbs.c
index 93726560..9cac2c8 100644
--- a/net/sunrpc/xprtrdma/verbs.c
+++ b/net/sunrpc/xprtrdma/verbs.c
@@ -404,7 +404,7 @@ rpcrdma_create_id(struct rpcrdma_xprt *xprt,
goto out;
}
wait_for_completion_interruptible_timeout(&ia->ri_done,
- msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
+ msecs_to_jiffies_min(RDMA_RESOLVE_TIMEOUT));
rc = ia->ri_async_rc;
if (rc)
goto out;
@@ -417,7 +417,7 @@ rpcrdma_create_id(struct rpcrdma_xprt *xprt,
goto out;
}
wait_for_completion_interruptible_timeout(&ia->ri_done,
- msecs_to_jiffies(RDMA_RESOLVE_TIMEOUT) + 1);
+ msecs_to_jiffies_min(RDMA_RESOLVE_TIMEOUT));
rc = ia->ri_async_rc;
if (rc)
goto out;
--
1.7.10.4
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists