From e2e2bed2a0a811838db1d711b6d1ed09d493d066 Mon Sep 17 00:00:00 2001 From: SamarV-121 Date: Fri, 23 Jun 2023 18:30:44 +0300 Subject: [PATCH] universal7885: add Task Profiles 1/2 --- .../configs/tasks/task_profiles.json | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 universal7885-common/configs/tasks/task_profiles.json diff --git a/universal7885-common/configs/tasks/task_profiles.json b/universal7885-common/configs/tasks/task_profiles.json new file mode 100644 index 0000000..78debf0 --- /dev/null +++ b/universal7885-common/configs/tasks/task_profiles.json @@ -0,0 +1,28 @@ +{ + "Profiles": [ + { + "Name": "HighPerformance", + "Actions": [ + { + "Name": "JoinCgroup", + "Params": { + "Controller": "cpuset", + "Path": "foreground" + } + } + ] + }, + { + "Name": "MaxPerformance", + "Actions": [ + { + "Name": "JoinCgroup", + "Params": { + "Controller": "cpuset", + "Path": "top-app" + } + } + ] + } + ] +}