Whamcloud - gitweb
LU-15102 lnet: Reset ni_ping_count only on receive
[fs/lustre-release.git] / lnet / lnet / lib-msg.c
index 94f2a78..1ed75cd 100644 (file)
@@ -27,7 +27,6 @@
  */
 /*
  * This file is part of Lustre, http://www.lustre.org/
- * Lustre is a trademark of Sun Microsystems, Inc.
  *
  * lnet/lnet/lib-msg.c
  *
@@ -450,6 +449,31 @@ lnet_dec_healthv_locked(atomic_t *healthv, int sensitivity)
        }
 }
 
+/* must hold net_lock/0 */
+void
+lnet_ni_add_to_recoveryq_locked(struct lnet_ni *ni,
+                               struct list_head *recovery_queue, time64_t now)
+{
+       if (!list_empty(&ni->ni_recovery))
+               return;
+
+       if (atomic_read(&ni->ni_healthv) == LNET_MAX_HEALTH_VALUE)
+               return;
+
+       /* This NI is going on the recovery queue, so take a ref on it */
+       lnet_ni_addref_locked(ni, 0);
+
+       lnet_ni_set_next_ping(ni, now);
+
+       CDEBUG(D_NET, "%s added to recovery queue. ping count: %u next ping: %lld health :%d\n",
+              libcfs_nidstr(&ni->ni_nid),
+              ni->ni_ping_count,
+              ni->ni_next_ping,
+              atomic_read(&ni->ni_healthv));
+
+       list_add_tail(&ni->ni_recovery, recovery_queue);
+}
+
 static void
 lnet_handle_local_failure(struct lnet_ni *local_ni)
 {
@@ -465,22 +489,8 @@ lnet_handle_local_failure(struct lnet_ni *local_ni)
        }
 
        lnet_dec_healthv_locked(&local_ni->ni_healthv, lnet_health_sensitivity);
-       /*
-        * add the NI to the recovery queue if it's not already there
-        * and it's health value is actually below the maximum. It's
-        * possible that the sensitivity might be set to 0, and the health
-        * value will not be reduced. In this case, there is no reason to
-        * invoke recovery
-        */
-       if (list_empty(&local_ni->ni_recovery) &&
-           atomic_read(&local_ni->ni_healthv) < LNET_MAX_HEALTH_VALUE) {
-               CDEBUG(D_NET, "ni %s added to recovery queue. Health = %d\n",
-                       libcfs_nid2str(local_ni->ni_nid),
-                       atomic_read(&local_ni->ni_healthv));
-               list_add_tail(&local_ni->ni_recovery,
-                             &the_lnet.ln_mt_localNIRecovq);
-               lnet_ni_addref_locked(local_ni, 0);
-       }
+       lnet_ni_add_to_recoveryq_locked(local_ni, &the_lnet.ln_mt_localNIRecovq,
+                                       ktime_get_seconds());
        lnet_net_unlock(0);
 }
 
@@ -790,10 +800,11 @@ lnet_health_check(struct lnet_msg *msg)
         * if we're sending to the LOLND then the msg_txpeer will not be
         * set. So no need to sanity check it.
         */
-       if (msg->msg_tx_committed && msg->msg_txni->ni_nid != LNET_NID_LO_0)
+       if (msg->msg_tx_committed &&
+           !nid_is_lo0(&msg->msg_txni->ni_nid))
                LASSERT(msg->msg_txpeer);
        else if (msg->msg_tx_committed &&
-                msg->msg_txni->ni_nid == LNET_NID_LO_0)
+                nid_is_lo0(&msg->msg_txni->ni_nid))
                lo = true;
 
        if (hstatus != LNET_MSG_STATUS_OK &&
@@ -814,61 +825,69 @@ lnet_health_check(struct lnet_msg *msg)
                attempt_local_resend = attempt_remote_resend = false;
        }
 
