Skip to content

Commit

Permalink
kernel/cgroup: tuned uclamp values
Browse files Browse the repository at this point in the history
values were taken from https://gist.github.com/Panchajanya1999/7a4ffcbd428d25299723997724fb35d8

Signed-off-by: Cyber Knight <cyberknight755@gmail.com>
  • Loading branch information
cyberknight777 committed Sep 7, 2021
1 parent 7bd2ade commit e253849
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions kernel/cgroup/cpuset.c
Original file line number Diff line number Diff line change
Expand Up @@ -2128,10 +2128,10 @@ static void uclamp_set(struct kernfs_open_file *of,
const char *cs_name = cs->css.cgroup->kn->name;

static struct ucl_param tgts[] = {
{"top-app", "10", "100", 1, 1},
{"foreground", "0", "50", 0, 0},
{"background", "20", "100", 0, 0},
{"system-background", "0", "40", 0, 0},
{"top-app", "max", "10", 1, 1},
{"foreground", "50", "0", 0, 0},
{"background", "max", "20", 0, 0},
{"system-background", "40", "0", 0, 0},
{"camera-daemon", "50", "100", 1, 1},
};

Expand Down

0 comments on commit e253849

Please sign in to comment.