Lines Matching refs:opts1
543 __le32 opts1;
549 __le32 opts1;
3870 u32 eor = le32_to_cpu(desc->opts1) & RingEnd;
3875 WRITE_ONCE(desc->opts1, cpu_to_le32(DescOwn | eor | R8169_RX_BUF_SIZE));
3914 tp->RxDescArray[i].opts1 = 0;
3934 tp->RxDescArray[NUM_RX_DESC - 1].opts1 |= cpu_to_le32(RingEnd);
4055 u32 opts1;
4069 opts1 = opts[0] | len;
4071 opts1 |= RingEnd;
4073 opts1 |= DescOwn;
4074 txd->opts1 = cpu_to_le32(opts1);
4297 if (unlikely(le32_to_cpu(txd_first->opts1) & DescOwn))
4319 txd_last->opts1 |= cpu_to_le32(LastFrag);
4329 txd_first->opts1 |= cpu_to_le32(DescOwn | FirstFrag);
4482 status = le32_to_cpu(READ_ONCE(tp->TxDescArray[entry].opts1));
4530 static inline void rtl8169_rx_csum(struct sk_buff *skb, u32 opts1)
4532 u32 status = opts1 & RxProtoMask;
4534 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
4535 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
4556 status = le32_to_cpu(READ_ONCE(desc->opts1));