* 802.3ad LACP */
| 2539 | * 802.3ad LACP |
| 2540 | */ |
| 2541 | static void |
| 2542 | lagg_lacp_attach(struct lagg_softc *sc) |
| 2543 | { |
| 2544 | struct lagg_port *lp; |
| 2545 | |
| 2546 | lacp_attach(sc); |
| 2547 | LAGG_XLOCK_ASSERT(sc); |
| 2548 | CK_SLIST_FOREACH(lp, &sc->sc_ports, lp_entries) |
| 2549 | lacp_port_create(lp); |
| 2550 | } |
| 2551 | |
| 2552 | static void |
| 2553 | lagg_lacp_detach(struct lagg_softc *sc) |
nothing calls this directly
no test coverage detected