diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-03-30 18:42:04 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-30 18:42:04 +0000 |
commit | 3edf00261b7d189adb751f3d22e98a0601dd3d83 (patch) | |
tree | 1735490aa1d46af77e69bab6233d25b308851d1a /runsc/boot | |
parent | 08cc017c088017546ed712cce700bf4374c864c0 (diff) | |
parent | 71f3dccbb3d47cbf572afe0737a29c8d87fde9c9 (diff) |
Merge release-20210322.0-30-g71f3dccbb (automated)
Diffstat (limited to 'runsc/boot')
-rw-r--r-- | runsc/boot/fs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/boot/fs.go b/runsc/boot/fs.go index 32adde643..19ced9b0e 100644 --- a/runsc/boot/fs.go +++ b/runsc/boot/fs.go @@ -110,7 +110,7 @@ func compileMounts(spec *specs.Spec, vfs2Enabled bool) []specs.Mount { // Mount all submounts from the spec. for _, m := range spec.Mounts { - if !vfs2Enabled && !specutils.IsVFS1SupportedDevMount(m) { + if !specutils.IsSupportedDevMount(m, vfs2Enabled) { log.Warningf("ignoring dev mount at %q", m.Destination) continue } |