From 5cecb40410ef90734770f2b5ab64a5be0376cf87 Mon Sep 17 00:00:00 2001 From: Francisco Date: Thu, 29 Apr 2021 12:01:45 +0100 Subject: [PATCH] rlc,bugfix - increase pdcp sn notification ack list maximum size --- lib/include/srsran/interfaces/pdcp_interface_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/include/srsran/interfaces/pdcp_interface_types.h b/lib/include/srsran/interfaces/pdcp_interface_types.h index f51e232a4..15ba28a54 100644 --- a/lib/include/srsran/interfaces/pdcp_interface_types.h +++ b/lib/include/srsran/interfaces/pdcp_interface_types.h @@ -175,7 +175,7 @@ struct pdcp_lte_state_t { // Custom type for interface between PDCP and RLC to convey SDU delivery status // Arbitrarily chosen limit, optimal value depends on the RLC (pollPDU) and PDCP config, channel BLER, // traffic characterisitcs, etc. The chosen value has been tested with 100 PRB bi-dir TCP -#define MAX_SDUS_TO_NOTIFY (1024) +#define MAX_SDUS_TO_NOTIFY (4096) typedef srsran::bounded_vector pdcp_sn_vector_t; } // namespace srsran