Re: [PATCH v3 0/4] malloc: Reduce size by initializing data at runtime

2023-10-01 Thread Sean Anderson
On 10/1/23 21:16, Simon Glass wrote: Hi Sean, On Thu, 28 Sept 2023 at 08:45, Sean Anderson wrote: In my efforts to get SPL to fit into flash after some changes I made, I noticed that av_ is one of the largest variables in SPL. As it turns out, we can generate it at runtime, and the code is al

Re: [PATCH v3 0/4] malloc: Reduce size by initializing data at runtime

2023-10-01 Thread Simon Glass
Hi Sean, On Thu, 28 Sept 2023 at 08:45, Sean Anderson wrote: > > In my efforts to get SPL to fit into flash after some changes I made, I > noticed that av_ is one of the largest variables in SPL. As it turns > out, we can generate it at runtime, and the code is already there. This > has the poten

[PATCH v3 0/4] malloc: Reduce size by initializing data at runtime

2023-09-28 Thread Sean Anderson
In my efforts to get SPL to fit into flash after some changes I made, I noticed that av_ is one of the largest variables in SPL. As it turns out, we can generate it at runtime, and the code is already there. This has the potential to save 1-2k across the board, for some (very) minor boot time incre