Lines Matching refs:stats
317 * Obtains stats for 'queue' from 'netdev->tc'. 'queue' is one of the
320 * On success, initializes '*stats'.
326 const struct tc_queue *queue, struct netdev_queue_stats *stats);
329 * Extracts queue stats from 'nlmsg', which is a response to a
1386 * Retrieves current device stats for 'netdev-solaris'.
1390 struct netdev_stats *stats)
1413 stats->rx_length_errors = 0;
1414 stats->rx_missed_errors = 0;
1415 stats->rx_over_errors = 0;
1420 stats->rx_crc_errors = UINT64_MAX;
1421 stats->rx_frame_errors = UINT64_MAX;
1422 stats->rx_fifo_errors = UINT64_MAX;
1423 stats->tx_aborted_errors = UINT64_MAX;
1424 stats->tx_carrier_errors = UINT64_MAX;
1425 stats->tx_fifo_errors = UINT64_MAX;
1426 stats->tx_heartbeat_errors = UINT64_MAX;
1427 stats->tx_window_errors = UINT64_MAX;
1438 VLOG_DBG("netdev_solaris_get_stats error updating stats");
1460 stats->rx_packets = get_nvvt_int(map, "ipackets64");
1461 stats->tx_packets = get_nvvt_int(map, "opackets64");
1462 stats->rx_bytes = get_nvvt_int(map, "rbytes");
1463 stats->tx_bytes = get_nvvt_int(map, "obytes");
1464 stats->rx_errors = get_nvvt_int(map, "ierrors");
1465 stats->tx_errors = get_nvvt_int(map, "oerrors");
1467 stats->tx_packets = get_nvvt_int(map, "ipackets64");
1468 stats->rx_packets = get_nvvt_int(map, "opackets64");
1469 stats->tx_bytes = get_nvvt_int(map, "rbytes");
1470 stats->rx_bytes = get_nvvt_int(map, "obytes");
1471 stats->tx_errors = get_nvvt_int(map, "ierrors");
1472 stats->rx_errors = get_nvvt_int(map, "oerrors");
1474 stats->collisions = get_nvvt_int(map, "collisions");
1475 stats->multicast = get_nvvt_int(map, "multircv") +
1487 stats->rx_dropped = get_nvvt_int(map, "idrops");
1488 stats->tx_dropped = get_nvvt_int(map, "odrops");
1490 stats->tx_dropped = get_nvvt_int(map, "idrops");
1491 stats->rx_dropped = get_nvvt_int(map, "odrops");
1527 stats->rx_length_errors = get_nvvt_int(map, "Recv_Length_Errors");
1528 stats->rx_missed_errors = get_nvvt_int(map, "Recv_Missed_Packets");
1529 stats->rx_over_errors = get_nvvt_int(map, "Recv_Oversize");
1808 struct netdev_queue_stats *stats OVS_UNUSED)