qcacmn: Change data type for byte count to uint64_t in cdp_dev_stats
Change data type for byte count to uint64_t in cdp_dev_stats. Change-Id: I917df55f3c816351b6689d39c28ea9a01f76deb3 CRs-Fixed: 3166358
This commit is contained in:

committed by
Madan Koyyalamudi

parent
a32898f45b
commit
91fbf6db50
@@ -2175,23 +2175,23 @@ struct cdp_tx_completion_ppdu {
|
|||||||
/**
|
/**
|
||||||
* struct cdp_dev_stats - Network device stats structure
|
* struct cdp_dev_stats - Network device stats structure
|
||||||
* @tx_packets: Tx total packets transmitted
|
* @tx_packets: Tx total packets transmitted
|
||||||
* @tx_bytes : Tx total bytes transmitted
|
|
||||||
* @tx_errors : Tx error due to FW tx failure, Ring failure DMA etc
|
* @tx_errors : Tx error due to FW tx failure, Ring failure DMA etc
|
||||||
* @tx_dropped: Tx dropped is same as tx errors as above
|
* @tx_dropped: Tx dropped is same as tx errors as above
|
||||||
* @rx_packets: Rx total packets transmitted
|
* @rx_packets: Rx total packets transmitted
|
||||||
* @rx_bytes : Rx total bytes transmitted
|
|
||||||
* @rx_errors : Rx erros
|
* @rx_errors : Rx erros
|
||||||
* @rx_dropped: Rx dropped stats
|
* @rx_dropped: Rx dropped stats
|
||||||
|
* @tx_bytes : Tx total bytes transmitted
|
||||||
|
* @rx_bytes : Rx total bytes transmitted
|
||||||
*/
|
*/
|
||||||
struct cdp_dev_stats {
|
struct cdp_dev_stats {
|
||||||
uint32_t tx_packets;
|
uint32_t tx_packets;
|
||||||
uint32_t tx_bytes;
|
|
||||||
uint32_t tx_errors;
|
uint32_t tx_errors;
|
||||||
uint32_t tx_dropped;
|
uint32_t tx_dropped;
|
||||||
uint32_t rx_packets;
|
uint32_t rx_packets;
|
||||||
uint32_t rx_bytes;
|
|
||||||
uint32_t rx_errors;
|
uint32_t rx_errors;
|
||||||
uint32_t rx_dropped;
|
uint32_t rx_dropped;
|
||||||
|
uint64_t tx_bytes;
|
||||||
|
uint64_t rx_bytes;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user