Home
last modified time | relevance | path

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

/linux/drivers/net/ethernet/qlogic/qede/
H A Dqede_main.c315 struct qede_stats_common *p_common = &edev->stats.common; in qede_fill_by_demand_stats() local
322 p_common->no_buff_discards = stats.common.no_buff_discards; in qede_fill_by_demand_stats()
323 p_common->packet_too_big_discard = stats.common.packet_too_big_discard; in qede_fill_by_demand_stats()
324 p_common->ttl0_discard = stats.common.ttl0_discard; in qede_fill_by_demand_stats()
325 p_common->rx_ucast_bytes = stats.common.rx_ucast_bytes; in qede_fill_by_demand_stats()
326 p_common->rx_mcast_bytes = stats.common.rx_mcast_bytes; in qede_fill_by_demand_stats()
327 p_common->rx_bcast_bytes = stats.common.rx_bcast_bytes; in qede_fill_by_demand_stats()
328 p_common->rx_ucast_pkts = stats.common.rx_ucast_pkts; in qede_fill_by_demand_stats()
329 p_common->rx_mcast_pkts = stats.common.rx_mcast_pkts; in qede_fill_by_demand_stats()
330 p_common->rx_bcast_pkts = stats.common.rx_bcast_pkts; in qede_fill_by_demand_stats()
[all …]
/linux/drivers/net/ethernet/qlogic/qed/
H A Dqed_main.c3133 struct qed_eth_stats_common *p_common; in qed_fill_generic_tlv_data() local
3155 p_common = &stats.common; in qed_fill_generic_tlv_data()
3156 tlv->rx_frames = p_common->rx_ucast_pkts + p_common->rx_mcast_pkts + in qed_fill_generic_tlv_data()
3157 p_common->rx_bcast_pkts; in qed_fill_generic_tlv_data()
3159 tlv->rx_bytes = p_common->rx_ucast_bytes + p_common->rx_mcast_bytes + in qed_fill_generic_tlv_data()
3160 p_common->rx_bcast_bytes; in qed_fill_generic_tlv_data()
3162 tlv->tx_frames = p_common->tx_ucast_pkts + p_common->tx_mcast_pkts + in qed_fill_generic_tlv_data()
3163 p_common->tx_bcast_pkts; in qed_fill_generic_tlv_data()
3165 tlv->tx_bytes = p_common->tx_ucast_bytes + p_common->tx_mcast_bytes + in qed_fill_generic_tlv_data()
3166 p_common->tx_bcast_bytes; in qed_fill_generic_tlv_data()