diff options
author | Tom Rini <trini@konsulko.com> | 2023-11-29 11:16:13 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-29 11:16:13 -0500 |
commit | 6357cf0cc4eaded5326cd10bca359ade2969708a (patch) | |
tree | dc6aec5cbf781b09c13d85c8c2b8b9ef0aa88bde /common/stackprot.c | |
parent | 339d96822efad9e6e445959224b48375124741d8 (diff) | |
parent | 53a230001263e6aca89e7a1322f2c7adbee4d55e (diff) |
Merge branch '2023-11-29-assorted-platform-updates' into next
- Add a TFTP put test, a few TI Keystone 2 updates, fix stack-protector
for PowerPC, fixes in lib/slre, timer-uclass and pvblock.
Diffstat (limited to 'common/stackprot.c')
-rw-r--r-- | common/stackprot.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/stackprot.c b/common/stackprot.c index d5b70616655..6495951a773 100644 --- a/common/stackprot.c +++ b/common/stackprot.c @@ -18,3 +18,8 @@ void __stack_chk_fail(void) panic("Stack smashing detected in function:\n%p relocated from %p", ra, ra - gd->reloc_off); } + +void __stack_chk_fail_local(void) +{ + __stack_chk_fail(); +} |