Lines Matching refs:tx_flags
2982 struct e1000_tx_ring *tx_ring, int tx_flags, in e1000_tx_queue() argument
2990 if (likely(tx_flags & E1000_TX_FLAGS_TSO)) { in e1000_tx_queue()
2995 if (likely(tx_flags & E1000_TX_FLAGS_IPV4)) in e1000_tx_queue()
2999 if (likely(tx_flags & E1000_TX_FLAGS_CSUM)) { in e1000_tx_queue()
3004 if (unlikely(tx_flags & E1000_TX_FLAGS_VLAN)) { in e1000_tx_queue()
3006 txd_upper |= (tx_flags & E1000_TX_FLAGS_VLAN_MASK); in e1000_tx_queue()
3009 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS)) in e1000_tx_queue()
3027 if (unlikely(tx_flags & E1000_TX_FLAGS_NO_FCS)) in e1000_tx_queue()
3118 unsigned int tx_flags = 0; in e1000_xmit_frame() local
3229 tx_flags |= E1000_TX_FLAGS_VLAN; in e1000_xmit_frame()
3230 tx_flags |= (skb_vlan_tag_get(skb) << in e1000_xmit_frame()
3245 tx_flags |= E1000_TX_FLAGS_TSO; in e1000_xmit_frame()
3247 tx_flags |= E1000_TX_FLAGS_CSUM; in e1000_xmit_frame()
3250 tx_flags |= E1000_TX_FLAGS_IPV4; in e1000_xmit_frame()
3253 tx_flags |= E1000_TX_FLAGS_NO_FCS; in e1000_xmit_frame()
3262 e1000_tx_queue(adapter, tx_ring, tx_flags, count); in e1000_xmit_frame()