mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
Don't use GFP_DMA for zone allocation.
IP32 doesn't even have a ZONE_DMA so no point in using GFP_DMA in any IP32-specific device driver. Signed-off-by: Ralf Baechle <ralf@linux-mips.org> Signed-off-by: Jeff Garzik <jeff@garzik.org>
This commit is contained in:
parent
ba685fb2ab
commit
09e06f652d
1 changed files with 1 additions and 1 deletions
|
@ -405,7 +405,7 @@ static void meth_rx(struct net_device* dev, unsigned long int_status)
|
|||
priv->stats.rx_length_errors++;
|
||||
skb = priv->rx_skbs[priv->rx_write];
|
||||
} else {
|
||||
skb = alloc_skb(METH_RX_BUFF_SIZE, GFP_ATOMIC | GFP_DMA);
|
||||
skb = alloc_skb(METH_RX_BUFF_SIZE, GFP_ATOMIC);
|
||||
if (!skb) {
|
||||
/* Ouch! No memory! Drop packet on the floor */
|
||||
DPRINTK("No mem: dropping packet\n");
|
||||
|
|
Loading…
Reference in a new issue