Lines Matching refs:tally_counters
498 RTL8139TallyCounters tally_counters; member
860 ++s->tally_counters.RxERR; in rtl8139_do_receive()
870 ++s->tally_counters.RxOkBrd; in rtl8139_do_receive()
879 ++s->tally_counters.RxERR; in rtl8139_do_receive()
891 ++s->tally_counters.RxERR; in rtl8139_do_receive()
901 ++s->tally_counters.RxOkMul; in rtl8139_do_receive()
915 ++s->tally_counters.RxERR; in rtl8139_do_receive()
925 ++s->tally_counters.RxOkPhy; in rtl8139_do_receive()
932 ++s->tally_counters.RxERR; in rtl8139_do_receive()
994 ++s->tally_counters.RxERR; in rtl8139_do_receive()
995 ++s->tally_counters.MissPkt; in rtl8139_do_receive()
1035 ++s->tally_counters.RxERR; in rtl8139_do_receive()
1036 ++s->tally_counters.MissPkt; in rtl8139_do_receive()
1112 ++s->tally_counters.RxOk; in rtl8139_do_receive()
1277 RTL8139TallyCounters_clear(&s->tally_counters); in rtl8139_reset()
1300 RTL8139TallyCounters *tally_counters = &s->tally_counters; in RTL8139TallyCounters_dma_write() local
1305 val64 = cpu_to_le64(tally_counters->TxOk); in RTL8139TallyCounters_dma_write()
1308 val64 = cpu_to_le64(tally_counters->RxOk); in RTL8139TallyCounters_dma_write()
1311 val64 = cpu_to_le64(tally_counters->TxERR); in RTL8139TallyCounters_dma_write()
1314 val32 = cpu_to_le32(tally_counters->RxERR); in RTL8139TallyCounters_dma_write()
1317 val16 = cpu_to_le16(tally_counters->MissPkt); in RTL8139TallyCounters_dma_write()
1320 val16 = cpu_to_le16(tally_counters->FAE); in RTL8139TallyCounters_dma_write()
1323 val32 = cpu_to_le32(tally_counters->Tx1Col); in RTL8139TallyCounters_dma_write()
1326 val32 = cpu_to_le32(tally_counters->TxMCol); in RTL8139TallyCounters_dma_write()
1329 val64 = cpu_to_le64(tally_counters->RxOkPhy); in RTL8139TallyCounters_dma_write()
1332 val64 = cpu_to_le64(tally_counters->RxOkBrd); in RTL8139TallyCounters_dma_write()
1335 val32 = cpu_to_le32(tally_counters->RxOkMul); in RTL8139TallyCounters_dma_write()
1338 val16 = cpu_to_le16(tally_counters->TxAbt); in RTL8139TallyCounters_dma_write()
1341 val16 = cpu_to_le16(tally_counters->TxUndrn); in RTL8139TallyCounters_dma_write()
2321 ++s->tally_counters.TxOk; in rtl8139_cplus_transmit_one()
3245 VMSTATE_UINT64(tally_counters.TxOk, RTL8139State),
3246 VMSTATE_UINT64(tally_counters.RxOk, RTL8139State),
3247 VMSTATE_UINT64(tally_counters.TxERR, RTL8139State),
3248 VMSTATE_UINT32(tally_counters.RxERR, RTL8139State),
3249 VMSTATE_UINT16(tally_counters.MissPkt, RTL8139State),
3250 VMSTATE_UINT16(tally_counters.FAE, RTL8139State),
3251 VMSTATE_UINT32(tally_counters.Tx1Col, RTL8139State),
3252 VMSTATE_UINT32(tally_counters.TxMCol, RTL8139State),
3253 VMSTATE_UINT64(tally_counters.RxOkPhy, RTL8139State),
3254 VMSTATE_UINT64(tally_counters.RxOkBrd, RTL8139State),
3255 VMSTATE_UINT32_V(tally_counters.RxOkMul, RTL8139State, 5),
3256 VMSTATE_UINT16(tally_counters.TxAbt, RTL8139State),
3257 VMSTATE_UINT16(tally_counters.TxUndrn, RTL8139State),