]> git.baikalelectronics.ru Git - kernel.git/commit
x86/boot/compressed/64: Fix missing initialization in find_trampoline_placement()
authorKirill A. Shutemov <kirill.shutemov@linux.intel.com>
Mon, 26 Aug 2019 13:26:01 +0000 (16:26 +0300)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 27 Aug 2019 08:46:27 +0000 (10:46 +0200)
commit4010afd1d54fa8375161646a53b9cf8914b9a70b
tree7feceda783817fa7bc49bc7972c1f9789ad6ae1f
parenteb325bb20f58a9384563d7d7adad416e737a41c8
x86/boot/compressed/64: Fix missing initialization in find_trampoline_placement()

Gustavo noticed that 'new' can be left uninitialized if 'bios_start'
happens to be less or equal to 'entry->addr + entry->size'.

Initialize the variable at the begin of the iteration to the current value
of 'bios_start'.

Fixes: e7b6d5d0a311 ("x86/boot/compressed/64: Fix boot on machines with broken E820 table")
Reported-by: "Gustavo A. R. Silva" <gustavo@embeddedor.com>
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20190826133326.7cxb4vbmiawffv2r@box
arch/x86/boot/compressed/pgtable_64.c