|
@@ -2667,12 +2667,25 @@ static int hdd_twt_clear_session_traffic_stats(struct hdd_adapter *adapter,
|
|
|
return -EOPNOTSUPP;
|
|
|
}
|
|
|
|
|
|
+ if (ucfg_mlme_twt_is_command_in_progress(adapter->hdd_ctx->psoc,
|
|
|
+ &hdd_sta_ctx->conn_info.bssid,
|
|
|
+ WLAN_ALL_SESSIONS_DIALOG_ID,
|
|
|
+ WLAN_TWT_STATISTICS) ||
|
|
|
+ ucfg_mlme_twt_is_command_in_progress(adapter->hdd_ctx->psoc,
|
|
|
+ &hdd_sta_ctx->conn_info.bssid,
|
|
|
+ WLAN_ALL_SESSIONS_DIALOG_ID,
|
|
|
+ WLAN_TWT_CLEAR_STATISTICS)) {
|
|
|
+ hdd_warn("Already TWT statistics or clear statistics exists");
|
|
|
+ return -EALREADY;
|
|
|
+ }
|
|
|
+
|
|
|
if (!ucfg_mlme_is_twt_setup_done(adapter->hdd_ctx->psoc,
|
|
|
&hdd_sta_ctx->conn_info.bssid,
|
|
|
dialog_id)) {
|
|
|
hdd_debug("TWT session %d setup incomplete", dialog_id);
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
+
|
|
|
ret = wlan_cfg80211_mc_twt_clear_infra_cp_stats(adapter->vdev,
|
|
|
dialog_id, peer_mac);
|
|
|
|
|
@@ -2769,6 +2782,18 @@ static int hdd_twt_get_session_traffic_stats(struct hdd_adapter *adapter,
|
|
|
return -EOPNOTSUPP;
|
|
|
}
|
|
|
|
|
|
+ if (ucfg_mlme_twt_is_command_in_progress(adapter->hdd_ctx->psoc,
|
|
|
+ &hdd_sta_ctx->conn_info.bssid,
|
|
|
+ WLAN_ALL_SESSIONS_DIALOG_ID,
|
|
|
+ WLAN_TWT_STATISTICS) ||
|
|
|
+ ucfg_mlme_twt_is_command_in_progress(adapter->hdd_ctx->psoc,
|
|
|
+ &hdd_sta_ctx->conn_info.bssid,
|
|
|
+ WLAN_ALL_SESSIONS_DIALOG_ID,
|
|
|
+ WLAN_TWT_CLEAR_STATISTICS)) {
|
|
|
+ hdd_warn("Already TWT statistics or clear statistics exists");
|
|
|
+ return -EALREADY;
|
|
|
+ }
|
|
|
+
|
|
|
id = QCA_WLAN_VENDOR_ATTR_TWT_STATS_FLOW_ID;
|
|
|
if (tb[id])
|
|
|
dialog_id = (uint32_t)nla_get_u8(tb[id]);
|
|
@@ -2790,8 +2815,16 @@ static int hdd_twt_get_session_traffic_stats(struct hdd_adapter *adapter,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
+ ucfg_mlme_set_twt_command_in_progress(adapter->hdd_ctx->psoc,
|
|
|
+ &hdd_sta_ctx->conn_info.bssid,
|
|
|
+ dialog_id,
|
|
|
+ WLAN_TWT_STATISTICS);
|
|
|
qdf_status = hdd_twt_request_session_traffic_stats(adapter,
|
|
|
dialog_id, peer_mac);
|
|
|
+ ucfg_mlme_set_twt_command_in_progress(adapter->hdd_ctx->psoc,
|
|
|
+ &hdd_sta_ctx->conn_info.bssid,
|
|
|
+ dialog_id,
|
|
|
+ WLAN_TWT_NONE);
|
|
|
|
|
|
return qdf_status_to_os_return(qdf_status);
|
|
|
}
|