mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
c4bd13b650
This fixes issues where the underlying filesystem may be disconnected and
attempting to unmount may cause a hang.
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
(cherry picked from commit acbfe6bc56
)
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
31 lines
518 B
Go
31 lines
518 B
Go
// +build !linux,!freebsd freebsd,!cgo solaris,!cgo
|
|
|
|
package mount
|
|
|
|
// These flags are unsupported.
|
|
const (
|
|
BIND = 0
|
|
DIRSYNC = 0
|
|
MANDLOCK = 0
|
|
NOATIME = 0
|
|
NODEV = 0
|
|
NODIRATIME = 0
|
|
NOEXEC = 0
|
|
NOSUID = 0
|
|
UNBINDABLE = 0
|
|
RUNBINDABLE = 0
|
|
PRIVATE = 0
|
|
RPRIVATE = 0
|
|
SHARED = 0
|
|
RSHARED = 0
|
|
SLAVE = 0
|
|
RSLAVE = 0
|
|
RBIND = 0
|
|
RELATIME = 0
|
|
RELATIVE = 0
|
|
REMOUNT = 0
|
|
STRICTATIME = 0
|
|
SYNCHRONOUS = 0
|
|
RDONLY = 0
|
|
mntDetach = 0
|
|
)
|