diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-07-05 14:10:13 -0400 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-07-06 15:29:38 +0000 |
commit | eae800789631baa7d377568b2019abd8359cbf70 (patch) | |
tree | 871496913e9d248a4b57bea39c42a154013de416 /libpod/container_internal.go | |
parent | 99959e55fa8e902302a580b13d53bc52d0074ad7 (diff) | |
download | podman-eae800789631baa7d377568b2019abd8359cbf70.tar.gz podman-eae800789631baa7d377568b2019abd8359cbf70.tar.bz2 podman-eae800789631baa7d377568b2019abd8359cbf70.zip |
Remove per-container CGroup parents
Originally, it seemed like a good idea to place Conmon and the
container it managed under a shared CGroup, so we could manage
the two together. It's become increasingly clear that this is a
potential performance sore point, gains us little practical
benefit in managing Conmon, and adds extra steps to container
cleanup that interfere with Conmon postrun hooks.
Revert back to a shared CGroup for conmon processes under the
CGroup parent. This will retain per-pod conmon CGroups as well if
the pod is set to create a CGroup and act as CGroup parent for
its containers.
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #1051
Approved by: umohnani8
Diffstat (limited to 'libpod/container_internal.go')
-rw-r--r-- | libpod/container_internal.go | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/libpod/container_internal.go b/libpod/container_internal.go index 452be176c..94cd74c09 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -325,7 +325,6 @@ func resetState(state *containerState) error { state.Interfaces = nil state.Routes = nil state.BindMounts = make(map[string]string) - state.CgroupCreated = false return nil } @@ -561,7 +560,6 @@ func (c *Container) init(ctx context.Context) error { logrus.Debugf("Created container %s in OCI runtime", c.ID()) c.state.State = ContainerStateCreated - c.state.CgroupCreated = true if err := c.save(); err != nil { return err @@ -832,20 +830,6 @@ func (c *Container) cleanup() error { lastError = err } - if err := c.cleanupCgroups(); err != nil { - /* - if lastError != nil { - logrus.Errorf("Error cleaning up container %s CGroups: %v", c.ID(), err) - } else { - lastError = err - } - */ - // For now we are going to only warn on failures to clean up cgroups - // We have a conflict with running podman containers cleanup in same cgroup as container - logrus.Warnf("Ignoring Error cleaning up container %s CGroups: %v", c.ID(), err) - - } - // Unmount storage if err := c.cleanupStorage(); err != nil { if lastError != nil { |