Lines Matching refs:vlan_macip_lens
1969 static void igbvf_tx_ctxtdesc(struct igbvf_ring *tx_ring, u32 vlan_macip_lens, in igbvf_tx_ctxtdesc() argument
1985 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens); in igbvf_tx_ctxtdesc()
1997 u32 vlan_macip_lens, type_tucmd, mss_l4len_idx; in igbvf_tso() local
2059 vlan_macip_lens = l4.hdr - ip.hdr; in igbvf_tso()
2060 vlan_macip_lens |= (ip.hdr - skb->data) << E1000_ADVTXD_MACLEN_SHIFT; in igbvf_tso()
2061 vlan_macip_lens |= tx_flags & IGBVF_TX_FLAGS_VLAN_MASK; in igbvf_tso()
2063 igbvf_tx_ctxtdesc(tx_ring, vlan_macip_lens, type_tucmd, mss_l4len_idx); in igbvf_tso()
2080 u32 vlan_macip_lens = 0; in igbvf_tx_csum() local
2111 vlan_macip_lens = skb_checksum_start_offset(skb) - in igbvf_tx_csum()
2114 vlan_macip_lens |= skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT; in igbvf_tx_csum()
2115 vlan_macip_lens |= tx_flags & IGBVF_TX_FLAGS_VLAN_MASK; in igbvf_tx_csum()
2117 igbvf_tx_ctxtdesc(tx_ring, vlan_macip_lens, type_tucmd, 0); in igbvf_tx_csum()