Remove improper parentheses from calculation for available backing bytes. Wtihout this fix, the result will be incorrect due to rounding. Signed-off-by: Kristen Carlson Accardi <kristen@xxxxxxxxxxxxxxx> Acked-by: Jarkko Sakkinen <jarkko@xxxxxxxxxx> --- arch/x86/kernel/cpu/sgx/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/cpu/sgx/main.c b/arch/x86/kernel/cpu/sgx/main.c index 990f341bbd30..c4030fb608c6 100644 --- a/arch/x86/kernel/cpu/sgx/main.c +++ b/arch/x86/kernel/cpu/sgx/main.c @@ -881,7 +881,7 @@ static bool __init sgx_page_cache_init(void) return false; } - available_backing_bytes = total_epc_bytes * (sgx_overcommit_percent / 100); + available_backing_bytes = total_epc_bytes * sgx_overcommit_percent / 100; atomic_long_set(&sgx_nr_available_backing_pages, available_backing_bytes >> PAGE_SHIFT); return true; -- 2.20.1