Commit ec1e5610 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller

bridge: add RCU annotations to bridge port lookup

br_port_get() renamed to br_port_get_rtnl() to make clear RTNL is held.
Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent b5ed54e9
...@@ -475,7 +475,7 @@ int br_del_if(struct net_bridge *br, struct net_device *dev) ...@@ -475,7 +475,7 @@ int br_del_if(struct net_bridge *br, struct net_device *dev)
{ {
struct net_bridge_port *p; struct net_bridge_port *p;
p = br_port_get(dev); p = br_port_get_rtnl(dev);
if (!p || p->br != br) if (!p || p->br != br)
return -EINVAL; return -EINVAL;
......
...@@ -119,7 +119,7 @@ static int br_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) ...@@ -119,7 +119,7 @@ static int br_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
idx = 0; idx = 0;
for_each_netdev(net, dev) { for_each_netdev(net, dev) {
struct net_bridge_port *port = br_port_get(dev); struct net_bridge_port *port = br_port_get_rtnl(dev);
/* not a bridge port */ /* not a bridge port */
if (!port || idx < cb->args[0]) if (!port || idx < cb->args[0])
...@@ -171,7 +171,7 @@ static int br_rtm_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg) ...@@ -171,7 +171,7 @@ static int br_rtm_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
if (!dev) if (!dev)
return -ENODEV; return -ENODEV;
p = br_port_get(dev); p = br_port_get_rtnl(dev);
if (!p) if (!p)
return -EINVAL; return -EINVAL;
......
...@@ -37,10 +37,10 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v ...@@ -37,10 +37,10 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
int err; int err;
/* not a port of a bridge */ /* not a port of a bridge */
if (!br_port_exists(dev)) p = br_port_get_rtnl(dev);
if (!p)
return NOTIFY_DONE; return NOTIFY_DONE;
p = br_port_get(dev);
br = p->br; br = p->br;
switch (event) { switch (event) {
......
...@@ -159,9 +159,10 @@ static inline struct net_bridge_port *br_port_get_rcu(const struct net_device *d ...@@ -159,9 +159,10 @@ static inline struct net_bridge_port *br_port_get_rcu(const struct net_device *d
return br_port_exists(dev) ? port : NULL; return br_port_exists(dev) ? port : NULL;
} }
static inline struct net_bridge_port *br_port_get(struct net_device *dev) static inline struct net_bridge_port *br_port_get_rtnl(struct net_device *dev)
{ {
return br_port_exists(dev) ? dev->rx_handler_data : NULL; return br_port_exists(dev) ?
rtnl_dereference(dev->rx_handler_data) : NULL;
} }
struct br_cpu_netstats { struct br_cpu_netstats {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment