Lines Matching refs:opts1
536 __le32 opts1; member
542 __le32 opts1; member
3759 u32 eor = le32_to_cpu(desc->opts1) & RingEnd; in rtl8169_mark_to_asic()
3764 WRITE_ONCE(desc->opts1, cpu_to_le32(DescOwn | eor | R8169_RX_BUF_SIZE)); in rtl8169_mark_to_asic()
3803 tp->RxDescArray[i].opts1 = 0; in rtl8169_rx_clear()
3823 tp->RxDescArray[NUM_RX_DESC - 1].opts1 |= cpu_to_le32(RingEnd); in rtl8169_rx_fill()
3943 u32 opts1; in rtl8169_tx_map() local
3957 opts1 = opts[0] | len; in rtl8169_tx_map()
3959 opts1 |= RingEnd; in rtl8169_tx_map()
3961 opts1 |= DescOwn; in rtl8169_tx_map()
3962 txd->opts1 = cpu_to_le32(opts1); in rtl8169_tx_map()
4204 txd_last->opts1 |= cpu_to_le32(LastFrag); in rtl8169_start_xmit()
4214 txd_first->opts1 |= cpu_to_le32(DescOwn | FirstFrag); in rtl8169_start_xmit()
4349 status = le32_to_cpu(tp->TxDescArray[entry].opts1); in rtl_tx()
4396 static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1) in rtl8169_rx_csum() argument
4398 u32 status = opts1 & (RxProtoMask | RxCSFailMask); in rtl8169_rx_csum()
4419 status = le32_to_cpu(desc->opts1); in rtl_rx()