Docker-DCO-1.1-Signed-off-by: Andrew Page <admwiggin@gmail.com> (github: tianon) Upstream-commit: 065dd231dd7d7858df982a8decfade9df936cf63 Component: engine
28 lines
564 B
Go
28 lines
564 B
Go
// +build linux,amd64
|
|
|
|
package devmapper
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
// FIXME: this is copy-pasted from the aufs driver.
|
|
// It should be moved into the core.
|
|
|
|
var Mounted = func(mountpoint string) (bool, error) {
|
|
mntpoint, err := osStat(mountpoint)
|
|
if err != nil {
|
|
if osIsNotExist(err) {
|
|
return false, nil
|
|
}
|
|
return false, err
|
|
}
|
|
parent, err := osStat(filepath.Join(mountpoint, ".."))
|
|
if err != nil {
|
|
return false, err
|
|
}
|
|
mntpointSt := toSysStatT(mntpoint.Sys())
|
|
parentSt := toSysStatT(parent.Sys())
|
|
return mntpointSt.Dev != parentSt.Dev, nil
|
|
}
|