Lines Matching refs:tx_flags

1067 		if (!(first->tx_flags & IGC_TX_FLAGS_VLAN) &&  in igc_tx_csum()
1092 first->tx_flags |= IGC_TX_FLAGS_CSUM; in igc_tx_csum()
1097 vlan_macip_lens |= first->tx_flags & IGC_TX_FLAGS_VLAN_MASK; in igc_tx_csum()
1139 static u32 igc_tx_cmd_type(struct sk_buff *skb, u32 tx_flags) in igc_tx_cmd_type() argument
1147 cmd_type |= IGC_SET_FLAG(tx_flags, IGC_TX_FLAGS_VLAN, in igc_tx_cmd_type()
1151 cmd_type |= IGC_SET_FLAG(tx_flags, IGC_TX_FLAGS_TSO, in igc_tx_cmd_type()
1155 cmd_type |= IGC_SET_FLAG(tx_flags, IGC_TX_FLAGS_TSTAMP, in igc_tx_cmd_type()
1166 u32 tx_flags, unsigned int paylen) in igc_tx_olinfo_status() argument
1171 olinfo_status |= (tx_flags & IGC_TX_FLAGS_CSUM) * in igc_tx_olinfo_status()
1176 olinfo_status |= (tx_flags & IGC_TX_FLAGS_IPV4) * in igc_tx_olinfo_status()
1190 u32 tx_flags = first->tx_flags; in igc_tx_map() local
1197 cmd_type = igc_tx_cmd_type(skb, tx_flags); in igc_tx_map()
1200 igc_tx_olinfo_status(tx_ring, tx_desc, tx_flags, skb->len - hdr_len); in igc_tx_map()
1370 first->tx_flags |= IGC_TX_FLAGS_TSO | in igc_tso()
1375 first->tx_flags |= IGC_TX_FLAGS_TSO | in igc_tso()
1407 vlan_macip_lens |= first->tx_flags & IGC_TX_FLAGS_VLAN_MASK; in igc_tso()
1421 u32 tx_flags = 0; in igc_xmit_frame_ring() local
1448 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { in igc_xmit_frame_ring()
1458 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; in igc_xmit_frame_ring()
1459 tx_flags |= IGC_TX_FLAGS_TSTAMP; in igc_xmit_frame_ring()
1469 tx_flags |= IGC_TX_FLAGS_VLAN; in igc_xmit_frame_ring()
1470 tx_flags |= (skb_vlan_tag_get(skb) << IGC_TX_FLAGS_VLAN_SHIFT); in igc_xmit_frame_ring()
1474 first->tx_flags = tx_flags; in igc_xmit_frame_ring()