threadx icon indicating copy to clipboard operation
threadx copied to clipboard

tx_byte_pool service fragmentation problem

Open SeeDeer opened this issue 1 year ago • 3 comments
trafficstars

Test method:

  1. Thread A allocate memory blocks in a 1ms cycle (size takes a random value of 1~1024). When allocate fails, the thread is suspended; 2. Thread B release memory blocks in a 1~10ms cycle. When all memory blocks are released, Restore thread A.

image

As shown in the above test results,

tx_byte_allocate fail, rt:0x10 size:859 frag:208 available:2068 memory msg, frag:208 available:50184 memory msg, frag:208 available:98276 all memory be release, frag:208 available:102392

All memory blocks have been released, why is the frag field not reduced? Are memory blocks at adjacent addresses not merged?

Looking forward to your reply, thank you.

SeeDeer avatar Mar 10 '24 13:03 SeeDeer

Adjacent free memory blocks are merged together during a subsequent allocation search for a large enough free memory block. This process is called defragmentation.

https://learn.microsoft.com/en-us/azure/rtos/threadx/chapter3#memory-byte-pools

cyberxnomad avatar Mar 11 '24 02:03 cyberxnomad

As @xray-bit says, the defragmentation happens upon allocation scheme and not free scheme.

This is because in free time there is no need to waste time to look on other blocks, while in allocation time we anyway go block after block to find one that is big enough so meanwhile we also merge consecutive free blocks till we find big enough block and stop.

amgross avatar Mar 11 '24 07:03 amgross

OK, thanks for your reply.

SeeDeer avatar Mar 15 '24 08:03 SeeDeer

Closing this issue since a satisfactory answer has been provided.

fdesbiens avatar Feb 27 '25 16:02 fdesbiens