HomeSort by: relevance | last modified time | path
    Searched defs:best_la (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/net/agr/
ieee8023ad_lacp.c 616 struct lacp_aggregator *best_la = NULL; local in function:lacp_select_active_aggregator
638 best_la = la;
643 KASSERT(best_la == NULL || best_la->la_nports > 0);
644 KASSERT(best_la == NULL || !TAILQ_EMPTY(&best_la->la_ports));
647 if (lsc->lsc_active_aggregator != best_la) {
656 lacp_format_lagid_aggregator(best_la, buf, sizeof(buf))));
659 if (lsc->lsc_active_aggregator != best_la) {
660 lsc->lsc_active_aggregator = best_la;
    [all...]
  /src/sys/net/lagg/
if_lagg_lacp.c 2154 struct lacp_aggregator *la, *best_la; local in function:lacp_select_active_aggregator
2161 best_la = la;
2163 best_la = NULL;
2170 if (best_la == NULL ||
2171 LACP_SYS_PRI(la) < LACP_SYS_PRI(best_la))
2172 best_la = la;
2175 if (best_la != lsc->lsc_aggregator) {
2186 if (best_la != NULL) {
2187 LACP_AGGREGATOR_STR(best_la, str, sizeof(str));
2193 lsc->lsc_aggregator = best_la;
    [all...]

Completed in 36 milliseconds