diff options
| author | Bin Meng <[email protected]> | 2020-03-12 22:39:53 -0700 |
|---|---|---|
| committer | Anup Patel <[email protected]> | 2020-03-14 09:13:20 +0530 |
| commit | 2343efd0401c329187f1375114b79dd2fb102e55 (patch) | |
| tree | 8a33f4333728ed1daecffb785733f5e12e8d2298 | |
| parent | 9275ed39492a3924a780a24a2c85b97807726965 (diff) | |
platform: Set per-HART stack size to 8KB in the template platform codes
The template platform codes should set per-HART stack size to 8KB
to avoid possible mistakes of future platform ports.
Signed-off-by: Bin Meng <[email protected]>
Reviewed-by: Anup Patel <[email protected]>
| -rw-r--r-- | platform/template/platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/template/platform.c b/platform/template/platform.c index 60b65ea9..74ac9f46 100644 --- a/platform/template/platform.c +++ b/platform/template/platform.c @@ -223,6 +223,6 @@ const struct sbi_platform platform = { .name = "platform-name", .features = SBI_PLATFORM_DEFAULT_FEATURES, .hart_count = 1, - .hart_stack_size = 4096, + .hart_stack_size = 8192, .platform_ops_addr = (unsigned long)&platform_ops }; |
