Lines Matching refs:vlan_macip_lens
1975 static void igbvf_tx_ctxtdesc(struct igbvf_ring *tx_ring, u32 vlan_macip_lens, in igbvf_tx_ctxtdesc() argument
1991 context_desc->vlan_macip_lens = cpu_to_le32(vlan_macip_lens); in igbvf_tx_ctxtdesc()
2003 u32 vlan_macip_lens, type_tucmd, mss_l4len_idx; in igbvf_tso() local
2065 vlan_macip_lens = l4.hdr - ip.hdr; in igbvf_tso()
2066 vlan_macip_lens |= (ip.hdr - skb->data) << E1000_ADVTXD_MACLEN_SHIFT; in igbvf_tso()
2067 vlan_macip_lens |= tx_flags & IGBVF_TX_FLAGS_VLAN_MASK; in igbvf_tso()
2069 igbvf_tx_ctxtdesc(tx_ring, vlan_macip_lens, type_tucmd, mss_l4len_idx); in igbvf_tso()
2077 u32 vlan_macip_lens = 0; in igbvf_tx_csum() local
2105 vlan_macip_lens = skb_checksum_start_offset(skb) - in igbvf_tx_csum()
2108 vlan_macip_lens |= skb_network_offset(skb) << E1000_ADVTXD_MACLEN_SHIFT; in igbvf_tx_csum()
2109 vlan_macip_lens |= tx_flags & IGBVF_TX_FLAGS_VLAN_MASK; in igbvf_tx_csum()
2111 igbvf_tx_ctxtdesc(tx_ring, vlan_macip_lens, type_tucmd, 0); in igbvf_tx_csum()