Skip to content

Commit

Permalink
rocker: pass "learning" value as a parameter to rocker_port_set_learning
Browse files Browse the repository at this point in the history
Be consistent with the rest of the setting functions, and pass
"learning" as a bool function parameter.

Signed-off-by: Jiri Pirko <jiri@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jiri Pirko authored and David S. Miller committed Feb 18, 2016
1 parent e420114 commit c1fe922
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions drivers/net/ethernet/rocker/rocker_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1583,6 +1583,7 @@ rocker_cmd_set_port_learning_prep(const struct rocker_port *rocker_port,
struct rocker_desc_info *desc_info,
void *priv)
{
bool learning = *(bool *)priv;
struct rocker_tlv *cmd_info;

if (rocker_tlv_put_u16(desc_info, ROCKER_TLV_CMD_TYPE,
Expand All @@ -1595,7 +1596,7 @@ rocker_cmd_set_port_learning_prep(const struct rocker_port *rocker_port,
rocker_port->pport))
return -EMSGSIZE;
if (rocker_tlv_put_u8(desc_info, ROCKER_TLV_CMD_PORT_SETTINGS_LEARNING,
!!(rocker_port->brport_flags & BR_LEARNING)))
learning))
return -EMSGSIZE;
rocker_tlv_nest_end(desc_info, cmd_info);
return 0;
Expand Down Expand Up @@ -1652,11 +1653,12 @@ static int rocker_cmd_set_port_settings_mtu(struct rocker_port *rocker_port,
}

static int rocker_port_set_learning(struct rocker_port *rocker_port,
struct switchdev_trans *trans)
struct switchdev_trans *trans,
bool learning)
{
return rocker_cmd_exec(rocker_port, trans, 0,
rocker_cmd_set_port_learning_prep,
NULL, NULL, NULL);
&learning, NULL, NULL);
}

/**********************
Expand Down Expand Up @@ -4447,7 +4449,8 @@ static int rocker_port_brport_flags_set(struct rocker_port *rocker_port,
orig_flags = rocker_port->brport_flags;
rocker_port->brport_flags = brport_flags;
if ((orig_flags ^ rocker_port->brport_flags) & BR_LEARNING)
err = rocker_port_set_learning(rocker_port, trans);
err = rocker_port_set_learning(rocker_port, trans,
!!(rocker_port->brport_flags & BR_LEARNING));

if (switchdev_trans_ph_prepare(trans))
rocker_port->brport_flags = orig_flags;
Expand Down Expand Up @@ -5182,7 +5185,8 @@ static int rocker_probe_port(struct rocker *rocker, unsigned int port_number)

switchdev_port_fwd_mark_set(rocker_port->dev, NULL, false);

rocker_port_set_learning(rocker_port, NULL);
rocker_port_set_learning(rocker_port, NULL,
!!(rocker_port->brport_flags & BR_LEARNING));

err = rocker_port_ig_tbl(rocker_port, NULL, 0);
if (err) {
Expand Down

0 comments on commit c1fe922

Please sign in to comment.