commit | e0208619552219b277c9df7d2cb6470033ea0893 | [log] [tgz] |
---|---|---|
author | Lokesh Vutla <lokeshvutla@ti.com> | Sat Sep 19 15:00:17 2015 +0530 |
committer | Tom Rini <trini@konsulko.com> | Thu Oct 22 14:19:50 2015 -0400 |
tree | 94377984e0bae29e7cc3339143c2418f78b05dda | |
parent | 2c06c3ffef1731cbe0f1e20259b8587fb74b2e93 [diff] |
ARM: keystone2: spl: Fix stack allocation with CONFIG_SYS_MALLOC_F_LEN If CONFIG_SYS_MALLOC_F_LEN is enabled, the stack is moved down to the specified size to make the malloc function available before relocation. But on keystone platforms SYS_SPL_MALLOC is immediately preceding stack, which is causing an overlap with this config enabled. So leave a gap between malloc space and stack space. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>