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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 10 Sep 2019 09:33:53 +0000 (10:33 +0100)
commit5049632bc9580f790f03aab17a66eb5bb2b8829c
tree9913080f1b8014d757e612c1febd317b9c0241fe
parentb8727dff55f0add91ee37ef308d4a8fe4fc8cbbb
x86/boot/compressed/64: Fix missing initialization in find_trampoline_placement()

[ Upstream commit c96e8483cb2da6695c8b8d0896fe7ae272a07b54 ]

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: 0a46fff2f910 ("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
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/x86/boot/compressed/pgtable_64.c