MCPcopy Create free account
hub / github.com/F-Stack/f-stack / lagg_lacp_attach

Function lagg_lacp_attach

freebsd/net/if_lagg.c:2541–2550  ·  view source on GitHub ↗

* 802.3ad LACP */

Source from the content-addressed store, hash-verified

2539 * 802.3ad LACP
2540 */
2541static void
2542lagg_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
2552static void
2553lagg_lacp_detach(struct lagg_softc *sc)

Callers

nothing calls this directly

Calls 2

lacp_attachFunction · 0.85
lacp_port_createFunction · 0.85

Tested by

no test coverage detected