-       /* Don't further decrement the health value if a recovery message
-        * failed.
-        */
-       if (msg->msg_recovery)
-               handle_local_health = handle_remote_health = false;
-       else
-               handle_local_health = handle_remote_health = true;
-
-       /* For local failures, health/recovery/resends are not needed if I only
-        * have a single (non-lolnd) interface. NB: pb_nnis includes the lolnd
-        * interface, so a single-rail node would have pb_nnis == 2.
-        */
-       if (the_lnet.ln_ping_target->pb_nnis <= 2) {
-               handle_local_health = false;
-               attempt_local_resend = false;
-       }
-
-       /* For remote failures, health/recovery/resends are not needed if the
-        * peer only has a single interface. Special case for routers where we
-        * rely on health feature to manage route aliveness. NB: unlike pb_nnis
-        * above, lp_nnis does _not_ include the lolnd, so a single-rail node
-        * would have lp_nnis == 1.
-        */
-       if (lpni && lpni->lpni_peer_net->lpn_peer->lp_nnis <= 1) {
-               attempt_remote_resend = false;
-               if (!lnet_isrouter(lpni))
-                       handle_remote_health = false;
-       }
-
        if (!lo)
                LASSERT(ni && lpni);
        else
                LASSERT(ni);
 
        CDEBUG(D_NET, "health check: %s->%s: %s: %s\n",
-              libcfs_nid2str(ni->ni_nid),
-              (lo) ? "self" : libcfs_nid2str(lpni->lpni_nid),
+              libcfs_nidstr(&ni->ni_nid),
+              (lo) ? "self" : libcfs_nidstr(&lpni->lpni_nid),
               lnet_msgtyp2str(msg->msg_type),
               lnet_health_error2str(hstatus));
 
        /*
         * stats are only incremented for errors so avoid wasting time
-        * incrementing statistics if there is no error.
+        * incrementing statistics if there is no error. Similarly, whether to
+        * update health values or perform resends is only applicable for
+        * messages with a health status != OK.
         */
        if (hstatus != LNET_MSG_STATUS_OK) {
+               /* Don't further decrement the health value if a recovery
+                * message failed.
+                */
+               if (msg->msg_recovery)
+                       handle_local_health = handle_remote_health = false;
+               else
+                       handle_local_health = handle_remote_health = true;
+
+               /* For local failures, health/recovery/resends are not needed if
+                * I only have a single (non-lolnd) interface. NB: pb_nnis
+                * includes the lolnd interface, so a single-rail node would
+                * have pb_nnis == 2.
+                */
+               if (the_lnet.ln_ping_target->pb_nnis <= 2) {
+                       handle_local_health = false;
+                       attempt_local_resend = false;
+               }
+
                lnet_net_lock(0);
                lnet_incr_hstats(ni, lpni, hstatus);
+               /* For remote failures, health/recovery/resends are not needed
+                * if the peer only has a single interface. Special case for
+                * routers where we rely on health feature to manage route
+                * aliveness. NB: unlike pb_nnis above, lp_nnis does _not_
+                * include the lolnd, so a single-rail node would have
+                * lp_nnis == 1.
+                */
+               if (lpni && lpni->lpni_peer_net &&
+                   lpni->lpni_peer_net->lpn_peer &&
+                   lpni->lpni_peer_net->lpn_peer->lp_nnis <= 1) {
+                       attempt_remote_resend = false;
+                       if (!lnet_isrouter(lpni))
+                               handle_remote_health = false;
+               }
                lnet_net_unlock(0);
        }
 
        switch (hstatus) {
        case LNET_MSG_STATUS_OK:
                /*
-                * increment the local ni health weather we successfully
+                * increment the local ni health whether we successfully
                 * received or sent a message on it.
+                *
+                * Ping counts are reset to 0 as appropriate to allow for
+                * faster recovery.
                 */
                lnet_inc_healthv(&ni->ni_healthv, lnet_health_sensitivity);
                /*
@@ -880,12 +899,14 @@ lnet_health_check(struct lnet_msg *msg)
                 * as indication that the router is fully healthy.
                 */
                if (lpni && msg->msg_rx_committed) {
+                       lnet_net_lock(0);
+                       lpni->lpni_ping_count = 0;
+                       ni->ni_ping_count = 0;
                        /*
                         * If we're receiving a message from the router or
                         * I'm a router, then set that lpni's health to
                         * maximum so we can commence communication
                         */
-                       lnet_net_lock(0);
                        if (lnet_isrouter(lpni) || the_lnet.ln_routing) {
                                lnet_set_lpni_healthv_locked(lpni,
                                        LNET_MAX_HEALTH_VALUE);
@@ -1092,7 +1113,7 @@ lnet_send_error_simulation(struct lnet_msg *msg,
 
        CDEBUG(D_NET, "src %s(%s)->dst %s: %s simulate health error: %s\n",
                libcfs_nid2str(msg->msg_hdr.src_nid),
-               libcfs_nid2str(msg->msg_txni->ni_nid),
+               libcfs_nidstr(&msg->msg_txni->ni_nid),
                libcfs_nid2str(msg->msg_hdr.dest_nid),
                lnet_msgtyp2str(msg->msg_type),
                lnet_health_error2str(*hstatus));