Skip to content

Commit

Permalink
bridge: Check return of dev_set_promiscuity
Browse files Browse the repository at this point in the history
dev_set_promiscuity/allmulti might overflow.
Commit: "netdevice: Fix promiscuity and allmulti overflow" in net-next makes
dev_set_promiscuity/allmulti return error number if overflow happened.

Here, we check the positive increment for promiscuity to get error return.

Signed-off-by: Wang Chen <wangchen@cn.fujitsu.com>
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Wang Chen authored and David S. Miller committed Jul 15, 2008
1 parent 7e1a1ac commit bc3f907
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions net/bridge/br_if.c
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,10 @@ int br_add_if(struct net_bridge *br, struct net_device *dev)
if (IS_ERR(p))
return PTR_ERR(p);

err = dev_set_promiscuity(dev, 1);
if (err)
goto put_back;

err = kobject_init_and_add(&p->kobj, &brport_ktype, &(dev->dev.kobj),
SYSFS_BRIDGE_PORT_ATTR);
if (err)
Expand All @@ -388,7 +392,6 @@ int br_add_if(struct net_bridge *br, struct net_device *dev)

rcu_assign_pointer(dev->br_port, p);
dev_disable_lro(dev);
dev_set_promiscuity(dev, 1);

list_add_rcu(&p->list, &br->port_list);

Expand All @@ -412,12 +415,12 @@ int br_add_if(struct net_bridge *br, struct net_device *dev)
br_fdb_delete_by_port(br, p, 1);
err1:
kobject_del(&p->kobj);
goto put_back;
err0:
kobject_put(&p->kobj);

dev_set_promiscuity(dev, -1);
put_back:
dev_put(dev);
kfree(p);
return err;
}

Expand Down

0 comments on commit bc3f907

Please sign in to comment.