Commit e8d07ef2 by Serge Hallyn

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: 's avatarSerge Hallyn <serge.hallyn@ubuntu.com>
parent 38799354
...@@ -2090,10 +2090,8 @@ int freeze_unfreeze(const char *name, int freeze, const char *lxcpath) ...@@ -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) lxc_state_t freezer_state(const char *name, const char *lxcpath)
{ {
char v[100]; char v[100];
if (lxc_cgroup_get("freezer.state", v, 100, name, lxcpath) < 0) { if (lxc_cgroup_get("freezer.state", v, 100, name, lxcpath) < 0)
ERROR("Failed to get freezer state for %s:%s", lxcpath, name);
return -1; return -1;
}
if (v[strlen(v)-1] == '\n') if (v[strlen(v)-1] == '\n')
v[strlen(v)-1] = '\0'; v[strlen(v)-1] = '\0';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment