Commit 35c4a95d authored by Michał Mirosław's avatar Michał Mirosław Committed by David S. Miller
Browse files

cxgb4: use __vlan_hwaccel helpers



Use __vlan_hwaccel_put_tag() to set vlan tag and proto fields.

Signed-off-by: default avatarMichał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 49f8e832
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3944,7 +3944,7 @@ static int rx_pkt(struct c4iw_dev *dev, struct sk_buff *skb)
	} else {
		vlan_eh = (struct vlan_ethhdr *)(req + 1);
		iph = (struct iphdr *)(vlan_eh + 1);
		skb->vlan_tci = ntohs(cpl->vlan);
		__vlan_hwaccel_put_tag(skb, htons(ETH_P_8021Q), ntohs(cpl->vlan));
	}

	if (iph->version != 0x4)