diff options
author | Guenter Roeck <[email protected]> | 2012-06-21 06:26:12 -0700 |
---|---|---|
committer | Guenter Roeck <[email protected]> | 2012-07-21 21:48:28 -0700 |
commit | 62867d491a27affee36194d4856564f2f4e12b3c (patch) | |
tree | c6befa5f0b75a14e1c36b932a433b05087f2a413 | |
parent | 58c3667d83376c2f3016465f59f22c19c8f846e1 (diff) |
hwmon: (fam15h_power) Fix unintentional integer overflow
Expression with two unsigned integer variables is calculated as unsigned integer
before it is converted to u64. This may result in an integer overflow.
Fix by typecasting the left operand to u64 before performing the left shift.
This patch addresses Coverity #402320: Unintentional integer overflow.
Signed-off-by: Guenter Roeck <[email protected]>
Acked-by: Jean Delvare <[email protected]>
Acked-by: Andreas Herrmann <[email protected]>
-rw-r--r-- | drivers/hwmon/fam15h_power.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/hwmon/fam15h_power.c b/drivers/hwmon/fam15h_power.c index 6b13f1a4dc27..2764b78a784b 100644 --- a/drivers/hwmon/fam15h_power.c +++ b/drivers/hwmon/fam15h_power.c @@ -67,7 +67,8 @@ static ssize_t show_power(struct device *dev, REG_TDP_LIMIT3, &val); tdp_limit = val >> 16; - curr_pwr_watts = (tdp_limit + data->base_tdp) << running_avg_range; + curr_pwr_watts = ((u64)(tdp_limit + + data->base_tdp)) << running_avg_range; curr_pwr_watts -= running_avg_capture; curr_pwr_watts *= data->tdp_to_watts; |