]> git.karo-electronics.de Git - karo-tx-linux.git/commit
x86/efi: Fix off-by-one bug in EFI Boot Services reservation
authorDave Young <dyoung@redhat.com>
Fri, 20 Dec 2013 10:02:15 +0000 (18:02 +0800)
committerMatt Fleming <matt.fleming@intel.com>
Sat, 21 Dec 2013 15:29:26 +0000 (15:29 +0000)
commita7f84f03f660d93574ac88835d056c0d6468aebe
treedbc8727bcdfbfb8230cbd3ee19c6541562b2d7e8
parent3b2664964bc886ae9d5127c8d3708b1acc0626d2
x86/efi: Fix off-by-one bug in EFI Boot Services reservation

Current code check boot service region with kernel text region by:
start+size >= __pa_symbol(_text)
The end of the above region should be start + size - 1 instead.

I see this problem in ovmf + Fedora 19 grub boot:
text start: 1000000 md start: 800000 md size: 800000

Signed-off-by: Dave Young <dyoung@redhat.com>
Acked-by: Borislav Petkov <bp@suse.de>
Acked-by: Toshi Kani <toshi.kani@hp.com>
Tested-by: Toshi Kani <toshi.kani@hp.com>
Cc: stable@vger.kernel.org
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
arch/x86/platform/efi/efi.c