|
@@ -8183,6 +8183,8 @@ static inline void hdd_pm_qos_update_request(struct hdd_context *hdd_ctx,
|
|
|
static inline void hdd_update_pm_qos_affine_cores(struct hdd_context *hdd_ctx)
|
|
|
{
|
|
|
hdd_ctx->pm_qos_req.type = PM_QOS_REQ_AFFINE_CORES;
|
|
|
+ qdf_cpumask_clear(&hdd_ctx->pm_qos_req.cpus_affine);
|
|
|
+ hdd_pm_qos_update_cpu_mask(&hdd_ctx->pm_qos_req.cpus_affine, false);
|
|
|
}
|
|
|
#else
|
|
|
static inline void hdd_update_pm_qos_affine_cores(struct hdd_context *hdd_ctx)
|
|
@@ -8194,6 +8196,8 @@ static inline void hdd_pm_qos_add_request(struct hdd_context *hdd_ctx)
|
|
|
hdd_update_pm_qos_affine_cores(hdd_ctx);
|
|
|
pm_qos_add_request(&hdd_ctx->pm_qos_req, PM_QOS_CPU_DMA_LATENCY,
|
|
|
PM_QOS_DEFAULT_VALUE);
|
|
|
+ hdd_info("Set cpu_mask %*pb for affine_cores",
|
|
|
+ cpumask_pr_args(&hdd_ctx->pm_qos_req.cpus_affine));
|
|
|
}
|
|
|
|
|
|
static inline void hdd_pm_qos_remove_request(struct hdd_context *hdd_ctx)
|