[PATCH 2/2] drivers: thermal: fix zero weighted request power

From: Chia-Hao Liu
Date: Wed May 29 2024 - 09:53:29 EST


When the product of weight and req_power is less than 1024,
the `frac_to_int()` macro causes the weighted_req_power to
become zero, it will cause granted_power to be zero.
To address issue, I add a check:
If the weight is less than 1024, frac_to_int() is not applied
to avoid setting the weighted_req_power to zero.

Signed-off-by: Chia-Hao Liu <a0921444212@xxxxxxxxx>
---
drivers/thermal/gov_power_allocator.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/thermal/gov_power_allocator.c b/drivers/thermal/gov_power_allocator.c
index 336b48745..c878cbb62 100644
--- a/drivers/thermal/gov_power_allocator.c
+++ b/drivers/thermal/gov_power_allocator.c
@@ -434,10 +434,10 @@ static void allocate_power(struct thermal_zone_device *tz, int control_temp)
else
weight = instance->weight;

- if (weight < 1024)
- pa->weighted_req_power = weight * pa->req_power;
+ if (weight < 1024)
+ pa->weighted_req_power = weight * pa->req_power;
else
- pa->weighted_req_power = frac_to_int(weight * pa->req_power);
+ pa->weighted_req_power = frac_to_int(weight * pa->req_power);

ret = cdev->ops->state2power(cdev, instance->lower,
&pa->max_power);
--
2.34.1