52b84b
From 69dbbc29f26569fd09f0109e6fbebde98c0c8567 Mon Sep 17 00:00:00 2001
52b84b
From: Chris Down <chris@chrisdown.name>
52b84b
Date: Tue, 16 Apr 2019 18:44:05 +0100
52b84b
Subject: [PATCH] unit: Add DefaultMemoryMin
52b84b
52b84b
(cherry picked from commit 7ad5439e0663e39e36619957fa37eefe8026bcab)
52b84b
52b84b
Related: #1763435
52b84b
---
52b84b
 src/core/cgroup.c         |  3 +++
52b84b
 src/core/cgroup.h         |  4 ++++
52b84b
 src/core/dbus-cgroup.c    |  6 ++++++
52b84b
 src/core/load-fragment.c  | 11 +++++++++--
52b84b
 src/systemctl/systemctl.c |  2 ++
52b84b
 5 files changed, 24 insertions(+), 2 deletions(-)
52b84b
52b84b
diff --git a/src/core/cgroup.c b/src/core/cgroup.c
52b84b
index 46a89ff5e1..d40f9cbc2a 100644
52b84b
--- a/src/core/cgroup.c
52b84b
+++ b/src/core/cgroup.c
52b84b
@@ -220,6 +220,7 @@ void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix) {
52b84b
                 "%sStartupIOWeight=%" PRIu64 "\n"
52b84b
                 "%sBlockIOWeight=%" PRIu64 "\n"
52b84b
                 "%sStartupBlockIOWeight=%" PRIu64 "\n"
52b84b
+                "%sDefaultMemoryMin=%" PRIu64 "\n"
52b84b
                 "%sDefaultMemoryLow=%" PRIu64 "\n"
52b84b
                 "%sMemoryMin=%" PRIu64 "\n"
52b84b
                 "%sMemoryLow=%" PRIu64 "\n"
52b84b
@@ -248,6 +249,7 @@ void cgroup_context_dump(CGroupContext *c, FILE* f, const char *prefix) {
52b84b
                 prefix, c->startup_io_weight,
52b84b
                 prefix, c->blockio_weight,
52b84b
                 prefix, c->startup_blockio_weight,
52b84b
+                prefix, c->default_memory_min,
52b84b
                 prefix, c->default_memory_low,
52b84b
                 prefix, c->memory_min,
52b84b
                 prefix, c->memory_low,
52b84b
@@ -402,6 +404,7 @@ int cgroup_add_device_allow(CGroupContext *c, const char *dev, const char *mode)
52b84b
 }
52b84b
 
52b84b
 UNIT_DEFINE_ANCESTOR_MEMORY_LOOKUP(memory_low);
52b84b
+UNIT_DEFINE_ANCESTOR_MEMORY_LOOKUP(memory_min);
52b84b
 
52b84b
 static int lookup_block_device(const char *p, dev_t *ret) {
52b84b
         struct stat st;
52b84b
diff --git a/src/core/cgroup.h b/src/core/cgroup.h
52b84b
index a263d6a169..976224336d 100644
52b84b
--- a/src/core/cgroup.h
52b84b
+++ b/src/core/cgroup.h
52b84b
@@ -95,6 +95,7 @@ struct CGroupContext {
52b84b
         LIST_HEAD(CGroupIODeviceLimit, io_device_limits);
52b84b
         LIST_HEAD(CGroupIODeviceLatency, io_device_latencies);
52b84b
 
52b84b
+        uint64_t default_memory_min;
52b84b
         uint64_t default_memory_low;
52b84b
         uint64_t memory_min;
52b84b
         uint64_t memory_low;
52b84b
@@ -102,7 +103,9 @@ struct CGroupContext {
52b84b
         uint64_t memory_max;
52b84b
         uint64_t memory_swap_max;
52b84b
 
52b84b
+        bool default_memory_min_set;
52b84b
         bool default_memory_low_set;
52b84b
+        bool memory_min_set;
52b84b
         bool memory_low_set;
52b84b
 
52b84b
         LIST_HEAD(IPAddressAccessItem, ip_address_allow);
52b84b
@@ -195,6 +198,7 @@ Unit *manager_get_unit_by_cgroup(Manager *m, const char *cgroup);
52b84b
 Unit *manager_get_unit_by_pid_cgroup(Manager *m, pid_t pid);
52b84b
 Unit* manager_get_unit_by_pid(Manager *m, pid_t pid);
52b84b
 
52b84b
+uint64_t unit_get_ancestor_memory_min(Unit *u);
52b84b
 uint64_t unit_get_ancestor_memory_low(Unit *u);
52b84b
 
52b84b
 int unit_search_main_pid(Unit *u, pid_t *ret);
52b84b
diff --git a/src/core/dbus-cgroup.c b/src/core/dbus-cgroup.c
52b84b
index 2115d43b0c..e1278c317a 100644
52b84b
--- a/src/core/dbus-cgroup.c
52b84b
+++ b/src/core/dbus-cgroup.c
52b84b
@@ -669,6 +669,9 @@ int bus_cgroup_set_property(
52b84b
         if (streq(name, "MemoryLow"))
52b84b
                 return bus_cgroup_set_memory(u, name, &c->memory_low, message, flags, error);
52b84b
 
52b84b
+        if (streq(name, "DefaultMemoryMin"))
52b84b
+                return bus_cgroup_set_memory(u, name, &c->default_memory_min, message, flags, error);
52b84b
+
52b84b
         if (streq(name, "DefaultMemoryLow"))
52b84b
                 return bus_cgroup_set_memory(u, name, &c->default_memory_low, message, flags, error);
52b84b
 
52b84b
@@ -690,6 +693,9 @@ int bus_cgroup_set_property(
52b84b
         if (streq(name, "MemoryLowScale"))
52b84b
                 return bus_cgroup_set_memory_scale(u, name, &c->memory_low, message, flags, error);
52b84b
 
52b84b
+        if (streq(name, "DefaultMemoryMinScale"))
52b84b
+                return bus_cgroup_set_memory_scale(u, name, &c->default_memory_min, message, flags, error);
52b84b
+
52b84b
         if (streq(name, "DefaultMemoryLowScale"))
52b84b
                 return bus_cgroup_set_memory_scale(u, name, &c->default_memory_low, message, flags, error);
52b84b
 
52b84b
diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c
52b84b
index 20faed02ad..3b8ee6b124 100644
52b84b
--- a/src/core/load-fragment.c
52b84b
+++ b/src/core/load-fragment.c
52b84b
@@ -3102,9 +3102,16 @@ int config_parse_memory_limit(
52b84b
                         c->default_memory_low = CGROUP_LIMIT_MIN;
52b84b
                 else
52b84b
                         c->default_memory_low = bytes;
52b84b
-        } else if (streq(lvalue, "MemoryMin"))
52b84b
+        } else if (streq(lvalue, "DefaultMemoryMin")) {
52b84b
+                c->default_memory_min_set = true;
52b84b
+                if (isempty(rvalue))
52b84b
+                        c->default_memory_min = CGROUP_LIMIT_MIN;
52b84b
+                else
52b84b
+                        c->default_memory_min = bytes;
52b84b
+        } else if (streq(lvalue, "MemoryMin")) {
52b84b
                 c->memory_min = bytes;
52b84b
-        else if (streq(lvalue, "MemoryLow")) {
52b84b
+                c->memory_min_set = true;
52b84b
+        } else if (streq(lvalue, "MemoryLow")) {
52b84b
                 c->memory_low = bytes;
52b84b
                 c->memory_low_set = true;
52b84b
         } else if (streq(lvalue, "MemoryHigh"))
52b84b
diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c
52b84b
index 763ca0c6b7..e0db97e339 100644
52b84b
--- a/src/systemctl/systemctl.c
52b84b
+++ b/src/systemctl/systemctl.c
52b84b
@@ -3918,6 +3918,7 @@ typedef struct UnitStatusInfo {
52b84b
         uint64_t ip_ingress_bytes;
52b84b
         uint64_t ip_egress_bytes;
52b84b
 
52b84b
+        uint64_t default_memory_min;
52b84b
         uint64_t default_memory_low;
52b84b
 
52b84b
         LIST_HEAD(ExecStatusInfo, exec);
52b84b
@@ -5030,6 +5031,7 @@ static int show_one(
52b84b
                 { "Where",                          "s",              NULL,           offsetof(UnitStatusInfo, where)                             },
52b84b
                 { "What",                           "s",              NULL,           offsetof(UnitStatusInfo, what)                              },
52b84b
                 { "MemoryCurrent",                  "t",              NULL,           offsetof(UnitStatusInfo, memory_current)                    },
52b84b
+                { "DefaultMemoryMin",               "t",              NULL,           offsetof(UnitStatusInfo, default_memory_min)                },
52b84b
                 { "DefaultMemoryLow",               "t",              NULL,           offsetof(UnitStatusInfo, default_memory_low)                },
52b84b
                 { "MemoryMin",                      "t",              NULL,           offsetof(UnitStatusInfo, memory_min)                        },
52b84b
                 { "MemoryLow",                      "t",              NULL,           offsetof(UnitStatusInfo, memory_low)                        },