Whamcloud - gitweb
LU-6142 lnet: use list_first_entry() in lnet/lnet subdirectory.
[fs/lustre-release.git] / lnet / lnet / lib-msg.c
index 3015fd8..69a85be 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
  *
@@ -69,13 +68,13 @@ lnet_build_msg_event(struct lnet_msg *msg, enum lnet_event_kind ev_type)
 
        if (ev_type == LNET_EVENT_SEND) {
                /* event for active message */
-               ev->target.nid    = le64_to_cpu(hdr->dest_nid);
-               ev->target.pid    = le32_to_cpu(hdr->dest_pid);
-               ev->initiator.nid = LNET_NID_ANY;
+               ev->target.nid    = hdr->dest_nid;
+               ev->target.pid    = hdr->dest_pid;
+               ev->initiator.nid = LNET_ANY_NID;
                ev->initiator.pid = the_lnet.ln_pid;
-               ev->source.nid    = LNET_NID_ANY;
+               ev->source.nid    = LNET_ANY_NID;
                ev->source.pid    = the_lnet.ln_pid;
-               ev->sender        = LNET_NID_ANY;
+               ev->sender        = LNET_ANY_NID;
        } else {
                /* event for passive message */
                ev->target.pid    = hdr->dest_pid;
@@ -86,7 +85,7 @@ lnet_build_msg_event(struct lnet_msg *msg, enum lnet_event_kind ev_type)
                /* Multi-Rail: track source NID. */
                ev->source.pid    = hdr->src_pid;
                ev->source.nid    = hdr->src_nid;
-               ev->rlength       = hdr->payload_length;
+               ev->rlength       = hdr->payload_length;
                ev->sender        = msg->msg_from;
                ev->mlength       = msg->msg_wanted;
                ev->offset        = msg->msg_offset;
@@ -385,13 +384,14 @@ lnet_complete_msg_locked(struct lnet_msg *msg, int cpt)
 
                ack_wmd = msg->msg_hdr.msg.put.ack_wmd;
 
-               lnet_prep_send(msg, LNET_MSG_ACK, msg->msg_ev.source, 0, 0);
+               lnet_prep_send(msg, LNET_MSG_ACK, &msg->msg_ev.source, 0, 0);
 
                msg->msg_hdr.msg.ack.dst_wmd = ack_wmd;
                msg->msg_hdr.msg.ack.match_bits = msg->msg_ev.match_bits;
                msg->msg_hdr.msg.ack.mlength = cpu_to_le32(msg->msg_ev.mlength);
 
-               rc = lnet_send(msg->msg_ev.target.nid, msg, msg->msg_from);
+               rc = lnet_send(&msg->msg_ev.target.nid, msg,
+                              &msg->msg_from);
 
                lnet_net_lock(cpt);
                /*
@@ -413,7 +413,7 @@ lnet_complete_msg_locked(struct lnet_msg *msg, int cpt)
                LASSERT(!msg->msg_receiving);   /* called back recv already */
                lnet_net_unlock(cpt);
 
-               rc = lnet_send(LNET_NID_ANY, msg, LNET_NID_ANY);
+               rc = lnet_send(NULL, msg, NULL);
 
                lnet_net_lock(cpt);
                /*
@@ -450,6 +450,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 +490,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);
 }
 
@@ -630,8 +641,8 @@ lnet_resend_msg_locked(struct lnet_msg *msg)
        msg->msg_target_is_router = 0;
 
        CDEBUG(D_NET, "%s->%s:%s:%s - queuing msg (%p) for resend\n",
-              libcfs_nid2str(msg->msg_hdr.src_nid),
-              libcfs_nid2str(msg->msg_hdr.dest_nid),
+              libcfs_nidstr(&msg->msg_hdr.src_nid),
+              libcfs_nidstr(&msg->msg_hdr.dest_nid),
               lnet_msgtyp2str(msg->msg_type),
               lnet_health_error2str(msg->msg_health_status), msg);
 
@@ -679,8 +690,8 @@ lnet_attempt_msg_resend(struct lnet_msg *msg)
        /* don't resend recovery messages */
        if (msg->msg_recovery) {
                CDEBUG(D_NET, "msg %s->%s is a recovery ping. retry# %d\n",
-                       libcfs_nid2str(msg->msg_from),
-                       libcfs_nid2str(msg->msg_target.nid),
+                       libcfs_nidstr(&msg->msg_from),
+                       libcfs_nidstr(&msg->msg_target.nid),
                        msg->msg_retry_count);
                return -ENOTRECOVERABLE;
        }
@@ -691,8 +702,8 @@ lnet_attempt_msg_resend(struct lnet_msg *msg)
         */
        if (msg->msg_no_resend) {
                CDEBUG(D_NET, "msg %s->%s requested no resend. retry# %d\n",
-                       libcfs_nid2str(msg->msg_from),
-                       libcfs_nid2str(msg->msg_target.nid),
+                       libcfs_nidstr(&msg->msg_from),
+                       libcfs_nidstr(&msg->msg_target.nid),
                        msg->msg_retry_count);
                return -ENOTRECOVERABLE;
        }
@@ -700,8 +711,8 @@ lnet_attempt_msg_resend(struct lnet_msg *msg)
        /* check if the message has exceeded the number of retries */
        if (msg->msg_retry_count >= lnet_retry_count) {
                CNETERR("msg %s->%s exceeded retry count %d\n",
-                       libcfs_nid2str(msg->msg_from),
-                       libcfs_nid2str(msg->msg_target.nid),
+                       libcfs_nidstr(&msg->msg_from),
+                       libcfs_nidstr(&msg->msg_target.nid),
                        msg->msg_retry_count);
                return -ENOTRECOVERABLE;
        }
@@ -728,9 +739,9 @@ lnet_attempt_msg_resend(struct lnet_msg *msg)
                return 0;
        }
 
