diff options
author | Alexander Duyck <alexander.h.duyck@redhat.com> | 2014-12-09 19:41:17 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-12-10 13:31:58 -0500 |
commit | 45abfb1069e4c365f6c1e2fc97c5927272725bfa (patch) | |
tree | e69f89b43fa65a1f4279bc6aa7dc068c0817c208 /drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c | |
parent | e2338f86b334558b9f38a20a06fc645d90d6da2d (diff) | |
download | talos-obmc-linux-45abfb1069e4c365f6c1e2fc97c5927272725bfa.tar.gz talos-obmc-linux-45abfb1069e4c365f6c1e2fc97c5927272725bfa.zip |
ethernet/broadcom: Use napi_alloc_skb instead of netdev_alloc_skb_ip_align
This patch replaces the calls to netdev_alloc_skb_ip_align in the
copybreak paths.
Cc: Gary Zambrano <zambrano@broadcom.com>
Cc: Florian Fainelli <f.fainelli@gmail.com>
Cc: Ariel Elior <ariel.elior@qlogic.com>
Signed-off-by: Alexander Duyck <alexander.h.duyck@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c')
-rw-r--r-- | drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c index b4d71fd909ee..1d1147c93d59 100644 --- a/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c +++ b/drivers/net/ethernet/broadcom/bnx2x/bnx2x_cmn.c @@ -1015,7 +1015,7 @@ static int bnx2x_rx_int(struct bnx2x_fastpath *fp, int budget) */ if ((bp->dev->mtu > ETH_MAX_PACKET_SIZE) && (len <= RX_COPY_THRESH)) { - skb = netdev_alloc_skb_ip_align(bp->dev, len); + skb = napi_alloc_skb(&fp->napi, len); if (skb == NULL) { DP(NETIF_MSG_RX_ERR | NETIF_MSG_RX_STATUS, "ERROR packet dropped because of alloc failure\n"); |