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

Function lacp_dprintf

freebsd/net/ieee8023ad_lacp.c:2194–2206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2192}
2193
2194static void
2195lacp_dprintf(const struct lacp_port *lp, const char *fmt, ...)
2196{
2197 va_list va;
2198
2199 if (lp) {
2200 printf("%s: ", lp->lp_ifp->if_xname);
2201 }
2202
2203 va_start(va, fmt);
2204 vprintf(fmt, va);
2205 va_end(va);
2206}

Callers 3

lacp_pdu_inputFunction · 0.85
lacp_xmit_lacpduFunction · 0.85
lacp_sm_muxFunction · 0.85

Calls 2

printfFunction · 0.50
vprintfFunction · 0.50

Tested by

no test coverage detected