-       while (!list_empty(&container->msc_resending)) {
-               msg = list_entry(container->msc_resending.next,
-                                       struct lnet_msg, msg_list);
+       while ((msg = list_first_entry_or_null(&container->msc_resending,
+                                              struct lnet_msg,
+                                              msg_list)) != NULL) {
                list_del(&msg->msg_list);
 
                /*
@@ -790,10 +801,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,53 +826,64 @@ 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;
+               }
+               /* Do not put my interfaces into peer NI recovery. They should
+                * be handled with local NI recovery.
+                */
+               if (handle_remote_health && lpni &&
+                   lnet_nid_to_ni_locked(&lpni->lpni_nid, 0))
+                       handle_remote_health = false;
                lnet_net_unlock(0);
        }
 
@@ -883,13 +906,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);
@@ -1090,14 +1114,13 @@ lnet_send_error_simulation(struct lnet_msg *msg,
            return false;
 
        /* match only health rules */
-       if (!lnet_drop_rule_match(&msg->msg_hdr, LNET_NID_ANY,
-                                 hstatus))
+       if (!lnet_drop_rule_match(&msg->msg_hdr, NULL, hstatus))
                return false;
 
        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_nid2str(msg->msg_hdr.dest_nid),
+               libcfs_nidstr(&msg->msg_hdr.src_nid),
+               libcfs_nidstr(&msg->msg_txni->ni_nid),
+               libcfs_nidstr(&msg->msg_hdr.dest_nid),
                lnet_msgtyp2str(msg->msg_type),
                lnet_health_error2str(*hstatus));
 
@@ -1176,10 +1199,9 @@ again:
        }
 
        rc = 0;
-       while (!list_empty(&container->msc_finalizing)) {
-               msg = list_entry(container->msc_finalizing.next,
-                                struct lnet_msg, msg_list);
-
+       while ((msg = list_first_entry_or_null(&container->msc_finalizing,
+                                              struct lnet_msg,
+                                              msg_list)) != NULL) {
                list_del_init(&msg->msg_list);
 
                /* NB drops and regains the lnet lock if it actually does
@@ -1206,16 +1228,15 @@ EXPORT_SYMBOL(lnet_finalize);
 void
 lnet_msg_container_cleanup(struct lnet_msg_container *container)
 {
-       int     count = 0;
+       struct lnet_msg *msg;
+       int count = 0;
 
        if (container->msc_init == 0)
                return;
 
-       while (!list_empty(&container->msc_active)) {
-               struct lnet_msg *msg;
-
-               msg  = list_entry(container->msc_active.next,
-                                 struct lnet_msg, msg_activelist);
+       while ((msg = list_first_entry_or_null(&container->msc_active,
+                                              struct lnet_msg,
+                                              msg_activelist)) != NULL) {
                LASSERT(msg->msg_onactivelist);
                msg->msg_onactivelist = 0;
                list_del_init(&msg->msg_activelist);