mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-25 12:50:51 +07:00
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>
This commit is contained in:
parent
e2338f86b3
commit
45abfb1069
@ -836,7 +836,7 @@ static int b44_rx(struct b44 *bp, int budget)
|
||||
struct sk_buff *copy_skb;
|
||||
|
||||
b44_recycle_rx(bp, cons, bp->rx_prod);
|
||||
copy_skb = netdev_alloc_skb_ip_align(bp->dev, len);
|
||||
copy_skb = napi_alloc_skb(&bp->napi, len);
|
||||
if (copy_skb == NULL)
|
||||
goto drop_it_no_recycle;
|
||||
|
||||
|
@ -385,7 +385,7 @@ static int bcm_enet_receive_queue(struct net_device *dev, int budget)
|
||||
if (len < copybreak) {
|
||||
struct sk_buff *nskb;
|
||||
|
||||
nskb = netdev_alloc_skb_ip_align(dev, len);
|
||||
nskb = napi_alloc_skb(&priv->napi, len);
|
||||
if (!nskb) {
|
||||
/* forget packet, just rearm desc */
|
||||
dev->stats.rx_dropped++;
|
||||
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user