From 49fec706431a06cd7dbb845de1c824601144e2ad Mon Sep 17 00:00:00 2001 From: Xavier Simonart Date: Mon, 20 Dec 2021 13:06:08 +0000 Subject: Increase maximum latency supported by Early Loss Detection Early Loss Detection was supporting a maximum latency of 16k packets i.e. 1ms at 64 Bytes / 10Gbps. This has been increased by 64. Drawback is that early loss detection might take much longer (1 million packets) Signed-off-by: Xavier Simonart Change-Id: I3e8dae6a27e72e48757a66e0097d17be924211ad --- VNFs/DPPD-PROX/eld.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'VNFs/DPPD-PROX/eld.h') diff --git a/VNFs/DPPD-PROX/eld.h b/VNFs/DPPD-PROX/eld.h index 2731beb8..d3ec2f22 100644 --- a/VNFs/DPPD-PROX/eld.h +++ b/VNFs/DPPD-PROX/eld.h @@ -17,7 +17,7 @@ #ifndef _ELD_H_ #define _ELD_H_ -#define PACKET_QUEUE_BITS 14 +#define PACKET_QUEUE_BITS 20 #define PACKET_QUEUE_SIZE (1 << PACKET_QUEUE_BITS) #define PACKET_QUEUE_MASK (PACKET_QUEUE_SIZE - 1) -- cgit 1.2.3-korg