rmnet_core: ethtool QMAP stats

Add QMAP(rmnet_ctl) RX/TX stats to the ethtool.

Change-Id: I730c6e06aaadba20d56485891408abfa1be8c27a
Signed-off-by: Weiyi Chen <quic_weiyic@quicinc.com>
Цей коміт міститься в:
Weiyi Chen
2022-03-14 17:03:26 -07:00
джерело ecd7f76efc
коміт d26ada23f9
3 змінених файлів з 41 додано та 2 видалено

Переглянути файл

@@ -1,5 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
/* Copyright (c) 2019-2021, The Linux Foundation. All rights reserved.
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*
* RMNET_CTL header
*
@@ -31,8 +32,10 @@ struct rmnet_ctl_client_if {
#ifdef RMNET_LA_PLATFORM
struct rmnet_ctl_client_if *rmnet_ctl_if(void);
int rmnet_ctl_get_stats(u64 *s, int n);
#else
inline struct rmnet_ctl_client_if *rmnet_ctl_if(void) {return NULL;};
static inline struct rmnet_ctl_client_if *rmnet_ctl_if(void) {return NULL;};
static inline int rmnet_ctl_get_stats(u64 *s, int n) {return 0;};
#endif /* RMNET_LA_PLATFORM */
#endif /* _RMNET_CTL_H_ */