Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 71a49f77 authored by Tushar Dave's avatar Tushar Dave Committed by Jeff Kirsher
Browse files

ixgbe: Correcting small packet padding



Driver pad skb up to 17 bytes because of the HW requirement. However, that code
implementation mess up the skb tail pointer after padding. This patch sets
skb->tail correctly.

Signed-off-by: default avatarTushar Dave <tushar.n.dave@intel.com>
Tested-by: default avatarPhil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 51a1f721
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -6538,6 +6538,7 @@ static netdev_tx_t ixgbe_xmit_frame(struct sk_buff *skb,
		if (skb_pad(skb, 17 - skb->len))
			return NETDEV_TX_OK;
		skb->len = 17;
		skb_set_tail_pointer(skb, 17);
	}

	tx_ring = adapter->tx_ring[skb->queue_mapping];