Skip to content

Commit

Permalink
bridge: add RCU annotations to bridge port lookup
Browse files Browse the repository at this point in the history
br_port_get() renamed to br_port_get_rtnl() to make clear RTNL is held.

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Nov 15, 2010
1 parent b5ed54e commit ec1e561
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion net/bridge/br_if.c
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ int br_del_if(struct net_bridge *br, struct net_device *dev)
{
struct net_bridge_port *p;

p = br_port_get(dev);
p = br_port_get_rtnl(dev);
if (!p || p->br != br)
return -EINVAL;

Expand Down
4 changes: 2 additions & 2 deletions net/bridge/br_netlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ static int br_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)

idx = 0;
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 */
if (!port || idx < cb->args[0])
Expand Down Expand Up @@ -171,7 +171,7 @@ static int br_rtm_setlink(struct sk_buff *skb, struct nlmsghdr *nlh, void *arg)
if (!dev)
return -ENODEV;

p = br_port_get(dev);
p = br_port_get_rtnl(dev);
if (!p)
return -EINVAL;

Expand Down
4 changes: 2 additions & 2 deletions net/bridge/br_notify.c
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ static int br_device_event(struct notifier_block *unused, unsigned long event, v
int err;

/* not a port of a bridge */
if (!br_port_exists(dev))
p = br_port_get_rtnl(dev);
if (!p)
return NOTIFY_DONE;

p = br_port_get(dev);
br = p->br;

switch (event) {
Expand Down
5 changes: 3 additions & 2 deletions net/bridge/br_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

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 {
Expand Down

0 comments on commit ec1e561

Please sign in to comment.