bridge: Switch to bitmap_zalloc()
Switch to bitmap_zalloc() to show clearly what we are allocating. Besides that it returns pointer of bitmap type instead of opaque void *. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
0340376ecc
commit
459479da97
@@ -877,8 +877,7 @@ int __br_vlan_set_default_pvid(struct net_bridge *br, u16 pvid)
|
||||
return 0;
|
||||
}
|
||||
|
||||
changed = kcalloc(BITS_TO_LONGS(BR_MAX_PORTS), sizeof(unsigned long),
|
||||
GFP_KERNEL);
|
||||
changed = bitmap_zalloc(BR_MAX_PORTS, GFP_KERNEL);
|
||||
if (!changed)
|
||||
return -ENOMEM;
|
||||
|
||||
@@ -925,7 +924,7 @@ int __br_vlan_set_default_pvid(struct net_bridge *br, u16 pvid)
|
||||
br->default_pvid = pvid;
|
||||
|
||||
out:
|
||||
kfree(changed);
|
||||
bitmap_free(changed);
|
||||
return err;
|
||||
|
||||
err_port:
|
||||
|
||||
Reference in New Issue
Block a user