Attention is currently required from: Tim Wawrzynczak, Angel Pons, Werner Zeh. Hello build bot (Jenkins), Subrata Banik, Paul Menzel, Tim Wawrzynczak, Angel Pons, Eric Lai,
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/63541
to look at the new patch set (#2).
Change subject: arch/x86/postcar_loader: Correct off-by-one of MTRR end address in log ......................................................................
arch/x86/postcar_loader: Correct off-by-one of MTRR end address in log
There is a log message in 'postcar_var_mtrr_set()' showing the used variable MTRRs which prints the start and the end address as well as the size of the MTRR region. Instead of the end address the next address after the end is computed which leads to a wrong log output.
This patch uses 'addr + size - 1' instead of 'addr + size' to compute the end address correctly.
Change-Id: I0ca292f9cf272564cb5ef1c4ea38f5c483605c94 Signed-off-by: Werner Zeh werner.zeh@siemens.com --- M src/arch/x86/postcar_loader.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/41/63541/2