cpu/x86/mtrr: fix OVERFLOW_BEFORE_WIDEN
Integer handling issues: Potentially overflowing expression "1 << size_msb" with type "int" (32 bits, signed) is evaluated using 32-bit arithmetic, and then used in a context that expects an expression of type "uint64_t" (64 bits, unsigned). Fixes: CID 1435825 and 1435826 Signed-off-by: Jonathan Zhang <jonzhang@fb.com> Change-Id: If859521b44d9ec3ea744c751501b75d24e3b69e8 Reviewed-on: https://review.coreboot.org/c/coreboot/+/46711 Reviewed-by: Marc Jones <marc@marcjonesconsulting.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
bd21476f99
commit
8f594b7319
|
@ -484,9 +484,9 @@ static void calc_var_mtrr_range(struct var_mtrr_state *var_state,
|
|||
* size. The maximum size is calculated by a function of the
|
||||
* min base bit set and maximum size bit set. */
|
||||
if (addr_lsb > size_msb)
|
||||
mtrr_size = 1 << size_msb;
|
||||
mtrr_size = 1ULL << size_msb;
|
||||
else
|
||||
mtrr_size = 1 << addr_lsb;
|
||||
mtrr_size = 1ULL << addr_lsb;
|
||||
|
||||
if (var_state->prepare_msrs)
|
||||
prep_var_mtrr(var_state, base, mtrr_size, mtrr_type);
|
||||
|
|
Loading…
Reference in New Issue