lib: sbi_scratch: zero out scratch memory on all harts
authorHeinrich Schuchardt <xypron.glpk@gmx.de>
Sat, 5 Jun 2021 12:22:43 +0000 (14:22 +0200)
committerAnup Patel <anup@brainfault.org>
Fri, 11 Jun 2021 08:29:48 +0000 (13:59 +0530)
commit1da3d80b5bc074fce077adc47c97f3179c0addd9
treeb1433f7e4f61955c7d62bb03a1603a5a449a6ff5
parent434198e3be65732d2a326b369377d4db732c1af8
lib: sbi_scratch: zero out scratch memory on all harts

In sbi_scratch_init() we determine the last hart. The index of the last
hart cannot exceed SBI_HARTMASK_MAX_BITS - 1. We should not initialize
last_hartid_having_scratch to a higher number to avoid buffer overflows
when using this value before calling sbi_scratch_init().

When allocating scratch memory in sbi_scratch_alloc_offset() we zero out
the allocated memory for all harts except for the last one. We should not
skip the last hart.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Anup Patel <anup.patel@wdc.com>
lib/sbi/sbi_scratch.c