Lines Matching refs:tx_flags
2977 struct e1000_tx_ring *tx_ring, int tx_flags, in e1000_tx_queue() argument
2985 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) { in e1000_tx_queue()
2990 if (likely(tx_flags & E1000_TX_FLAGS_IPV4)) in e1000_tx_queue()
2994 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) { in e1000_tx_queue()
2999 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) { in e1000_tx_queue()
3001 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK); in e1000_tx_queue()
3004 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS)) in e1000_tx_queue()
3022 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS)) in e1000_tx_queue()
3113 unsigned int tx_flags = 0; in e1000_xmit_frame() local
3224 tx_flags |= E1000_TX_FLAGS_VLAN; in e1000_xmit_frame()
3225 tx_flags |= (skb_vlan_tag_get(skb) << in e1000_xmit_frame()
3240 tx_flags |= E1000_TX_FLAGS_TSO; in e1000_xmit_frame()
3242 tx_flags |= E1000_TX_FLAGS_CSUM; in e1000_xmit_frame()
3245 tx_flags |= E1000_TX_FLAGS_IPV4; in e1000_xmit_frame()
3248 tx_flags |= E1000_TX_FLAGS_NO_FCS; in e1000_xmit_frame()
3257 e1000_tx_queue(adapter, tx_ring, tx_flags, count); in e1000_xmit_frame()