summaryrefslogtreecommitdiffstats
path: root/VNFs/DPPD-PROX/eld.h
diff options
context:
space:
mode:
authorXavier Simonart <simonartxavier@gmail.com>2021-12-20 13:06:08 +0000
committerXavier Simonart <simonartxavier@gmail.com>2021-12-30 10:46:30 +0000
commit49fec706431a06cd7dbb845de1c824601144e2ad (patch)
tree15428a260a6b6b7bf509d5559dcb3d910fa6397f /VNFs/DPPD-PROX/eld.h
parentb62cc323c97d429f5ea107845367de328012badd (diff)
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 <simonartxavier@gmail.com> Change-Id: I3e8dae6a27e72e48757a66e0097d17be924211ad
Diffstat (limited to 'VNFs/DPPD-PROX/eld.h')
-rw-r--r--VNFs/DPPD-PROX/eld.h2
1 files changed, 1 insertions, 1 deletions
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)