Lines Matching refs:linkup
87 info.link_up = port->linkup;
94 bool new_linkup = port->user.linkup_enabled ? port->user.linkup :
95 port->state.linkup;
97 if (port->linkup != new_linkup) {
98 port->linkup = new_linkup;
1132 static void __team_port_change_port_added(struct team_port *port, bool linkup);
1467 ctx->data.bool_val = port->user.linkup;
1477 port->user.linkup = ctx->data.bool_val;
2711 (port->state.linkup &&
2923 static void __team_port_change_send(struct team_port *port, bool linkup)
2928 port->state.linkup = linkup;
2930 if (linkup) {
2961 if (port->linkup) {
2973 static void __team_port_change_check(struct team_port *port, bool linkup)
2975 if (port->state.linkup != linkup)
2976 __team_port_change_send(port, linkup);
2980 static void __team_port_change_port_added(struct team_port *port, bool linkup)
2982 __team_port_change_send(port, linkup);
2993 static void team_port_change_check(struct team_port *port, bool linkup)
2998 __team_port_change_check(port, linkup);