aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorMatias Elo <matias.elo@nokia.com>2018-12-03 14:02:59 +0200
committerMaxim Uvarov <maxim.uvarov@linaro.org>2018-12-13 12:30:19 +0300
commitfa506eb75e23d33197efa719cbdd26d4e6a59ac7 (patch)
treee3f6b87a029c13ef2725c79fd373089476a491e8 /config
parent20c1f922a47c91d2bff0e8822a18c1ad0f4b3b43 (diff)
Port 297cd7e9f "linux-gen: config: add schedule group config file options"
Signed-off-by: Matias Elo <matias.elo@nokia.com> Reviewed-by: Bill Fischofer <bill.fischofer@linaro.org> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org>
Diffstat (limited to 'config')
-rw-r--r--config/odp-linux-dpdk.conf13
1 files changed, 12 insertions, 1 deletions
diff --git a/config/odp-linux-dpdk.conf b/config/odp-linux-dpdk.conf
index 01523d423..03cf21198 100644
--- a/config/odp-linux-dpdk.conf
+++ b/config/odp-linux-dpdk.conf
@@ -16,7 +16,7 @@
# Mandatory fields
odp_implementation = "linux-dpdk"
-config_file_version = "0.1.2"
+config_file_version = "0.1.3"
# Pool options
pool: {
@@ -84,4 +84,15 @@ sched_basic: {
burst_size_default = [ 32, 32, 32, 32, 32, 16, 8, 4]
burst_size_max = [255, 255, 255, 255, 255, 16, 16, 8]
+ # Automatically updated schedule groups
+ #
+ # API specification defines that ODP_SCHED_GROUP_ALL,
+ # _WORKER and _CONTROL are updated automatically. These options can be
+ # used to disable these group when not used. Set value to 0 to disable
+ # a group. Performance may improve when unused groups are disabled.
+ group_enable: {
+ all = 1
+ worker = 1
+ control = 1
+ }
}