staging/lustre: use jiffies for lp_last_query times
authorArnd Bergmann <[email protected]>
Sun, 27 Sep 2015 20:45:01 +0000 (16:45 -0400)
committerGreg Kroah-Hartman <[email protected]>
Tue, 29 Sep 2015 02:03:33 +0000 (04:03 +0200)
The recently introduced lnet_peer_set_alive() function uses
get_seconds() to read the current time into a shared variable,
but all other uses of that variable compare it to jiffies values.

This changes the current use to jiffies as well for consistency.

Signed-off-by: Arnd Bergmann <[email protected]>
Fixes: af3fa7c71bf ("staging/lustre/lnet: peer aliveness status and NI status")
Cc: Liang Zhen <[email protected]>
Cc: James Simmons <[email protected]>
Cc: Isaac Huang <[email protected]>
Signed-off-by: Oleg Drokin <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/staging/lustre/include/linux/lnet/lib-lnet.h

index 22d54b2095282d10af250b58910a3fd46882a1ba..b61d5045a56667857e48cf3b5759bb79709a4b54 100644 (file)
@@ -680,7 +680,7 @@ void lnet_debug_peer(lnet_nid_t nid);
 static inline void
 lnet_peer_set_alive(lnet_peer_t *lp)
 {
-       lp->lp_last_alive = lp->lp_last_query = get_seconds();
+       lp->lp_last_alive = lp->lp_last_query = jiffies;
        if (!lp->lp_alive)
                lnet_notify_locked(lp, 0, 1, lp->lp_last_alive);
 }