Skip to content

Commit

Permalink
bonding: use port_params in __update_lacpdu_from_port
Browse files Browse the repository at this point in the history
Signed-off-by: Holger Eitzenberger <holger@eitzenberger.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Holger Eitzenberger authored and David S. Miller committed Dec 18, 2008
1 parent 3c52065 commit 3b5b35d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions drivers/net/bonding/bond_3ad.c
Original file line number Diff line number Diff line change
Expand Up @@ -769,6 +769,7 @@ static struct aggregator *__get_active_agg(struct aggregator *aggregator)
static inline void __update_lacpdu_from_port(struct port *port)
{
struct lacpdu *lacpdu = &port->lacpdu;
const struct port_params *partner = &port->partner_oper;

/* update current actual Actor parameters */
/* lacpdu->subtype initialized
Expand All @@ -789,12 +790,12 @@ static inline void __update_lacpdu_from_port(struct port *port)
* lacpdu->partner_information_length initialized
*/

lacpdu->partner_system_priority = htons(port->partner_oper.system_priority);
lacpdu->partner_system = port->partner_oper.system;
lacpdu->partner_key = htons(port->partner_oper.key);
lacpdu->partner_port_priority = htons(port->partner_oper.port_priority);
lacpdu->partner_port = htons(port->partner_oper.port_number);
lacpdu->partner_state = port->partner_oper.port_state;
lacpdu->partner_system_priority = htons(partner->system_priority);
lacpdu->partner_system = partner->system;
lacpdu->partner_key = htons(partner->key);
lacpdu->partner_port_priority = htons(partner->port_priority);
lacpdu->partner_port = htons(partner->port_number);
lacpdu->partner_state = partner->port_state;

/* lacpdu->reserved_3_2 initialized
* lacpdu->tlv_type_collector_info initialized
Expand Down

0 comments on commit 3b5b35d

Please sign in to comment.