From e8d07ef2058baa04f42561533e121bf37c886e29 Mon Sep 17 00:00:00 2001 From: Serge Hallyn Date: Thu, 16 Jan 2014 08:41:44 -0600 Subject: [PATCH] shut up freezer_state Not being able to get freezer state is perfectly valid - if the container does not exist. The old version of freezer_state only reported an error on actually reading the cgroup file, but not on not finding a cgroup file. Leave it to the caller to report the error if it is important, since we don't actually know any useful info here anyway. Signed-off-by: Serge Hallyn --- src/lxc/cgroup.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/lxc/cgroup.c b/src/lxc/cgroup.c index c4022afbb..8ea347d27 100644 --- a/src/lxc/cgroup.c +++ b/src/lxc/cgroup.c @@ -2090,10 +2090,8 @@ int freeze_unfreeze(const char *name, int freeze, const char *lxcpath) lxc_state_t freezer_state(const char *name, const char *lxcpath) { char v[100]; - if (lxc_cgroup_get("freezer.state", v, 100, name, lxcpath) < 0) { - ERROR("Failed to get freezer state for %s:%s", lxcpath, name); + if (lxc_cgroup_get("freezer.state", v, 100, name, lxcpath) < 0) return -1; - } if (v[strlen(v)-1] == '\n') v[strlen(v)-1] = '\0';