summaryrefslogtreecommitdiff
path: root/fs/orangefs/waitqueue.c
diff options
context:
space:
mode:
authorAl Viro <viro@zeniv.linux.org.uk>2016-01-23 13:17:55 -0500
committerMike Marshall <hubcap@omnibond.com>2016-01-23 15:20:11 -0500
commit727cbfea623b78d46ce8e0f8c931b5189f3fe2e0 (patch)
tree43876fa45e56611fd9901f1b943be7438adbc518 /fs/orangefs/waitqueue.c
parenteab9b38939fae1b7731570478718a5d1b2f28ea9 (diff)
orangefs: get rid of MSECS_TO_JIFFIES
All timeouts are in _seconds_, so all calls are of form MSECS_TO_JIFFIES(n * 1000), which is a convoluted way to spell n * HZ. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Mike Marshall <hubcap@omnibond.com>
Diffstat (limited to 'fs/orangefs/waitqueue.c')
-rw-r--r--fs/orangefs/waitqueue.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/fs/orangefs/waitqueue.c b/fs/orangefs/waitqueue.c
index 699ffd8b2a51..cdbf57bef3eb 100644
--- a/fs/orangefs/waitqueue.c
+++ b/fs/orangefs/waitqueue.c
@@ -235,8 +235,8 @@ retry_servicing:
* Wait for orangefs_bufmap_initialize() to wake me up
* within the allotted time.
*/
- ret = schedule_timeout(MSECS_TO_JIFFIES
- (1000 * ORANGEFS_BUFMAP_WAIT_TIMEOUT_SECS));
+ ret = schedule_timeout(
+ ORANGEFS_BUFMAP_WAIT_TIMEOUT_SECS * HZ);
gossip_debug(GOSSIP_WAIT_DEBUG,
"Value returned from schedule_timeout:"
@@ -375,8 +375,7 @@ static int wait_for_matching_downcall(struct orangefs_kernel_op_s *op)
* subsequent attempts, we retry exactly once
* with timeouts
*/
- if (!schedule_timeout(MSECS_TO_JIFFIES
- (1000 * op_timeout_secs))) {
+ if (!schedule_timeout(op_timeout_secs * HZ)) {
gossip_debug(GOSSIP_WAIT_DEBUG,
"*** %s:"
" operation timed out (tag"
@@ -469,8 +468,7 @@ static int wait_for_cancellation_downcall(struct orangefs_kernel_op_s *op)
"%s:About to call schedule_timeout.\n",
__func__);
spin_unlock(&op->lock);
- ret =
- schedule_timeout(MSECS_TO_JIFFIES(1000 * op_timeout_secs));
+ ret = schedule_timeout(op_timeout_secs * HZ);
gossip_debug(GOSSIP_WAIT_DEBUG,
"%s:Value returned from schedule_timeout(%d).\n",