diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2014-10-01 01:13:19 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-10-02 04:03:50 +0200 |
commit | 775dd692bd34f9201ed2aa775a0edcba4f973f3e (patch) | |
tree | 65c977fb1c697077c0fa4e2506e1847d3899133b /net/bridge/br_if.c | |
parent | net_sched: avoid calling tcf_unbind_filter() in call_rcu callback (diff) | |
download | linux-775dd692bd34f9201ed2aa775a0edcba4f973f3e.tar.xz linux-775dd692bd34f9201ed2aa775a0edcba4f973f3e.zip |
net: bridge: add a br_set_state helper function
In preparation for being able to propagate port states to e.g: notifiers
or other kernel parts, do not manipulate the port state directly, but
instead use a helper function which will allow us to do a bit more than
just setting the state.
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/bridge/br_if.c')
-rw-r--r-- | net/bridge/br_if.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c index a9f54a9b6690..7b7289ca2992 100644 --- a/net/bridge/br_if.c +++ b/net/bridge/br_if.c @@ -332,7 +332,7 @@ static struct net_bridge_port *new_nbp(struct net_bridge *br, p->port_no = index; p->flags = BR_LEARNING | BR_FLOOD; br_init_port(p); - p->state = BR_STATE_DISABLED; + br_set_state(p, BR_STATE_DISABLED); br_stp_port_timer_init(p); br_multicast_add_port(p); |