mirror of
https://github.com/torvalds/linux.git
synced 2024-11-07 12:41:55 +00:00
802.3ad: turn ports is_enabled into a bool
Turn ports is_enabled into a bool. There is no functional change. Signed-off-by: Holger Eitzenberger <holger@eitzenberger.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d238d458a7
commit
f48127b6f3
@ -1679,7 +1679,7 @@ static void ad_initialize_port(struct port *port, int lacp_fast)
|
||||
memcpy(&port->partner_admin, &tmpl, sizeof(tmpl));
|
||||
memcpy(&port->partner_oper, &tmpl, sizeof(tmpl));
|
||||
|
||||
port->is_enabled = 1;
|
||||
port->is_enabled = true;
|
||||
// ****** private parameters ******
|
||||
port->sm_vars = 0x3;
|
||||
port->sm_rx_state = 0;
|
||||
@ -2308,14 +2308,14 @@ void bond_3ad_handle_link_change(struct slave *slave, char link)
|
||||
// on link down we are zeroing duplex and speed since some of the adaptors(ce1000.lan) report full duplex/speed instead of N/A(duplex) / 0(speed)
|
||||
// on link up we are forcing recheck on the duplex and speed since some of he adaptors(ce1000.lan) report
|
||||
if (link == BOND_LINK_UP) {
|
||||
port->is_enabled = 1;
|
||||
port->is_enabled = true;
|
||||
port->actor_admin_port_key &= ~AD_DUPLEX_KEY_BITS;
|
||||
port->actor_oper_port_key=port->actor_admin_port_key |= __get_duplex(port);
|
||||
port->actor_admin_port_key &= ~AD_SPEED_KEY_BITS;
|
||||
port->actor_oper_port_key=port->actor_admin_port_key |= (__get_link_speed(port) << 1);
|
||||
} else {
|
||||
/* link has failed */
|
||||
port->is_enabled = 0;
|
||||
port->is_enabled = false;
|
||||
port->actor_admin_port_key &= ~AD_DUPLEX_KEY_BITS;
|
||||
port->actor_oper_port_key= (port->actor_admin_port_key &= ~AD_SPEED_KEY_BITS);
|
||||
}
|
||||
|
@ -224,7 +224,8 @@ typedef struct port {
|
||||
struct port_params partner_admin;
|
||||
struct port_params partner_oper;
|
||||
|
||||
u16 is_enabled; // BOOLEAN
|
||||
bool is_enabled;
|
||||
|
||||
// ****** PRIVATE PARAMETERS ******
|
||||
u16 sm_vars; // all state machines variables for this port
|
||||
rx_states_t sm_rx_state; // state machine rx state
|
||||
|
Loading…
Reference in New Issue
Block a user