Lines Matching refs:opts1
539 __le32 opts1; member
545 __le32 opts1; member
3801 u32 eor = le32_to_cpu(desc->opts1) & RingEnd; in rtl8169_mark_to_asic()
3806 WRITE_ONCE(desc->opts1, cpu_to_le32(DescOwn | eor | R8169_RX_BUF_SIZE)); in rtl8169_mark_to_asic()
3845 tp->RxDescArray[i].opts1 = 0; in rtl8169_rx_clear()
3865 tp->RxDescArray[NUM_RX_DESC - 1].opts1 |= cpu_to_le32(RingEnd); in rtl8169_rx_fill()
3982 u32 opts1; in rtl8169_tx_map() local
3996 opts1 = opts[0] | len; in rtl8169_tx_map()
3998 opts1 |= RingEnd; in rtl8169_tx_map()
4000 opts1 |= DescOwn; in rtl8169_tx_map()
4001 txd->opts1 = cpu_to_le32(opts1); in rtl8169_tx_map()
4239 txd_last->opts1 |= cpu_to_le32(LastFrag); in rtl8169_start_xmit()
4249 txd_first->opts1 |= cpu_to_le32(DescOwn | FirstFrag); in rtl8169_start_xmit()
4367 status = le32_to_cpu(READ_ONCE(tp->TxDescArray[entry].opts1)); in rtl_tx()
4407 static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1) in rtl8169_rx_csum() argument
4409 u32 status = opts1 & (RxProtoMask | RxCSFailMask); in rtl8169_rx_csum()
4430 status = le32_to_cpu(READ_ONCE(desc->opts1)); in rtl_rx()