Lines Matching refs:tx_flags

4674 		first->tx_flags |= IGB_TX_FLAGS_TSO |  in igb_tso()
4682 first->tx_flags |= IGB_TX_FLAGS_TSO | in igb_tso()
4701 vlan_macip_lens |= first->tx_flags & IGB_TX_FLAGS_VLAN_MASK; in igb_tso()
4716 if (!(first->tx_flags & IGB_TX_FLAGS_VLAN)) in igb_tx_csum()
4765 first->tx_flags |= IGB_TX_FLAGS_CSUM; in igb_tx_csum()
4769 vlan_macip_lens |= first->tx_flags & IGB_TX_FLAGS_VLAN_MASK; in igb_tx_csum()
4779 static u32 igb_tx_cmd_type(struct sk_buff *skb, u32 tx_flags) in igb_tx_cmd_type() argument
4787 cmd_type |= IGB_SET_FLAG(tx_flags, IGB_TX_FLAGS_VLAN, in igb_tx_cmd_type()
4791 cmd_type |= IGB_SET_FLAG(tx_flags, IGB_TX_FLAGS_TSO, in igb_tx_cmd_type()
4795 cmd_type |= IGB_SET_FLAG(tx_flags, IGB_TX_FLAGS_TSTAMP, in igb_tx_cmd_type()
4806 u32 tx_flags, unsigned int paylen) in igb_tx_olinfo_status() argument
4815 olinfo_status |= IGB_SET_FLAG(tx_flags, in igb_tx_olinfo_status()
4820 olinfo_status |= IGB_SET_FLAG(tx_flags, in igb_tx_olinfo_status()
4872 u32 tx_flags = first->tx_flags; in igb_tx_map() local
4873 u32 cmd_type = igb_tx_cmd_type(skb, tx_flags); in igb_tx_map()
4878 igb_tx_olinfo_status(tx_ring, tx_desc, tx_flags, skb->len - hdr_len); in igb_tx_map()
4999 u32 tx_flags = 0; in igb_xmit_frame_ring() local
5025 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { in igb_xmit_frame_ring()
5030 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; in igb_xmit_frame_ring()
5031 tx_flags |= IGB_TX_FLAGS_TSTAMP; in igb_xmit_frame_ring()
5043 tx_flags |= IGB_TX_FLAGS_VLAN; in igb_xmit_frame_ring()
5044 tx_flags |= (skb_vlan_tag_get(skb) << IGB_TX_FLAGS_VLAN_SHIFT); in igb_xmit_frame_ring()
5048 first->tx_flags = tx_flags; in igb_xmit_frame_ring()