1
0
mirror of https://github.com/moby/moby.git synced 2025-12-12 10:01:33 +03:00
Files
moby/pkg/mount/mountinfo.go
Vincent Batts 91b4ac320f pkg/mount: include optional field
one linux, the optional field designates the sharedsubtree information,
if any.

Signed-off-by: Vincent Batts <vbatts@redhat.com>
2014-11-03 22:05:04 -05:00

8 lines
161 B
Go

package mount
type MountInfo struct {
Id, Parent, Major, Minor int
Root, Mountpoint, Opts, Optional string
Fstype, Source, VfsOpts string
}