]> git.baikalelectronics.ru Git - kernel.git/commit
x86/kaslr: Make the type of number of slots/slot areas consistent
authorArvind Sankar <nivedita@alum.mit.edu>
Tue, 28 Jul 2020 22:57:15 +0000 (18:57 -0400)
committerIngo Molnar <mingo@kernel.org>
Fri, 31 Jul 2020 09:08:17 +0000 (11:08 +0200)
commit778985577752d485cf9d558b91cf21e59582330d
treea935acc06537172038f7ce22e4de33997adfe70e
parent1b39f63467ef67c84572bd8e1b6f8216b4681dc7
x86/kaslr: Make the type of number of slots/slot areas consistent

The number of slots can be 'unsigned int', since on 64-bit, the maximum
amount of memory is 2^52, the minimum alignment is 2^21, so the slot
number cannot be greater than 2^31. But in case future processors have
more than 52 physical address bits, make it 'unsigned long'.

The slot areas are limited by MAX_SLOT_AREA, currently 100. It is
indexed by an int, but the number of areas is stored as 'unsigned long'.
Change both to 'unsigned int' for consistency.

Signed-off-by: Arvind Sankar <nivedita@alum.mit.edu>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Link: https://lore.kernel.org/r/20200728225722.67457-15-nivedita@alum.mit.edu
arch/x86/boot/compressed/kaslr.c