Lines Matching refs:tx_flags

1064 		if (!(first->tx_flags & IGC_TX_FLAGS_VLAN) &&  in igc_tx_csum()
1089 first->tx_flags |= IGC_TX_FLAGS_CSUM; in igc_tx_csum()
1094 vlan_macip_lens |= first->tx_flags & IGC_TX_FLAGS_VLAN_MASK; in igc_tx_csum()
1136 static u32 igc_tx_cmd_type(struct sk_buff *skb, u32 tx_flags) in igc_tx_cmd_type() argument
1144 cmd_type |= IGC_SET_FLAG(tx_flags, IGC_TX_FLAGS_VLAN, in igc_tx_cmd_type()
1148 cmd_type |= IGC_SET_FLAG(tx_flags, IGC_TX_FLAGS_TSO, in igc_tx_cmd_type()
1152 cmd_type |= IGC_SET_FLAG(tx_flags, IGC_TX_FLAGS_TSTAMP, in igc_tx_cmd_type()
1163 u32 tx_flags, unsigned int paylen) in igc_tx_olinfo_status() argument
1168 olinfo_status |= (tx_flags & IGC_TX_FLAGS_CSUM) * in igc_tx_olinfo_status()
1173 olinfo_status |= (tx_flags & IGC_TX_FLAGS_IPV4) * in igc_tx_olinfo_status()
1187 u32 tx_flags = first->tx_flags; in igc_tx_map() local
1194 cmd_type = igc_tx_cmd_type(skb, tx_flags); in igc_tx_map()
1197 igc_tx_olinfo_status(tx_ring, tx_desc, tx_flags, skb->len - hdr_len); in igc_tx_map()
1367 first->tx_flags |= IGC_TX_FLAGS_TSO | in igc_tso()
1372 first->tx_flags |= IGC_TX_FLAGS_TSO | in igc_tso()
1404 vlan_macip_lens |= first->tx_flags & IGC_TX_FLAGS_VLAN_MASK; in igc_tso()
1418 u32 tx_flags = 0; in igc_xmit_frame_ring() local
1445 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { in igc_xmit_frame_ring()
1455 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; in igc_xmit_frame_ring()
1456 tx_flags |= IGC_TX_FLAGS_TSTAMP; in igc_xmit_frame_ring()
1466 tx_flags |= IGC_TX_FLAGS_VLAN; in igc_xmit_frame_ring()
1467 tx_flags |= (skb_vlan_tag_get(skb) << IGC_TX_FLAGS_VLAN_SHIFT); in igc_xmit_frame_ring()
1471 first->tx_flags = tx_flags; in igc_xmit_frame_ring()