Re: [PATCH 3/4] mini-os: mm: reduce buddy allocator list administration data

2024-07-22 Thread Samuel Thibault
Juergen Gross, le lun. 22 juil. 2024 17:01:40 +0200, a ecrit: > Today the administration data for the buddy allocator's lists consists > of 2 arrays: one pointer array and one list element array for easier > handling of the lists' tails. > > Those arrays can be combined into one by dropping the po

[PATCH 3/4] mini-os: mm: reduce buddy allocator list administration data

2024-07-22 Thread Juergen Gross
Today the administration data for the buddy allocator's lists consists of 2 arrays: one pointer array and one list element array for easier handling of the lists' tails. Those arrays can be combined into one by dropping the pointer array and using a different list end indicator. Add enqueue and d