You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(qemu_mps2_an385): increase stack size from 8KB to 24KB to prevent boot-time stack overflow
After commit f6e8d61, NetIface::new() is called during net::init() which
runs on the interrupt stack (CONFIG_STACK_SIZE=8KB). smoltcp::Interface::new()
internally performs a ~14KB memset in Fragmenter::new(), overflowing the 8KB
stack and corrupting the TLSF allocator's sentinel block.
Increase CONFIG_STACK_SIZE to 24KB across all three defconfig variants, and
bump the heap alignment in link.x from 8 to 16 bytes for correctness.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
0 commit comments