]> git.baikalelectronics.ru Git - uboot.git/commit
fs/fat: Reduce stack usage
authorTom Rini <trini@konsulko.com>
Fri, 22 Sep 2017 11:37:43 +0000 (07:37 -0400)
committerTom Rini <trini@konsulko.com>
Fri, 22 Sep 2017 11:37:43 +0000 (07:37 -0400)
commitd32239991fb98390bc0551a2b0e3875d58a13fb2
tree1c23bcec4fbcb250aeb5667aff8287751abafaea
parentda0a00db4a3d4e996d260171984fb78b00a56363
fs/fat: Reduce stack usage

We have limited stack in SPL builds.  Drop itrblock and move to
malloc/free of itr to move this off of the stack.  As part of this fix a
double-free issue in fat_size().

Signed-off-by: Tom Rini <trini@konsulko.com>
---
Rework to use malloc/free as moving this to a global overflows some SH
targets.
fs/fat/fat.c