diff options
author | Fabricio Voznika <fvoznika@google.com> | 2020-05-28 12:24:37 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-05-28 12:25:57 -0700 |
commit | a8c1b326600983abeabd41cbfa0c32ff84cf475a (patch) | |
tree | 237cc20f1a442177e398864f7d79e7c9ff5f03ee /runsc/boot/vfs.go | |
parent | 2fe14b484a662cdc8eec8d6dd5bd5fe6492ba630 (diff) |
Automated rollback of changelist 309082540
PiperOrigin-RevId: 313636920
Diffstat (limited to 'runsc/boot/vfs.go')
-rw-r--r-- | runsc/boot/vfs.go | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/runsc/boot/vfs.go b/runsc/boot/vfs.go index 147c901c4..fefeeff58 100644 --- a/runsc/boot/vfs.go +++ b/runsc/boot/vfs.go @@ -235,7 +235,7 @@ func (c *containerMounter) prepareMountsVFS2() ([]mountAndFD, error) { fd := -1 // Only bind mounts use host FDs; see // containerMounter.getMountNameAndOptionsVFS2. - if m.Type == bind || isBindMount(m) { + if m.Type == bind { fd = c.fds.remove() } mounts = append(mounts, mountAndFD{ @@ -305,10 +305,6 @@ func (c *containerMounter) getMountNameAndOptionsVFS2(conf *Config, m *mountAndF useOverlay bool ) - if isBindMount(m.Mount) { - m.Type = bind - } - switch m.Type { case devpts.Name, devtmpfs.Name, proc.Name, sys.Name: fsName = m.Type |