Lines Matching refs:tx_flags

4678 		first->tx_flags |= IGB_TX_FLAGS_TSO |  in igb_tso()
4686 first->tx_flags |= IGB_TX_FLAGS_TSO | in igb_tso()
4705 vlan_macip_lens |= first->tx_flags & IGB_TX_FLAGS_VLAN_MASK; in igb_tso()
4720 if (!(first->tx_flags & IGB_TX_FLAGS_VLAN)) in igb_tx_csum()
4769 first->tx_flags |= IGB_TX_FLAGS_CSUM; in igb_tx_csum()
4773 vlan_macip_lens |= first->tx_flags & IGB_TX_FLAGS_VLAN_MASK; in igb_tx_csum()
4783 static u32 igb_tx_cmd_type(struct sk_buff *skb, u32 tx_flags) in igb_tx_cmd_type() argument
4791 cmd_type |= IGB_SET_FLAG(tx_flags, IGB_TX_FLAGS_VLAN, in igb_tx_cmd_type()
4795 cmd_type |= IGB_SET_FLAG(tx_flags, IGB_TX_FLAGS_TSO, in igb_tx_cmd_type()
4799 cmd_type |= IGB_SET_FLAG(tx_flags, IGB_TX_FLAGS_TSTAMP, in igb_tx_cmd_type()
4810 u32 tx_flags, unsigned int paylen) in igb_tx_olinfo_status() argument
4819 olinfo_status |= IGB_SET_FLAG(tx_flags, in igb_tx_olinfo_status()
4824 olinfo_status |= IGB_SET_FLAG(tx_flags, in igb_tx_olinfo_status()
4876 u32 tx_flags = first->tx_flags; in igb_tx_map() local
4877 u32 cmd_type = igb_tx_cmd_type(skb, tx_flags); in igb_tx_map()
4882 igb_tx_olinfo_status(tx_ring, tx_desc, tx_flags, skb->len - hdr_len); in igb_tx_map()
5003 u32 tx_flags = 0; in igb_xmit_frame_ring() local
5034 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_HW_TSTAMP)) { in igb_xmit_frame_ring()
5039 skb_shinfo(skb)->tx_flags |= SKBTX_IN_PROGRESS; in igb_xmit_frame_ring()
5040 tx_flags |= IGB_TX_FLAGS_TSTAMP; in igb_xmit_frame_ring()
5052 tx_flags |= IGB_TX_FLAGS_VLAN; in igb_xmit_frame_ring()
5053 tx_flags |= (skb_vlan_tag_get(skb) << IGB_TX_FLAGS_VLAN_SHIFT); in igb_xmit_frame_ring()
5057 first->tx_flags = tx_flags; in igb_xmit_frame_ring()