Lines Matching refs:status
434 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
4351 * - publish queue status and cur_tx ring index (write barrier)
4354 * status and forget to wake up queue, a racing rtl_tx thread
4480 u32 status;
4482 status = le32_to_cpu(READ_ONCE(tp->TxDescArray[entry].opts1));
4483 if (status & DescOwn)
4504 * - refresh cur_tx ring index and queue status (read barrier)
4507 * ring status.
4525 static inline int rtl8169_fragmented_frame(u32 status)
4527 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4532 u32 status = opts1 & RxProtoMask;
4534 if (((status == RxProtoTCP) && !(opts1 & TCPFail)) ||
4535 ((status == RxProtoUDP) && !(opts1 & UDPFail)))
4554 u32 status;
4556 status = le32_to_cpu(READ_ONCE(desc->opts1));
4557 if (status & DescOwn)
4562 * we know the status of DescOwn
4566 if (unlikely(status & RxRES)) {
4568 netdev_warn(dev, "Rx ERROR. status = %08x\n",
4569 status);
4571 if (status & (RxRWT | RxRUNT))
4573 if (status & RxCRC)
4578 else if (status & RxRWT || !(status & (RxRUNT | RxCRC)))
4582 pkt_size = status & GENMASK(13, 0);
4589 if (unlikely(rtl8169_fragmented_frame(status))) {
4611 rtl8169_rx_csum(skb, status);
4635 u32 status = rtl_get_events(tp);
4637 if ((status & 0xffff) == 0xffff || !(status & tp->irq_mask))
4640 if (unlikely(status & SYSErr)) {
4645 if (status & LinkChg)
4648 if (unlikely(status & RxFIFOOver &&
4657 rtl_ack_events(tp, status);