Searched refs:u64_stats_read (Results 1 - 25 of 36) sorted by path

12

/linux-master/drivers/net/can/
H A Dxilinx_can.c1692 data[XCAN_ECC_RX_2_BIT_ERRORS] = u64_stats_read(&priv->ecc_rx_2_bit_errors);
1693 data[XCAN_ECC_RX_1_BIT_ERRORS] = u64_stats_read(&priv->ecc_rx_1_bit_errors);
1694 data[XCAN_ECC_TXOL_2_BIT_ERRORS] = u64_stats_read(&priv->ecc_txol_2_bit_errors);
1695 data[XCAN_ECC_TXOL_1_BIT_ERRORS] = u64_stats_read(&priv->ecc_txol_1_bit_errors);
1696 data[XCAN_ECC_TXTL_2_BIT_ERRORS] = u64_stats_read(&priv->ecc_txtl_2_bit_errors);
1697 data[XCAN_ECC_TXTL_1_BIT_ERRORS] = u64_stats_read(&priv->ecc_txtl_1_bit_errors);
/linux-master/drivers/net/ethernet/asix/
H A Dax88796c_main.c666 rx_packets = u64_stats_read(&s->rx_packets);
667 rx_bytes = u64_stats_read(&s->rx_bytes);
668 tx_packets = u64_stats_read(&s->tx_packets);
669 tx_bytes = u64_stats_read(&s->tx_bytes);
/linux-master/drivers/net/ethernet/broadcom/asp2/
H A Dbcmasp_intf.c1149 stats->rx_packets = u64_stats_read(&lstats->rx_packets);
1150 stats->rx_bytes = u64_stats_read(&lstats->rx_bytes);
1151 stats->rx_dropped = u64_stats_read(&lstats->rx_dropped);
1152 stats->rx_crc_errors = u64_stats_read(&lstats->rx_crc_errs);
1153 stats->rx_frame_errors = u64_stats_read(&lstats->rx_sym_errs);
1156 stats->tx_packets = u64_stats_read(&lstats->tx_packets);
1157 stats->tx_bytes = u64_stats_read(&lstats->tx_bytes);
/linux-master/drivers/net/ethernet/intel/idpf/
H A Didpf_ethtool.c819 hw_csum_err = u64_stats_read(&stats->hw_csum_err);
820 hsplit = u64_stats_read(&stats->hsplit_pkts);
821 hsplit_hbo = u64_stats_read(&stats->hsplit_buf_ovf);
822 bad_descs = u64_stats_read(&stats->bad_descs);
850 linearize = u64_stats_read(&stats->linearize);
851 qbusy = u64_stats_read(&stats->q_busy);
852 skb_drops = u64_stats_read(&stats->skb_drops);
853 dma_map_errs = u64_stats_read(&stats->dma_map_errs);
H A Didpf_txrx.c3588 packets += u64_stats_read(&txq->q_stats.tx.packets);
3589 bytes += u64_stats_read(&txq->q_stats.tx.bytes);
3607 packets += u64_stats_read(&rxq->q_stats.rx.packets);
3608 bytes += u64_stats_read(&rxq->q_stats.rx.bytes);
/linux-master/drivers/net/ethernet/stmicro/stmmac/
H A Dstmmac_ethtool.c566 irq_n = u64_stats_read(&pcpu->rx_normal_irq_n[q]);
587 irq_n = u64_stats_read(&pcpu->tx_normal_irq_n[q]);
607 pkt_n = u64_stats_read(&txq_stats->napi.tx_pkt_n);
620 pkt_n = u64_stats_read(&rxq_stats->napi.rx_pkt_n);
692 data[j++] += u64_stats_read(&snapshot.rx_pkt_n);
696 napi_poll += u64_stats_read(&snapshot.poll);
716 data[j++] += u64_stats_read(&napi_snapshot.tx_pkt_n);
720 data[j++] += u64_stats_read(&napi_snapshot.tx_clean);
721 data[j++] += u64_stats_read(&q_snapshot.tx_set_ic_bit) +
722 u64_stats_read(
[all...]
H A Dstmmac_main.c7082 tx_bytes = u64_stats_read(&txq_stats->q.tx_bytes);
7086 tx_packets = u64_stats_read(&txq_stats->napi.tx_packets);
7100 rx_packets = u64_stats_read(&rxq_stats->napi.rx_packets);
7101 rx_bytes = u64_stats_read(&rxq_stats->napi.rx_bytes);
/linux-master/drivers/net/ethernet/xilinx/
H A Dxilinx_axienet_main.c1689 stats->rx_packets = u64_stats_read(&lp->rx_packets);
1690 stats->rx_bytes = u64_stats_read(&lp->rx_bytes);
1695 stats->tx_packets = u64_stats_read(&lp->tx_packets);
1696 stats->tx_bytes = u64_stats_read(&lp->tx_bytes);
/linux-master/drivers/net/ipvlan/
H A Dipvlan_main.c305 rx_pkts = u64_stats_read(&pcptr->rx_pkts);
306 rx_bytes = u64_stats_read(&pcptr->rx_bytes);
307 rx_mcast = u64_stats_read(&pcptr->rx_mcast);
308 tx_pkts = u64_stats_read(&pcptr->tx_pkts);
309 tx_bytes = u64_stats_read(&pcptr->tx_bytes);
/linux-master/drivers/net/
H A Dloopback.c110 tpackets = u64_stats_read(&lb_stats->packets);
111 tbytes = u64_stats_read(&lb_stats->bytes);
H A Dmacvlan.c980 rx_packets = u64_stats_read(&p->rx_packets);
981 rx_bytes = u64_stats_read(&p->rx_bytes);
982 rx_multicast = u64_stats_read(&p->rx_multicast);
983 tx_packets = u64_stats_read(&p->tx_packets);
984 tx_bytes = u64_stats_read(&p->tx_bytes);
H A Dmhi_net.c108 stats->rx_packets = u64_stats_read(&mhi_netdev->stats.rx_packets);
109 stats->rx_bytes = u64_stats_read(&mhi_netdev->stats.rx_bytes);
110 stats->rx_errors = u64_stats_read(&mhi_netdev->stats.rx_errors);
115 stats->tx_packets = u64_stats_read(&mhi_netdev->stats.tx_packets);
116 stats->tx_bytes = u64_stats_read(&mhi_netdev->stats.tx_bytes);
117 stats->tx_errors = u64_stats_read(&mhi_netdev->stats.tx_errors);
118 stats->tx_dropped = u64_stats_read(&mhi_netdev->stats.tx_dropped);
H A Dvirtio_net.c2154 u64_stats_add(item, u64_stats_read(src));
2198 u64_stats_read(&rq->stats.packets),
2199 u64_stats_read(&rq->stats.bytes),
2638 tpackets = u64_stats_read(&sq->stats.packets);
2639 tbytes = u64_stats_read(&sq->stats.bytes);
2640 terrors = u64_stats_read(&sq->stats.tx_timeouts);
2645 rpackets = u64_stats_read(&rq->stats.packets);
2646 rbytes = u64_stats_read(&rq->stats.bytes);
2647 rdrops = u64_stats_read(&rq->stats.drops);
3354 data[idx + j] = u64_stats_read(
[all...]
/linux-master/drivers/net/phy/
H A Dmdio_bus.c214 val = u64_stats_read((const u64_stats_t *)p);
/linux-master/drivers/net/team/
H A Dteam.c1859 rx_packets = u64_stats_read(&p->rx_packets);
1860 rx_bytes = u64_stats_read(&p->rx_bytes);
1861 rx_multicast = u64_stats_read(&p->rx_multicast);
1862 tx_packets = u64_stats_read(&p->tx_packets);
1863 tx_bytes = u64_stats_read(&p->tx_bytes);
/linux-master/drivers/net/wwan/
H A Dmhi_wwan_mbim.c460 stats->rx_packets = u64_stats_read(&link->rx_packets);
461 stats->rx_bytes = u64_stats_read(&link->rx_bytes);
462 stats->rx_errors = u64_stats_read(&link->rx_errors);
467 stats->tx_packets = u64_stats_read(&link->tx_packets);
468 stats->tx_bytes = u64_stats_read(&link->tx_bytes);
469 stats->tx_errors = u64_stats_read(&link->tx_errors);
470 stats->tx_dropped = u64_stats_read(&link->tx_dropped);
/linux-master/drivers/spi/
H A Dspi.c136 inc = u64_stats_read(field);
/linux-master/include/linux/
H A Du64_stats_sync.h54 * tbytes = u64_stats_read(&stats->bytes64); // non atomic operation
55 * tpackets = u64_stats_read(&stats->packets64); // non atomic operation
77 static inline u64 u64_stats_read(const u64_stats_t *p) function
118 static inline u64 u64_stats_read(const u64_stats_t *p) function
/linux-master/kernel/bpf/
H A Dsyscall.c2332 tnsecs = u64_stats_read(&st->nsecs);
2333 tcnt = u64_stats_read(&st->cnt);
2334 tmisses = u64_stats_read(&st->misses);
/linux-master/net/8021q/
H A Dvlan_dev.c700 rxpackets = u64_stats_read(&p->rx_packets);
701 rxbytes = u64_stats_read(&p->rx_bytes);
702 rxmulticast = u64_stats_read(&p->rx_multicast);
703 txpackets = u64_stats_read(&p->tx_packets);
704 txbytes = u64_stats_read(&p->tx_bytes);
/linux-master/net/bridge/
H A Dbr_netlink.c1847 vxi.rx_bytes = u64_stats_read(&stats.rx_bytes);
1848 vxi.rx_packets = u64_stats_read(&stats.rx_packets);
1849 vxi.tx_bytes = u64_stats_read(&stats.tx_bytes);
1850 vxi.tx_packets = u64_stats_read(&stats.tx_packets);
H A Dbr_vlan.c1393 rxpackets = u64_stats_read(&cpu_stats->rx_packets);
1394 rxbytes = u64_stats_read(&cpu_stats->rx_bytes);
1395 txbytes = u64_stats_read(&cpu_stats->tx_bytes);
1396 txpackets = u64_stats_read(&cpu_stats->tx_packets);
1794 u64_stats_read(&stats.rx_bytes),
1797 u64_stats_read(&stats.rx_packets),
1800 u64_stats_read(&stats.tx_bytes),
1803 u64_stats_read(&stats.tx_packets),
/linux-master/net/core/
H A Ddev.c10724 rx_packets = u64_stats_read(&stats->rx_packets);
10725 rx_bytes = u64_stats_read(&stats->rx_bytes);
10726 tx_packets = u64_stats_read(&stats->tx_packets);
10727 tx_bytes = u64_stats_read(&stats->tx_bytes);
H A Ddrop_monitor.c1451 dropped = u64_stats_read(&cpu_stats->dropped);
1470 u64_stats_read(&stats.dropped), NET_DM_ATTR_PAD))
1495 dropped = u64_stats_read(&cpu_stats->dropped);
1514 u64_stats_read(&stats.dropped), NET_DM_ATTR_PAD))
H A Dgen_estimator.c84 b_bytes = u64_stats_read(&b.bytes);
85 b_packets = u64_stats_read(&b.packets);
173 est->last_bytes = u64_stats_read(&b.bytes);
174 est->last_packets = u64_stats_read(&b.packets);

Completed in 477 milliseconds

12