52b84b
From abf2fb67dc3d7da8db030ea8b8db73a20acc08a9 Mon Sep 17 00:00:00 2001
52b84b
From: Michal Sekletar <msekleta@redhat.com>
52b84b
Date: Thu, 7 May 2020 17:23:30 +0200
52b84b
Subject: [PATCH] core/cgroup: fix return value of unit_cgorup_freezer_action()
52b84b
52b84b
We should return 0 only if current freezer state, as reported by the
52b84b
kernel, is already the desired state. Otherwise, we would dispatch
52b84b
return dbus message prematurely in bus_unit_method_freezer_generic().
52b84b
52b84b
Thanks to Frantisek Sumsal for reporting the issue.
52b84b
52b84b
(cherry picked from commit d910f4c2b2542544d7b187a09605da7a0f220837)
52b84b
52b84b
Related: #1830861
52b84b
---
52b84b
 src/core/cgroup.c | 2 +-
52b84b
 1 file changed, 1 insertion(+), 1 deletion(-)
52b84b
52b84b
diff --git a/src/core/cgroup.c b/src/core/cgroup.c
52b84b
index e7ae9273a6..2d819b8ebb 100644
52b84b
--- a/src/core/cgroup.c
52b84b
+++ b/src/core/cgroup.c
52b84b
@@ -2963,7 +2963,7 @@ int unit_cgroup_freezer_action(Unit *u, FreezerAction action) {
52b84b
         if (r < 0)
52b84b
                 return r;
52b84b
 
52b84b
-        return 0;
52b84b
+        return 1;
52b84b
 }
52b84b
 
52b84b
 static const char* const cgroup_device_policy_table[_CGROUP_DEVICE_POLICY_MAX] = {