You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Andre Puschmann a7911f0dab pdcp,rlc: refactor SDU queueing policy
this patch refactors the SDU queuing and dropping policy of the RLC and PDCP layer.
the previous design had issues when packets have been generated at a higher
rate above the PDCP than they could be consumed below the RLC.

When the RLC SDU queues were full, we allowed two policies, one to block on the write
and the other to drop the SDU. Both options are not ideal because they either
lead to a blocking stack thread or to lost PDCP PDUs.

To avoid this, this patch makes the following changes:

* PDCP monitors RLC's SDU queue and drops packets on its north-bound SAP if queues are full
  * a new method sdu_queue_is_full() has been added to the RLC interface for PDCP
* remove blocking write from pdcp and rlc write_sdu() interface
  * all writes into queues need to be non-blocking
  * if Tx queues are overflowing, SDUs are dropped above PDCP, not RLC
* log warning if RLC still needs to drop SDUs
  * this case should be avoided with the monitoring mechanism
5 years ago
..
asn1 SRSENB: fix MAC pending PHY config 5 years ago
common block_queue: add method to check if given queue is full 5 years ago
interfaces pdcp,rlc: refactor SDU queueing policy 5 years ago
mac mac_pdu: fix check of remaining length when adding new subheader to MAC PDU 5 years ago
phy Increase PUCCH detection threshold to avoid false alarms 5 years ago
radio fix compilation error 5 years ago
rrc using new rrc obj id util methods in handover code 5 years ago
test removal of stack handler interface 5 years ago
upper pdcp,rlc: refactor SDU queueing policy 5 years ago
CMakeLists.txt Updated copyright 5 years ago
build_info.h.in Updated copyright 5 years ago
config.h Updated copyright 5 years ago
srslte.h Initial Wiener channel estimator 5 years ago
version.h.in Updated copyright 5 years ago