qcacmn: Add support to extract vdev_extd_stats event

In case of MLO connection, firmware sends each vdev's
status information using extended vdev stats event.
Add support in driver to extract it.

Change-Id: I95f2a96cb7034b5b070cc6f37a97591e01e5893a
CRs-Fixed: 3483730
This commit is contained in:
Aditya Kodukula
2023-04-30 01:23:09 -07:00
committed by Madan Koyyalamudi
parent 054a0fc1e0
commit d0badcb989
2 changed files with 46 additions and 1 deletions

View File

@@ -4757,6 +4757,7 @@ typedef struct {
* @fd_fail_cnt: Toatl number of Fils discovery failed count
* @unsolicited_prb_succ_cnt: Successful unsolicited probe response frames cnt
* @unsolicited_prb_fail_cnt: Failed unsolictied probe response frames cnt
* @is_mlo_vdev_active: is the mlo vdev currently active
*/
struct wmi_host_vdev_prb_fils_stats {
uint32_t vdev_id;
@@ -4764,6 +4765,7 @@ struct wmi_host_vdev_prb_fils_stats {
uint32_t fd_fail_cnt;
uint32_t unsolicited_prb_succ_cnt;
uint32_t unsolicited_prb_fail_cnt;
bool is_mlo_vdev_active;
};
/**