Lines Matching refs:opts1
543 __le32 opts1; member
549 __le32 opts1; member
3862 u32 eor = le32_to_cpu(desc->opts1) & RingEnd; in rtl8169_mark_to_asic()
3867 WRITE_ONCE(desc->opts1, cpu_to_le32(DescOwn | eor | R8169_RX_BUF_SIZE)); in rtl8169_mark_to_asic()
3906 tp->RxDescArray[i].opts1 = 0; in rtl8169_rx_clear()
3926 tp->RxDescArray[NUM_RX_DESC - 1].opts1 |= cpu_to_le32(RingEnd); in rtl8169_rx_fill()
4047 u32 opts1; in rtl8169_tx_map() local
4061 opts1 = opts[0] | len; in rtl8169_tx_map()
4063 opts1 |= RingEnd; in rtl8169_tx_map()
4065 opts1 |= DescOwn; in rtl8169_tx_map()
4066 txd->opts1 = cpu_to_le32(opts1); in rtl8169_tx_map()
4289 if (unlikely(le32_to_cpu(txd_first->opts1) & DescOwn)) in rtl8169_start_xmit()
4311 txd_last->opts1 |= cpu_to_le32(LastFrag); in rtl8169_start_xmit()
4321 txd_first->opts1 |= cpu_to_le32(DescOwn | FirstFrag); in rtl8169_start_xmit()
4474 status = le32_to_cpu(tp->TxDescArray[entry].opts1); in rtl_tx()
4522 static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1) in rtl8169_rx_csum() argument
4524 u32 status = opts1 & RxProtoMask; in rtl8169_rx_csum()
4526 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) || in rtl8169_rx_csum()
4527 ((status == RxProtoUDP) && !(opts1 & UDPFail))) in rtl8169_rx_csum()
4548 status = le32_to_cpu(desc->opts1); in rtl_rx()