|
@@ -369,6 +369,37 @@ static void hdd_cm_set_default_wlm_mode(struct hdd_adapter *adapter)
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * hdd_cm_reset_udp_qos_upgrade_config() - Reset the threshold for UDP packet
|
|
|
+ * QoS upgrade.
|
|
|
+ * @adapter: adapter for which this configuration is to be applied
|
|
|
+ *
|
|
|
+ * Return: None
|
|
|
+ */
|
|
|
+static void hdd_cm_reset_udp_qos_upgrade_config(struct hdd_adapter *adapter)
|
|
|
+{
|
|
|
+ struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
+ bool reset;
|
|
|
+ QDF_STATUS status;
|
|
|
+
|
|
|
+ if (!hdd_ctx) {
|
|
|
+ hdd_err("hdd_ctx is NULL");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ status = ucfg_mlme_cfg_get_wlm_reset(hdd_ctx->psoc, &reset);
|
|
|
+ if (QDF_IS_STATUS_ERROR(status)) {
|
|
|
+ hdd_err("could not get the wlm reset flag");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (reset) {
|
|
|
+ adapter->upgrade_udp_qos_threshold = QCA_WLAN_AC_BK;
|
|
|
+ hdd_debug("UDP packets qos upgrade to: %d",
|
|
|
+ adapter->upgrade_udp_qos_threshold);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
static QDF_STATUS
|
|
|
hdd_cm_disconnect_complete_post_user_update(struct wlan_objmgr_vdev *vdev,
|
|
|
struct wlan_cm_discon_rsp *rsp)
|
|
@@ -395,6 +426,7 @@ hdd_cm_disconnect_complete_post_user_update(struct wlan_objmgr_vdev *vdev,
|
|
|
hdd_cm_set_default_wlm_mode(adapter);
|
|
|
__hdd_cm_disconnect_handler_post_user_update(adapter, vdev);
|
|
|
wlan_twt_concurrency_update(hdd_ctx);
|
|
|
+ hdd_cm_reset_udp_qos_upgrade_config(adapter);
|
|
|
|
|
|
return QDF_STATUS_SUCCESS;
|
|
|
}
|