summaryrefslogtreecommitdiff
path: root/cgroup.h
diff options
context:
space:
mode:
Diffstat (limited to 'cgroup.h')
-rw-r--r--cgroup.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/cgroup.h b/cgroup.h
index e290ffee9c..d27c063c12 100644
--- a/cgroup.h
+++ b/cgroup.h
@@ -37,6 +37,12 @@ struct CGroupBonding {
struct cgroup *cgroup;
+ /* For the Unit::cgroup_bondings list */
+ LIST_FIELDS(CGroupBonding, by_unit);
+
+ /* For the Manager::cgroup_bondings hashmap */
+ LIST_FIELDS(CGroupBonding, by_path);
+
/* When shutting down, remove cgroup? */
bool clean_up:1;
@@ -45,12 +51,6 @@ struct CGroupBonding {
/* Inherit parameters from parent group */
bool inherit:1;
-
- /* For the Unit::cgroup_bondings list */
- LIST_FIELDS(CGroupBonding, by_unit);
-
- /* For the Manager::cgroup_bondings hashmap */
- LIST_FIELDS(CGroupBonding, by_path);
};
int cgroup_bonding_realize(CGroupBonding *b);