Lines Matching refs:opts1
536 __le32 opts1; member
542 __le32 opts1; member
3760 u32 eor = le32_to_cpu(desc->opts1) & RingEnd; in rtl8169_mark_to_asic()
3765 WRITE_ONCE(desc->opts1, cpu_to_le32(DescOwn | eor | R8169_RX_BUF_SIZE)); in rtl8169_mark_to_asic()
3804 tp->RxDescArray[i].opts1 = 0; in rtl8169_rx_clear()
3824 tp->RxDescArray[NUM_RX_DESC - 1].opts1 |= cpu_to_le32(RingEnd); in rtl8169_rx_fill()
3941 u32 opts1; in rtl8169_tx_map() local
3955 opts1 = opts[0] | len; in rtl8169_tx_map()
3957 opts1 |= RingEnd; in rtl8169_tx_map()
3959 opts1 |= DescOwn; in rtl8169_tx_map()
3960 txd->opts1 = cpu_to_le32(opts1); in rtl8169_tx_map()
4202 txd_last->opts1 |= cpu_to_le32(LastFrag); in rtl8169_start_xmit()
4212 txd_first->opts1 |= cpu_to_le32(DescOwn | FirstFrag); in rtl8169_start_xmit()
4347 status = le32_to_cpu(tp->TxDescArray[entry].opts1); in rtl_tx()
4394 static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1) in rtl8169_rx_csum() argument
4396 u32 status = opts1 & (RxProtoMask | RxCSFailMask); in rtl8169_rx_csum()
4417 status = le32_to_cpu(desc->opts1); in rtl_rx()