Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[mrp] Make sure not all packet buffers are used for retransmissions (#…
…33334) (#33416) On constrained devices, the number of available packet buffers can be very low. During stress testing a device that has 8 buffers available, which is the default on many platforms, it was observed that the device would receive a lot of parallel read requests and then it would use all its buffers for responses. The responses would then be stored in the retransmission table, awaiting an ACK, but the ACK would never arrive because of lack of available buffers. Configure the retransmission table size to be less than the number of packet buffers to make sure that not all buffers are held by the retransmission entries, in which case the device is unable to receive an ACK and hence it becomes unavailable until any message times out. Signed-off-by: Damian Krolik <damian.krolik@nordicsemi.no> (cherry picked from commit 5078a93)
- Loading branch information