aboutsummaryrefslogtreecommitdiff
path: root/config/odp-linux-generic.conf
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2023-02-24 09:39:16 +0200
committerGitHub <noreply@github.com>2023-02-24 09:39:16 +0200
commit0f2f3271f64b25d7ce101b7a5c82b7fc17ba2d32 (patch)
tree5d4df86a452c52b1421b8039835ec793ac4019c7 /config/odp-linux-generic.conf
parent282188e33695bb6863e289df61e0dfbd87ca205c (diff)
parentc7c99cfd5635da8c0afc7f3803ce6e1c82c3465b (diff)
Merge ODP v1.40.0.0v1.40.0.0_DPDK_19.11
Merge ODP linux-generic v1.40.0.0 into linux-dpdk.
Diffstat (limited to 'config/odp-linux-generic.conf')
-rw-r--r--config/odp-linux-generic.conf28
1 files changed, 27 insertions, 1 deletions
diff --git a/config/odp-linux-generic.conf b/config/odp-linux-generic.conf
index f8accd07f..df5328d1f 100644
--- a/config/odp-linux-generic.conf
+++ b/config/odp-linux-generic.conf
@@ -16,7 +16,7 @@
# Mandatory fields
odp_implementation = "linux-generic"
-config_file_version = "0.1.22"
+config_file_version = "0.1.25"
# System options
system: {
@@ -234,6 +234,32 @@ sched_basic: {
worker = 1
control = 1
}
+
+ # Ordered queue reorder stash size
+ #
+ # Number of events each thread can stash internally before having to
+ # wait for the right order context. Reorder stash can improve
+ # performance if threads process events in bursts. If 'order_stash_size'
+ # > 0, events may be dropped by the implementation if the target queue
+ # is full. To prevent this set 'order_stash_size' to 0.
+ order_stash_size = 512
+}
+
+stash: {
+ # Maximum number of stashes
+ max_num = 512
+
+ # Maximum number of objects in a stash
+ #
+ # The value may be rounded up by the implementation. For optimal memory
+ # usage set value to a power of two - 1.
+ max_num_obj = 4095
+
+ # Strict size
+ #
+ # When set to 0, application can attempt to store more handles into a
+ # stash than it specified in the creation parameters.
+ strict_size = 1
}
timer: {