diff options
author | Michał Mirosław <mirq-linux@rere.qmqm.pl> | 2018-11-09 00:18:01 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-11-09 05:45:03 +0100 |
commit | 35c4a95d95287ffae90c111b861d755f1565dbc1 (patch) | |
tree | 7501376e970e6371a0bdc2782640fa1876f9736a /drivers/infiniband/hw/cxgb4 | |
parent | net: move __skb_checksum_complete*() to skbuff.c (diff) | |
download | linux-35c4a95d95287ffae90c111b861d755f1565dbc1.tar.xz linux-35c4a95d95287ffae90c111b861d755f1565dbc1.zip |
cxgb4: use __vlan_hwaccel helpers
Use __vlan_hwaccel_put_tag() to set vlan tag and proto fields.
Signed-off-by: Michał Mirosław <mirq-linux@rere.qmqm.pl>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/infiniband/hw/cxgb4')
-rw-r--r-- | drivers/infiniband/hw/cxgb4/cm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c index 615413bd3e8d..8ed01e07c463 100644 --- a/drivers/infiniband/hw/cxgb4/cm.c +++ b/drivers/infiniband/hw/cxgb4/cm.c @@ -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) |