ethernet: Remove unnecessary alloc/OOM messages, alloc cleanups
alloc failures already get standardized OOM messages and a dump_stack. Convert kzalloc's with multiplies to kcalloc. Convert kmalloc's with multiplies to kmalloc_array. Fix a few whitespace defects. Convert a constant 6 to ETH_ALEN. Use parentheses around sizeof. Convert vmalloc/memset to vzalloc. Remove now unused size variables. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
09da6c5f60
commit
b2adaca92c
38 changed files with 97 additions and 197 deletions
|
@ -5425,11 +5425,9 @@ static struct cnic_dev *cnic_alloc_dev(struct net_device *dev,
|
|||
|
||||
alloc_size = sizeof(struct cnic_dev) + sizeof(struct cnic_local);
|
||||
|
||||
cdev = kzalloc(alloc_size , GFP_KERNEL);
|
||||
if (cdev == NULL) {
|
||||
netdev_err(dev, "allocate dev struct failure\n");
|
||||
cdev = kzalloc(alloc_size, GFP_KERNEL);
|
||||
if (cdev == NULL)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
cdev->netdev = dev;
|
||||
cdev->cnic_priv = (char *)cdev + sizeof(struct cnic_dev);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue