diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-03-20 22:57:03 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-20 22:57:03 -0800 |
commit | cee4854122d4347b2f6f10fe7f007a48fada29a0 (patch) | |
tree | ffff0f0438b9b4729c0fc0c9880e19a221beff28 /net | |
parent | 3b781fa10bcdb148924d1847f68899583e0d66ef (diff) | |
download | linux-3.10-cee4854122d4347b2f6f10fe7f007a48fada29a0.tar.gz linux-3.10-cee4854122d4347b2f6f10fe7f007a48fada29a0.tar.bz2 linux-3.10-cee4854122d4347b2f6f10fe7f007a48fada29a0.zip |
[BRIDGE]: use kzalloc
Use kzalloc versus kmalloc+memset. Also don't need to do
memset() of bridge address since it is in netdev private data
that is already zero'd in alloc_netdev.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/bridge/br_if.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/bridge/br_if.c b/net/bridge/br_if.c index 738cb3afa99..59eef42d4a4 100644 --- a/net/bridge/br_if.c +++ b/net/bridge/br_if.c @@ -210,7 +210,8 @@ static struct net_device *new_bridge_dev(const char *name) br->bridge_id.prio[0] = 0x80; br->bridge_id.prio[1] = 0x00; - memset(br->bridge_id.addr, 0, ETH_ALEN); + + memcpy(br->group_addr, br_group_address, ETH_ALEN); br->feature_mask = dev->features; br->stp_enabled = 0; @@ -263,11 +264,10 @@ static struct net_bridge_port *new_nbp(struct net_bridge *br, if (index < 0) return ERR_PTR(index); - p = kmalloc(sizeof(*p), GFP_KERNEL); + p = kzalloc(sizeof(*p), GFP_KERNEL); if (p == NULL) return ERR_PTR(-ENOMEM); - memset(p, 0, sizeof(*p)); p->br = br; dev_hold(dev); p->dev = dev; |