Yes, the 32 RLC retransmissions are not directly related to the receiver-side PDCP t-Reordering timer. Typically, the t-Reordering timer is designed only to account for all possible HARQ retransmission attempts, and a value of 200ms is usually more than sufficient. For example, in 4G networks, the reordering timer was often set to just 50 or 60ms.
To explain this with a practical example: imagine a user initiating three TCP connections simultaneously—TCP Stream 0 for an FTP download (a heavy file), TCP Stream 1 for browsing Facebook, and TCP Stream 2 for Instagram. If out-of-sequence data is observed in TCP Stream 0 and that data is held for a long time in the PDCP receiver due to reordering, the application services for the other two TCP streams will also be affected. The user may not be able to access the web at all during this time, as the receiver waits for the RLC retransmission to complete.
In such cases, it is better to allow the PDCP layer to forward the out-of-sequence data instead of holding it indefinitely. TCP is capable of handling retransmissions at the transport layer, and letting it do so helps avoid application-level service delays.
Regarding the second point, you’re referring to VoNR services, which primarily use UDP. As you know, UDP does not perform retransmissions, so there’s no real risk associated with delivering out-of-sequence packets to the UDP layer.
However, increasing the PDCP t-Reordering timer too much for Circuit-Switched (CS) type services may lead to issues such as silent calls—particularly during periods when the PDCP layer is holding data. A timer value of around 60ms is generally sufficient to account for all HARQ retransmissions, and it’s worth noting that VoNR does not use RLC retransmissions.
On the other hand, increasing the PDCP discard timer to 200ms is a reasonable approach, as it aligns with the typical round-trip delay budget for VoNR services.
All of this is based on my personal understanding. However, I can confidently say that matching the PDCP reordering timer with the full RLC retransmission duration, as suggested earlier, can lead to performance issues and missed expectations in the network.