Skip to content

Commit

Permalink
drivers/net: Remove unnecessary k.alloc/v.alloc OOM messages
Browse files Browse the repository at this point in the history
alloc failures use dump_stack so emitting an additional
out-of-memory message is an unnecessary duplication.

Remove the allocation failure messages.

Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Joe Perches authored and David S. Miller committed Jan 31, 2012
1 parent 5f3d9cb commit e404dec
Show file tree
Hide file tree
Showing 60 changed files with 77 additions and 233 deletions.
12 changes: 4 additions & 8 deletions drivers/net/bonding/bond_alb.c
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,9 @@ static int tlb_initialize(struct bonding *bond)
int i;

new_hashtbl = kzalloc(size, GFP_KERNEL);
if (!new_hashtbl) {
pr_err("%s: Error: Failed to allocate TLB hash table\n",
bond->dev->name);
if (!new_hashtbl)
return -1;
}

_lock_tx_hashtbl_bh(bond);

bond_info->tx_hashtbl = new_hashtbl;
Expand Down Expand Up @@ -784,11 +782,9 @@ static int rlb_initialize(struct bonding *bond)
int i;

new_hashtbl = kmalloc(size, GFP_KERNEL);
if (!new_hashtbl) {
pr_err("%s: Error: Failed to allocate RLB hash table\n",
bond->dev->name);
if (!new_hashtbl)
return -1;
}

_lock_rx_hashtbl_bh(bond);

bond_info->rx_hashtbl = new_hashtbl;
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/can/slcan.c
Original file line number Diff line number Diff line change
Expand Up @@ -639,10 +639,8 @@ static int __init slcan_init(void)
printk(KERN_INFO "slcan: %d dynamic interface channels.\n", maxdev);

slcan_devs = kzalloc(sizeof(struct net_device *)*maxdev, GFP_KERNEL);
if (!slcan_devs) {
printk(KERN_ERR "slcan: can't allocate slcan device array!\n");
if (!slcan_devs)
return -ENOMEM;
}

