Lines Matching refs:opts1
540 __le32 opts1; member
546 __le32 opts1; member
3872 u32 eor = le32_to_cpu(desc->opts1) & RingEnd; in rtl8169_mark_to_asic()
3877 WRITE_ONCE(desc->opts1, cpu_to_le32(DescOwn | eor | R8169_RX_BUF_SIZE)); in rtl8169_mark_to_asic()
3916 tp->RxDescArray[i].opts1 = 0; in rtl8169_rx_clear()
3936 tp->RxDescArray[NUM_RX_DESC - 1].opts1 |= cpu_to_le32(RingEnd); in rtl8169_rx_fill()
4053 u32 opts1; in rtl8169_tx_map() local
4067 opts1 = opts[0] | len; in rtl8169_tx_map()
4069 opts1 |= RingEnd; in rtl8169_tx_map()
4071 opts1 |= DescOwn; in rtl8169_tx_map()
4072 txd->opts1 = cpu_to_le32(opts1); in rtl8169_tx_map()
4318 txd_last->opts1 |= cpu_to_le32(LastFrag); in rtl8169_start_xmit()
4328 txd_first->opts1 |= cpu_to_le32(DescOwn | FirstFrag); in rtl8169_start_xmit()
4441 status = le32_to_cpu(READ_ONCE(tp->TxDescArray[entry].opts1)); in rtl_tx()
4481 static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1) in rtl8169_rx_csum() argument
4483 u32 status = opts1 & (RxProtoMask | RxCSFailMask); in rtl8169_rx_csum()
4504 status = le32_to_cpu(READ_ONCE(desc->opts1)); in rtl_rx()