diff options
author | Matthew Heon <mheon@redhat.com> | 2022-02-22 11:05:26 -0500 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2022-02-23 14:29:41 -0500 |
commit | 71b0909f2d71e542176a3e88111bf99c73d1f5cd (patch) | |
tree | 7fb7d7b2bbdf5120211b9f8c4d781c31fde593cc /libpod/networking_linux.go | |
parent | ee7cf3cc2c212ff7a24bda49f95d494d99eb3cd7 (diff) | |
download | podman-71b0909f2d71e542176a3e88111bf99c73d1f5cd.tar.gz podman-71b0909f2d71e542176a3e88111bf99c73d1f5cd.tar.bz2 podman-71b0909f2d71e542176a3e88111bf99c73d1f5cd.zip |
Remove the runtime lock
This primarily served to protect us against shutting down the
Libpod runtime while operations (like creating a container) were
happening. However, it was very inconsistently implemented (a lot
of our longer-lived functions, like pulling images, just didn't
implement it at all...) and I'm not sure how much we really care
about this very-specific error case?
Removing it also removes a lot of potential deadlocks, which is
nice.
[NO NEW TESTS NEEDED]
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'libpod/networking_linux.go')
-rw-r--r-- | libpod/networking_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/networking_linux.go b/libpod/networking_linux.go index 19d5c7f76..29b9941fe 100644 --- a/libpod/networking_linux.go +++ b/libpod/networking_linux.go @@ -320,7 +320,7 @@ func (r *RootlessNetNS) Cleanup(runtime *Runtime) error { // only if the netns is empty we know that we do not need cleanup return c.state.NetNS != nil } - ctrs, err := runtime.GetContainersWithoutLock(activeNetns) + ctrs, err := runtime.GetContainers(activeNetns) if err != nil { return err } |