diff options
Diffstat (limited to 'drivers/net/bonding/bond_3ad.c')
-rw-r--r-- | drivers/net/bonding/bond_3ad.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/bonding/bond_3ad.c b/drivers/net/bonding/bond_3ad.c index 86f4ba779b5..85cba316d1e 100644 --- a/drivers/net/bonding/bond_3ad.c +++ b/drivers/net/bonding/bond_3ad.c | |||
@@ -1359,9 +1359,9 @@ static void ad_port_selection_logic(struct port *port) | |||
1359 | // update the new aggregator's parameters | 1359 | // update the new aggregator's parameters |
1360 | // if port was responsed from the end-user | 1360 | // if port was responsed from the end-user |
1361 | if (port->actor_oper_port_key & AD_DUPLEX_KEY_BITS) {// if port is full duplex | 1361 | if (port->actor_oper_port_key & AD_DUPLEX_KEY_BITS) {// if port is full duplex |
1362 | port->aggregator->is_individual = 0; | 1362 | port->aggregator->is_individual = false; |
1363 | } else { | 1363 | } else { |
1364 | port->aggregator->is_individual = 1; | 1364 | port->aggregator->is_individual = true; |
1365 | } | 1365 | } |
1366 | 1366 | ||
1367 | port->aggregator->actor_admin_aggregator_key = port->actor_admin_port_key; | 1367 | port->aggregator->actor_admin_aggregator_key = port->actor_admin_port_key; |
@@ -1613,7 +1613,7 @@ static void ad_agg_selection_logic(struct aggregator *agg) | |||
1613 | static void ad_clear_agg(struct aggregator *aggregator) | 1613 | static void ad_clear_agg(struct aggregator *aggregator) |
1614 | { | 1614 | { |
1615 | if (aggregator) { | 1615 | if (aggregator) { |
1616 | aggregator->is_individual = 0; | 1616 | aggregator->is_individual = false; |
1617 | aggregator->actor_admin_aggregator_key = 0; | 1617 | aggregator->actor_admin_aggregator_key = 0; |
1618 | aggregator->actor_oper_aggregator_key = 0; | 1618 | aggregator->actor_oper_aggregator_key = 0; |
1619 | aggregator->partner_system = null_mac_addr; | 1619 | aggregator->partner_system = null_mac_addr; |