Home
last modified time | relevance | path

Searched refs:NET_STAT (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/net/ethernet/
H A Djme.c1012 ++(NET_STAT(jme).rx_dropped); in jme_alloc_and_feed_skb()
1030 NET_STAT(jme).rx_bytes += 4; in jme_alloc_and_feed_skb()
1036 ++(NET_STAT(jme).multicast); in jme_alloc_and_feed_skb()
1038 NET_STAT(jme).rx_bytes += framesize; in jme_alloc_and_feed_skb()
1039 ++(NET_STAT(jme).rx_packets); in jme_alloc_and_feed_skb()
1079 ++(NET_STAT(jme).rx_crc_errors); in jme_process_receive()
1081 ++(NET_STAT(jme).rx_fifo_errors); in jme_process_receive()
1083 ++(NET_STAT(jme).rx_errors); in jme_process_receive()
1132 if ((NET_STAT(jme).rx_bytes - dpi->last_bytes) > PCC_P3_THRESHOLD) in jme_dynamic_pcc()
1134 else if ((NET_STAT(jme).rx_packets - dpi->last_pkts) > PCC_P2_THRESHOLD || in jme_dynamic_pcc()
[all …]
H A Djme.h377 #define NET_STAT(priv) (priv->dev->stats) macro