diff options
| author | 2015-08-25 14:19:29 -0400 | |
|---|---|---|
| committer | 2015-08-25 14:19:29 -0400 | |
| commit | 20f1f4b5ffb870631bf4a4e7c7ba10e3528ae6a6 (patch) | |
| tree | d5349c9c4844e37eff6eda7c3a78d5d9970b9ee8 /include/linux/cgroup.h | |
| parent | cgroup: pids: fix invalid get/put usage (diff) | |
| parent | cgroup: introduce cgroup_subsys->legacy_name (diff) | |
| download | linux-dev-20f1f4b5ffb870631bf4a4e7c7ba10e3528ae6a6.tar.xz linux-dev-20f1f4b5ffb870631bf4a4e7c7ba10e3528ae6a6.zip | |
Merge branch 'for-4.3-unified-base' into for-4.3
Diffstat (limited to 'include/linux/cgroup.h')
| -rw-r--r-- | include/linux/cgroup.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/linux/cgroup.h b/include/linux/cgroup.h index a71fe2a3984e..eb7ca55f72ef 100644 --- a/include/linux/cgroup.h +++ b/include/linux/cgroup.h @@ -22,6 +22,15 @@ #ifdef CONFIG_CGROUPS +/* + * All weight knobs on the default hierarhcy should use the following min, + * default and max values. The default value is the logarithmic center of + * MIN and MAX and allows 100x to be expressed in both directions. + */ +#define CGROUP_WEIGHT_MIN 1 +#define CGROUP_WEIGHT_DFL 100 +#define CGROUP_WEIGHT_MAX 10000 + /* a css_task_iter should be treated as an opaque object */ struct css_task_iter { struct cgroup_subsys *ss; |
