Lines Matching refs:linkup
86 info.link_up = port->linkup;
93 bool new_linkup = port->user.linkup_enabled ? port->user.linkup :
94 port->state.linkup;
96 if (port->linkup != new_linkup) {
97 port->linkup = new_linkup;
1129 static void __team_port_change_port_added(struct team_port *port, bool linkup);
1470 ctx->data.bool_val = port->user.linkup;
1481 port->user.linkup = ctx->data.bool_val;
2719 (port->state.linkup &&
2930 static void __team_port_change_send(struct team_port *port, bool linkup)
2935 port->state.linkup = linkup;
2937 if (linkup) {
2968 if (port->linkup) {
2980 static void __team_port_change_check(struct team_port *port, bool linkup)
2982 if (port->state.linkup != linkup)
2983 __team_port_change_send(port, linkup);
2987 static void __team_port_change_port_added(struct team_port *port, bool linkup)
2989 __team_port_change_send(port, linkup);
3000 static void team_port_change_check(struct team_port *port, bool linkup)
3005 __team_port_change_check(port, linkup);