|
@@ -107,6 +107,46 @@ QDF_STATUS policy_mgr_get_pcl_for_existing_conn(
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
+QDF_STATUS policy_mgr_get_pcl_for_vdev_id(struct wlan_objmgr_psoc *psoc,
|
|
|
+ enum policy_mgr_con_mode mode,
|
|
|
+ uint32_t *pcl_ch, uint32_t *len,
|
|
|
+ uint8_t *pcl_weight,
|
|
|
+ uint32_t weight_len,
|
|
|
+ uint8_t vdev_id)
|
|
|
+{
|
|
|
+ struct policy_mgr_conc_connection_info
|
|
|
+ info[MAX_NUMBER_OF_CONC_CONNECTIONS] = { {0} };
|
|
|
+ uint8_t num_cxn_del = 0;
|
|
|
+
|
|
|
+ QDF_STATUS status = QDF_STATUS_SUCCESS;
|
|
|
+ struct policy_mgr_psoc_priv_obj *pm_ctx;
|
|
|
+
|
|
|
+ policy_mgr_debug("get pcl for existing conn:%d", mode);
|
|
|
+ pm_ctx = policy_mgr_get_context(psoc);
|
|
|
+ if (!pm_ctx) {
|
|
|
+ policy_mgr_err("Invalid Context");
|
|
|
+ return QDF_STATUS_E_FAILURE;
|
|
|
+ }
|
|
|
+ *len = 0;
|
|
|
+ qdf_mutex_acquire(&pm_ctx->qdf_conc_list_lock);
|
|
|
+ if (policy_mgr_mode_specific_connection_count(psoc, mode, NULL) > 0) {
|
|
|
+ /* Check, store and temp delete the mode's parameter */
|
|
|
+ policy_mgr_store_and_del_conn_info_by_vdev_id(psoc,
|
|
|
+ vdev_id,
|
|
|
+ info,
|
|
|
+ &num_cxn_del);
|
|
|
+ /* Get the PCL */
|
|
|
+ status = policy_mgr_get_pcl(psoc, mode, pcl_ch, len,
|
|
|
+ pcl_weight, weight_len);
|
|
|
+ policy_mgr_debug("Get PCL to FW for mode:%d", mode);
|
|
|
+ /* Restore the connection info */
|
|
|
+ policy_mgr_restore_deleted_conn_info(psoc, info, num_cxn_del);
|
|
|
+ }
|
|
|
+ qdf_mutex_release(&pm_ctx->qdf_conc_list_lock);
|
|
|
+
|
|
|
+ return status;
|
|
|
+}
|
|
|
+
|
|
|
void policy_mgr_decr_session_set_pcl(struct wlan_objmgr_psoc *psoc,
|
|
|
enum QDF_OPMODE mode,
|
|
|
uint8_t session_id)
|