1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright 2008-2017 Cisco Systems, Inc. All rights reserved.
3 * Copyright 2007 Nuova Systems, Inc. All rights reserved.
10 struct vnic_tx_stats {
12 u64 tx_unicast_frames_ok;
13 u64 tx_multicast_frames_ok;
14 u64 tx_broadcast_frames_ok;
16 u64 tx_unicast_bytes_ok;
17 u64 tx_multicast_bytes_ok;
18 u64 tx_broadcast_bytes_ok;
26 struct vnic_rx_stats {
29 u64 rx_unicast_frames_ok;
30 u64 rx_multicast_frames_ok;
31 u64 rx_broadcast_frames_ok;
33 u64 rx_unicast_bytes_ok;
34 u64 rx_multicast_bytes_ok;
35 u64 rx_broadcast_bytes_ok;
52 struct vnic_tx_stats tx;
53 struct vnic_rx_stats rx;
56 #endif /* _VNIC_STATS_H_ */