64 lines
2.5 KiB
Diff
64 lines
2.5 KiB
Diff
From f7b462bacb3c0ed1f7bbe63193e9e349aafd21d3 Mon Sep 17 00:00:00 2001
|
|
From: Lennart Poettering <lennart@poettering.net>
|
|
Date: Tue, 20 Nov 2018 19:45:02 +0100
|
|
Subject: [PATCH] cgroup: use structured initialization
|
|
|
|
(cherry picked from commit de8a711a5849f9239c93aefa5554a62986dfce42)
|
|
|
|
Related: #1770379
|
|
---
|
|
src/core/cgroup.c | 33 +++++++++++++++++----------------
|
|
1 file changed, 17 insertions(+), 16 deletions(-)
|
|
|
|
diff --git a/src/core/cgroup.c b/src/core/cgroup.c
|
|
index ad8219bd79..7aa7db9261 100644
|
|
--- a/src/core/cgroup.c
|
|
+++ b/src/core/cgroup.c
|
|
@@ -71,29 +71,30 @@ static void cgroup_compat_warn(void) {
|
|
void cgroup_context_init(CGroupContext *c) {
|
|
assert(c);
|
|
|
|
- /* Initialize everything to the kernel defaults, assuming the
|
|
- * structure is preinitialized to 0 */
|
|
+ /* Initialize everything to the kernel defaults. */
|
|
|
|
- c->cpu_weight = CGROUP_WEIGHT_INVALID;
|
|
- c->startup_cpu_weight = CGROUP_WEIGHT_INVALID;
|
|
- c->cpu_quota_per_sec_usec = USEC_INFINITY;
|
|
+ *c = (CGroupContext) {
|
|
+ .cpu_weight = CGROUP_WEIGHT_INVALID,
|
|
+ .startup_cpu_weight = CGROUP_WEIGHT_INVALID,
|
|
+ .cpu_quota_per_sec_usec = USEC_INFINITY,
|
|
|
|
- c->cpu_shares = CGROUP_CPU_SHARES_INVALID;
|
|
- c->startup_cpu_shares = CGROUP_CPU_SHARES_INVALID;
|
|
+ .cpu_shares = CGROUP_CPU_SHARES_INVALID,
|
|
+ .startup_cpu_shares = CGROUP_CPU_SHARES_INVALID,
|
|
|
|
- c->memory_high = CGROUP_LIMIT_MAX;
|
|
- c->memory_max = CGROUP_LIMIT_MAX;
|
|
- c->memory_swap_max = CGROUP_LIMIT_MAX;
|
|
+ .memory_high = CGROUP_LIMIT_MAX,
|
|
+ .memory_max = CGROUP_LIMIT_MAX,
|
|
+ .memory_swap_max = CGROUP_LIMIT_MAX,
|
|
|
|
- c->memory_limit = CGROUP_LIMIT_MAX;
|
|
+ .memory_limit = CGROUP_LIMIT_MAX,
|
|
|
|
- c->io_weight = CGROUP_WEIGHT_INVALID;
|
|
- c->startup_io_weight = CGROUP_WEIGHT_INVALID;
|
|
+ .io_weight = CGROUP_WEIGHT_INVALID,
|
|
+ .startup_io_weight = CGROUP_WEIGHT_INVALID,
|
|
|
|
- c->blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID;
|
|
- c->startup_blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID;
|
|
+ .blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID,
|
|
+ .startup_blockio_weight = CGROUP_BLKIO_WEIGHT_INVALID,
|
|
|
|
- c->tasks_max = (uint64_t) -1;
|
|
+ .tasks_max = CGROUP_LIMIT_MAX,
|
|
+ };
|
|
}
|
|
|
|
void cgroup_context_free_device_allow(CGroupContext *c, CGroupDeviceAllow *a) {
|