Lines Matching refs:status
428 PMEStatus = (1 << 0), /* PME status can be reset by PCI RST# */
4386 u32 status;
4388 status = le32_to_cpu(READ_ONCE(tp->TxDescArray[entry].opts1));
4389 if (status & DescOwn)
4423 static inline int rtl8169_fragmented_frame(u32 status)
4425 return (status & (FirstFrag | LastFrag)) != (FirstFrag | LastFrag);
4430 u32 status = opts1 & (RxProtoMask | RxCSFailMask);
4432 if (status == RxProtoTCP || status == RxProtoUDP)
4449 u32 status;
4451 status = le32_to_cpu(READ_ONCE(desc->opts1));
4452 if (status & DescOwn)
4457 * we know the status of DescOwn
4461 if (unlikely(status & RxRES)) {
4463 netdev_warn(dev, "Rx ERROR. status = %08x\n",
4464 status);
4466 if (status & (RxRWT | RxRUNT))
4468 if (status & RxCRC)
4473 else if (status & RxRWT || !(status & (RxRUNT | RxCRC)))
4477 pkt_size = status & GENMASK(13, 0);
4484 if (unlikely(rtl8169_fragmented_frame(status))) {
4506 rtl8169_rx_csum(skb, status);
4527 u32 status = rtl_get_events(tp);
4529 if ((status & 0xffff) == 0xffff || !(status & tp->irq_mask))
4532 if (unlikely(status & SYSErr)) {
4537 if (status & LinkChg)
4540 if (unlikely(status & RxFIFOOver &&
4551 rtl_ack_events(tp, status);