a4b143
From 9b69c0d07b0db38c181e35e52bcea0eb0dd21818 Mon Sep 17 00:00:00 2001
a4b143
From: Gao feng <gaofeng@cn.fujitsu.com>
a4b143
Date: Fri, 13 Sep 2013 11:17:06 +0800
a4b143
Subject: [PATCH] cgroup: correct the log information
a4b143
a4b143
it should be memory.soft_limit_in_bytes.
a4b143
---
a4b143
 src/core/cgroup.c | 2 +-
a4b143
 1 file changed, 1 insertion(+), 1 deletion(-)
a4b143
a4b143
diff --git a/src/core/cgroup.c b/src/core/cgroup.c
a4b143
index 9804227..08cb64b 100644
a4b143
--- a/src/core/cgroup.c
a4b143
+++ b/src/core/cgroup.c
a4b143
@@ -266,7 +266,7 @@ void cgroup_context_apply(CGroupContext *c, CGroupControllerMask mask, const cha
a4b143
                 sprintf(buf, "%" PRIu64 "\n", c->memory_soft_limit);
a4b143
                 r = cg_set_attribute("memory", path, "memory.soft_limit_in_bytes", buf);
a4b143
                 if (r < 0)
a4b143
-                        log_error("Failed to set memory.limit_in_bytes on %s: %s", path, strerror(-r));
a4b143
+                        log_error("Failed to set memory.soft_limit_in_bytes on %s: %s", path, strerror(-r));
a4b143
         }
a4b143
 
a4b143
         if (mask & CGROUP_DEVICE) {