summaryrefslogtreecommitdiff
path: root/libpod/runtime_volume_linux.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-02-22 13:46:52 -0500
committerGitHub <noreply@github.com>2022-02-22 13:46:52 -0500
commitd3903a85910979d8212028cf814574047015db58 (patch)
treef132003f65fee6e2178f96c8a289ee97a41dfe5b /libpod/runtime_volume_linux.go
parentfab82a7c9ca3821c2b4496f9e9f6bfc8b2aff53d (diff)
parent4a60319ecb833fd4afd4ef32b3ca49c377a94b5c (diff)
downloadpodman-d3903a85910979d8212028cf814574047015db58.tar.gz
podman-d3903a85910979d8212028cf814574047015db58.tar.bz2
podman-d3903a85910979d8212028cf814574047015db58.zip
Merge pull request #13311 from mheon/remove_runtime_lock
Remove the runtime lock
Diffstat (limited to 'libpod/runtime_volume_linux.go')
-rw-r--r--libpod/runtime_volume_linux.go3
1 files changed, 0 insertions, 3 deletions
diff --git a/libpod/runtime_volume_linux.go b/libpod/runtime_volume_linux.go
index 5fd68fffb..c4fe3db90 100644
--- a/libpod/runtime_volume_linux.go
+++ b/libpod/runtime_volume_linux.go
@@ -21,9 +21,6 @@ import (
// NewVolume creates a new empty volume
func (r *Runtime) NewVolume(ctx context.Context, options ...VolumeCreateOption) (*Volume, error) {
- r.lock.Lock()
- defer r.lock.Unlock()
-
if !r.valid {
return nil, define.ErrRuntimeStopped
}