You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2020. It is now read-only.
If the refcounting hasn't been successful, we try to mount every time we receive a mount request.
Before mounting, need to check if the volume with a given name is already mounted. If it is skip it.
If not checked and skipped, the second (and further) mount fails with resource busy error.
To check it appropriately, use the full volume name as the mount point. In case of short volume names, get the volume and use the full volume name.
Before mounting, check if the volume is already present in /proc/mounts. If it is, skip the mount. and return the mount point.
This also takes care of a volume getting mounted twice : one with a short name and one with a long name on a VM.
The text was updated successfully, but these errors were encountered:
1. Convert a short volume name to the long one. If required to a trip to vmdkops service
2. In every mount request, check if the volume is already mounted (info of /proc/mount)
3. refcount test which kills docker and verifies refcounting
Fixes#1220
1. Convert a short volume name to the long one. If required to a trip to vmdkops service
2. In every mount request, check if the volume is already mounted (info of /proc/mount)
3. refcount test which kills docker and verifies refcounting
Fixes#1220
If the refcounting hasn't been successful, we try to mount every time we receive a mount request.
Before mounting, need to check if the volume with a given name is already mounted. If it is skip it.
If not checked and skipped, the second (and further) mount fails with resource busy error.
To check it appropriately, use the full volume name as the mount point. In case of short volume names, get the volume and use the full volume name.
Before mounting, check if the volume is already present in /proc/mounts. If it is, skip the mount. and return the mount point.
This also takes care of a volume getting mounted twice : one with a short name and one with a long name on a VM.
The text was updated successfully, but these errors were encountered: