Skip to content

Commit

Permalink
Fix: add heap size to fix cpu 59-63 offline when linux smp bringup
Browse files Browse the repository at this point in the history
Signed-off-by: Xiaoguang Xing <[email protected]>
  • Loading branch information
xingxg2022 committed Aug 30, 2024
1 parent 7db1562 commit 103631e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/sbi/sbi_platform.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ struct sbi_platform_operations {

/** Platform default heap size */
#define SBI_PLATFORM_DEFAULT_HEAP_SIZE(__num_hart) \
(0x8000 + 0x800 * (__num_hart))
(0x8000 + 0x1000 * (__num_hart))

/** Representation of a platform */
struct sbi_platform {
Expand Down

0 comments on commit 103631e

Please sign in to comment.