/* Fill in our line protocol discipline, and register it */
status = tty_register_ldisc(N_SLCAN, &slc_ldisc);
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/amd/ni65.c
Original file line number Diff line number Diff line change
Expand Up @@ -621,10 +621,8 @@ static void *ni65_alloc_mem(struct net_device *dev,char *what,int size,int type)
}
else {
ret = ptr = kmalloc(T_BUF_SIZE,GFP_KERNEL | GFP_DMA);
if(!ret) {
printk(KERN_WARNING "%s: unable to allocate %s memory.\n",dev->name,what);
if(!ret)
return NULL;
}
}
if( (u32) virt_to_phys(ptr+size) > 0x1000000) {
printk(KERN_WARNING "%s: unable to allocate %s memory in lower 16MB!\n",dev->name,what);
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/apple/bmac.c
Original file line number Diff line number Diff line change
Expand Up @@ -1660,10 +1660,8 @@ static int __init bmac_init(void)
{
if (bmac_emergency_rxbuf == NULL) {
bmac_emergency_rxbuf = kmalloc(RX_BUFLEN, GFP_KERNEL);
if (bmac_emergency_rxbuf == NULL) {
printk(KERN_ERR "BMAC: can't allocate emergency RX buffer\n");
if (bmac_emergency_rxbuf == NULL)
return -ENOMEM;
}
}

return macio_register_driver(&bmac_driver);
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/apple/mace.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,8 @@ static int __devinit mace_probe(struct macio_dev *mdev, const struct of_device_i
*/
if (dummy_buf == NULL) {
dummy_buf = kmalloc(RX_BUFLEN+2, GFP_KERNEL);
if (dummy_buf == NULL) {
printk(KERN_ERR "MACE: couldn't allocate dummy buffer\n");
if (dummy_buf == NULL)
return -ENOMEM;
}
}

if (macio_request_resources(mdev, "mace")) {
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/broadcom/bnx2.c
Original file line number Diff line number Diff line change
Expand Up @@ -2625,10 +2625,8 @@ bnx2_alloc_bad_rbuf(struct bnx2 *bp)
u32 val;

good_mbuf = kmalloc(512 * sizeof(u16), GFP_KERNEL);
if (good_mbuf == NULL) {
pr_err("Failed to allocate memory in %s\n", __func__);
if (good_mbuf == NULL)
return -ENOMEM;
}

REG_WR(bp, BNX2_MISC_ENABLE_SET_BITS,
BNX2_MISC_ENABLE_SET_BITS_RX_MBUF_ENABLE);
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/broadcom/bnx2x/bnx2x_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -10894,10 +10894,8 @@ static inline void be16_to_cpu_n(const u8 *_source, u8 *_target, u32 n)
do { \
u32 len = be32_to_cpu(fw_hdr->arr.len); \
bp->arr = kmalloc(len, GFP_KERNEL); \
if (!bp->arr) { \
pr_err("Failed to allocate %d bytes for "#arr"\n", len); \
if (!bp->arr) \
goto lbl; \
} \
func(bp->firmware->data + be32_to_cpu(fw_hdr->arr.offset), \
(u8 *)bp->arr, len); \
} while (0)
Expand Down
21 changes: 3 additions & 18 deletions drivers/net/ethernet/brocade/bna/bnad_debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ bnad_debugfs_open_fwtrc(struct inode *inode, struct file *file)
if (!fw_debug->debug_buffer) {
kfree(fw_debug);
fw_debug = NULL;
pr_warn("bna %s: Failed to allocate fwtrc buffer\n",
pci_name(bnad->pcidev));
return -ENOMEM;
}

Expand Down Expand Up @@ -105,8 +103,6 @@ bnad_debugfs_open_fwsave(struct inode *inode, struct file *file)
if (!fw_debug->debug_buffer) {
kfree(fw_debug);
fw_debug = NULL;
pr_warn("bna %s: Failed to allocate fwsave buffer\n",
pci_name(bnad->pcidev));
return -ENOMEM;
}

Expand Down Expand Up @@ -208,8 +204,6 @@ bnad_debugfs_open_drvinfo(struct inode *inode, struct file *file)
if (!drv_info->debug_buffer) {
kfree(drv_info);
drv_info = NULL;
pr_warn("bna %s: Failed to allocate drv info buffer\n",
pci_name(bnad->pcidev));
return -ENOMEM;
}

Expand Down Expand Up @@ -348,11 +342,8 @@ bnad_debugfs_write_regrd(struct file *file, const char __user *buf,

/* Allocate memory to store the user space buf */
kern_buf = kzalloc(nbytes, GFP_KERNEL);
if (!kern_buf) {
pr_warn("bna %s: Failed to allocate user buffer\n",
pci_name(bnad->pcidev));
if (!kern_buf)
return -ENOMEM;
}

if (copy_from_user(kern_buf, (void __user *)buf, nbytes)) {
kfree(kern_buf);
Expand All @@ -373,11 +364,8 @@ bnad_debugfs_write_regrd(struct file *file, const char __user *buf,
bnad->reglen = 0;

bnad->regdata = kzalloc(len << 2, GFP_KERNEL);
if (!bnad->regdata) {
pr_warn("bna %s: Failed to allocate regrd buffer\n",
pci_name(bnad->pcidev));
if (!bnad->regdata)
return -ENOMEM;
}

bnad->reglen = len << 2;
rb = bfa_ioc_bar0(ioc);
Expand Down Expand Up @@ -421,11 +409,8 @@ bnad_debugfs_write_regwr(struct file *file, const char __user *buf,

/* Allocate memory to store the user space buf */
kern_buf = kzalloc(nbytes, GFP_KERNEL);
if (!kern_buf) {
pr_warn("bna %s: Failed to allocate user buffer\n",
pci_name(bnad->pcidev));
if (!kern_buf)
return -ENOMEM;
}

if (copy_from_user(kern_buf, (void __user *)buf, nbytes)) {
kfree(kern_buf);
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/cisco/enic/enic_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2388,7 +2388,6 @@ static int __devinit enic_probe(struct pci_dev *pdev,
/* Allocate structure for port profiles */
enic->pp = kcalloc(num_pps, sizeof(*enic->pp), GFP_KERNEL);
if (!enic->pp) {
pr_err("port profile alloc failed, aborting\n");
err = -ENOMEM;
goto err_out_disable_sriov_pp;
}
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/cisco/enic/vnic_rq.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ static int vnic_rq_alloc_bufs(struct vnic_rq *rq)

for (i = 0; i < blks; i++) {
rq->bufs[i] = kzalloc(VNIC_RQ_BUF_BLK_SZ(count), GFP_ATOMIC);
if (!rq->bufs[i]) {
pr_err("Failed to alloc rq_bufs\n");
if (!rq->bufs[i])
return -ENOMEM;
}
}

for (i = 0; i < blks; i++) {
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/cisco/enic/vnic_wq.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ static int vnic_wq_alloc_bufs(struct vnic_wq *wq)

for (i = 0; i < blks; i++) {
wq->bufs[i] = kzalloc(VNIC_WQ_BUF_BLK_SZ(count), GFP_ATOMIC);
if (!wq->bufs[i]) {
pr_err("Failed to alloc wq_bufs\n");
if (!wq->bufs[i])
return -ENOMEM;
}
}

for (i = 0; i < blks; i++) {
Expand Down
2 changes: 0 additions & 2 deletions drivers/net/ethernet/i825xx/lp486e.c
Original file line number Diff line number Diff line change
Expand Up @@ -454,8 +454,6 @@ init_rx_bufs(struct net_device *dev, int num) {
}

rfd->rbd = rbd;
} else {
printk("Could not kmalloc rbd\n");
}
}
lp->rbd_tail->next = rfd->rbd;
Expand Down
5 changes: 1 addition & 4 deletions drivers/net/ethernet/ibm/emac/rgmii.c
Original file line number Diff line number Diff line change
Expand Up @@ -237,11 +237,8 @@ static int __devinit rgmii_probe(struct platform_device *ofdev)

rc = -ENOMEM;
dev = kzalloc(sizeof(struct rgmii_instance), GFP_KERNEL);
if (dev == NULL) {
printk(KERN_ERR "%s: could not allocate RGMII device!\n",
np->full_name);
if (dev == NULL)
goto err_gone;
}

mutex_init(&dev->lock);
dev->ofdev = ofdev;
Expand Down
5 changes: 1 addition & 4 deletions drivers/net/ethernet/ibm/emac/tah.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,8 @@ static int __devinit tah_probe(struct platform_device *ofdev)

rc = -ENOMEM;
dev = kzalloc(sizeof(struct tah_instance), GFP_KERNEL);
if (dev == NULL) {
printk(KERN_ERR "%s: could not allocate TAH device!\n",
np->full_name);
if (dev == NULL)
goto err_gone;
}

mutex_init(&dev->lock);
dev->ofdev = ofdev;
Expand Down
5 changes: 1 addition & 4 deletions drivers/net/ethernet/ibm/emac/zmii.c
Original file line number Diff line number Diff line change
Expand Up @@ -240,11 +240,8 @@ static int __devinit zmii_probe(struct platform_device *ofdev)

rc = -ENOMEM;
dev = kzalloc(sizeof(struct zmii_instance), GFP_KERNEL);
if (dev == NULL) {
printk(KERN_ERR "%s: could not allocate ZMII device!\n",
np->full_name);
if (dev == NULL)
goto err_gone;
}

mutex_init(&dev->lock);
dev->ofdev = ofdev;
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/intel/e1000/e1000_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -730,10 +730,8 @@ static void e1000_dump_eeprom(struct e1000_adapter *adapter)
eeprom.offset = 0;

data = kmalloc(eeprom.len, GFP_KERNEL);
if (!data) {
pr_err("Unable to allocate memory to dump EEPROM data\n");
if (!data)
return;
}

ops->get_eeprom(netdev, &eeprom, data);

Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/intel/ixgb/ixgb_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1136,10 +1136,8 @@ ixgb_set_multi(struct net_device *netdev)
u8 *mta = kmalloc(IXGB_MAX_NUM_MULTICAST_ADDRESSES *
ETH_ALEN, GFP_ATOMIC);
u8 *addr;
if (!mta) {
pr_err("allocation of multicast memory failed\n");
if (!mta)
goto alloc_failed;
}

IXGB_WRITE_REG(hw, RCTL, rctl);

Expand Down
6 changes: 1 addition & 5 deletions drivers/net/ethernet/intel/ixgbevf/ixgbevf_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2517,12 +2517,8 @@ int ixgbevf_setup_rx_resources(struct ixgbevf_adapter *adapter,

size = sizeof(struct ixgbevf_rx_buffer) * rx_ring->count;
rx_ring->rx_buffer_info = vzalloc(size);
if (!rx_ring->rx_buffer_info) {
hw_dbg(&adapter->hw,
"Unable to vmalloc buffer memory for "
"the receive descriptor ring\n");
if (!rx_ring->rx_buffer_info)
goto alloc_failed;
}

/* Round up to nearest 4K */
rx_ring->size = rx_ring->count * sizeof(union ixgbe_adv_rx_desc);
Expand Down
1 change: 0 additions & 1 deletion drivers/net/ethernet/korina.c
Original file line number Diff line number Diff line change
Expand Up @@ -1150,7 +1150,6 @@ static int korina_probe(struct platform_device *pdev)

lp->td_ring = kmalloc(TD_RING_SIZE + RD_RING_SIZE, GFP_KERNEL);
if (!lp->td_ring) {
printk(KERN_ERR DRV_NAME ": cannot allocate descriptors\n");
rc = -ENXIO;
goto probe_err_td_ring;
}
Expand Down
10 changes: 4 additions & 6 deletions drivers/net/ethernet/marvell/pxa168_eth.c
Original file line number Diff line number Diff line change
Expand Up @@ -1017,10 +1017,9 @@ static int rxq_init(struct net_device *dev)
/* Allocate RX skb rings */
pep->rx_skb = kmalloc(sizeof(*pep->rx_skb) * pep->rx_ring_size,
GFP_KERNEL);
if (!pep->rx_skb) {
printk(KERN_ERR "%s: Cannot alloc RX skb ring\n", dev->name);
if (!pep->rx_skb)
return -ENOMEM;
}

/* Allocate RX ring */
pep->rx_desc_count = 0;
size = pep->rx_ring_size * sizeof(struct rx_desc);
Expand Down Expand Up @@ -1081,10 +1080,9 @@ static int txq_init(struct net_device *dev)

pep->tx_skb = kmalloc(sizeof(*pep->tx_skb) * pep->tx_ring_size,
GFP_KERNEL);
if (!pep->tx_skb) {
printk(KERN_ERR "%s: Cannot alloc TX skb ring\n", dev->name);
if (!pep->tx_skb)
return -ENOMEM;
}

/* Allocate TX ring */
pep->tx_desc_count = 0;
size = pep->tx_ring_size * sizeof(struct tx_desc);
Expand Down
5 changes: 2 additions & 3 deletions drivers/net/ethernet/mellanox/mlx4/en_rx.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,10 +281,9 @@ int mlx4_en_create_rx_ring(struct mlx4_en_priv *priv,
tmp = size * roundup_pow_of_two(MLX4_EN_MAX_RX_FRAGS *
sizeof(struct skb_frag_struct));
ring->rx_info = vmalloc(tmp);
if (!ring->rx_info) {
en_err(priv, "Failed allocating rx_info ring\n");
if (!ring->rx_info)
return -ENOMEM;
}

en_dbg(DRV, priv, "Allocated rx_info ring at addr:%p size:%d\n",
ring->rx_info, tmp);

Expand Down
6 changes: 2 additions & 4 deletions drivers/net/ethernet/mellanox/mlx4/en_tx.c
Original file line number Diff line number Diff line change
Expand Up @@ -71,16 +71,14 @@ int mlx4_en_create_tx_ring(struct mlx4_en_priv *priv,

tmp = size * sizeof(struct mlx4_en_tx_info);
ring->tx_info = vmalloc(tmp);
if (!ring->tx_info) {
en_err(priv, "Failed allocating tx_info ring\n");
if (!ring->tx_info)
return -ENOMEM;
}

en_dbg(DRV, priv, "Allocated tx_info ring at addr:%p size:%d\n",
ring->tx_info, tmp);

ring->bounce_buf = kmalloc(MAX_DESC_SIZE, GFP_KERNEL);
if (!ring->bounce_buf) {
en_err(priv, "Failed allocating bounce buffer\n");
err = -ENOMEM;
goto err_tx;
}
Expand Down
4 changes: 1 addition & 3 deletions drivers/net/ethernet/micrel/ks8851_mll.c
Original file line number Diff line number Diff line change
Expand Up @@ -1501,10 +1501,8 @@ static int ks_hw_init(struct ks_net *ks)
ks->mcast_lst_size = 0;

ks->frame_head_info = kmalloc(MHEADER_SIZE, GFP_KERNEL);
if (!ks->frame_head_info) {
pr_err("Error: Fail to allocate frame memory\n");
if (!ks->frame_head_info)
return false;
}

ks_set_mac(ks, KS_DEFAULT_MAC_ADDRESS);
return true;
Expand Down
9 changes: 3 additions & 6 deletions drivers/net/ethernet/oki-semi/pch_gbe/pch_gbe_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1587,10 +1587,8 @@ int pch_gbe_setup_tx_resources(struct pch_gbe_adapter *adapter,

size = (int)sizeof(struct pch_gbe_buffer) * tx_ring->count;
tx_ring->buffer_info = vzalloc(size);
if (!tx_ring->buffer_info) {
pr_err("Unable to allocate memory for the buffer information\n");
if (!tx_ring->buffer_info)
return -ENOMEM;
}

tx_ring->size = tx_ring->count * (int)sizeof(struct pch_gbe_tx_desc);

Expand Down Expand Up @@ -1636,10 +1634,9 @@ int pch_gbe_setup_rx_resources(struct pch_gbe_adapter *adapter,

size = (int)sizeof(struct pch_gbe_buffer) * rx_ring->count;
rx_ring->buffer_info = vzalloc(size);
if (!rx_ring->buffer_info) {
pr_err("Unable to allocate memory for the receive descriptor ring\n");
if (!rx_ring->buffer_info)
return -ENOMEM;
}

rx_ring->size = rx_ring->count * (int)sizeof(struct pch_gbe_rx_desc);
rx_ring->desc = dma_alloc_coherent(&pdev->dev, rx_ring->size,
&rx_ring->dma, GFP_KERNEL);
Expand Down
Loading

0 comments on commit e404dec

Please sign in to comment.