drivers:net: Remove unnecessary OOM messages after netdev_alloc_skb
Emitting netdev_alloc_skb and netdev_alloc_skb_ip_align OOM messages is unnecessary as there is already a dump_stack after allocation failures. Other trivial changes around these removals: Convert a few comparisons of pointer to 0 to !pointer. Change flow to remove unnecessary label. Remove now unused variable. Hoist assignment from if. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
e8f83e5ec7
commit
720a43efd3
@@ -414,7 +414,7 @@ static void qe_rx(struct sunqe *qep)
|
||||
struct qe_rxd *this;
|
||||
struct sunqe_buffers *qbufs = qep->buffers;
|
||||
__u32 qbufs_dvma = qep->buffers_dvma;
|
||||
int elem = qep->rx_new, drops = 0;
|
||||
int elem = qep->rx_new;
|
||||
u32 flags;
|
||||
|
||||
this = &rxbase[elem];
|
||||
@@ -436,7 +436,6 @@ static void qe_rx(struct sunqe *qep)
|
||||
} else {
|
||||
skb = netdev_alloc_skb(dev, len + 2);
|
||||
if (skb == NULL) {
|
||||
drops++;
|
||||
dev->stats.rx_dropped++;
|
||||
} else {
|
||||
skb_reserve(skb, 2);
|
||||
@@ -456,8 +455,6 @@ static void qe_rx(struct sunqe *qep)
|
||||
this = &rxbase[elem];
|
||||
}
|
||||
qep->rx_new = elem;
|
||||
if (drops)
|
||||
printk(KERN_NOTICE "%s: Memory squeeze, deferring packet.\n", qep->dev->name);
|
||||
}
|
||||
|
||||
static void qe_tx_reclaim(struct sunqe *qep);
|
||||
|
Reference in New Issue
Block a user