diff options
author | gVisor bot <gvisor-bot@google.com> | 2021-09-21 05:38:20 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-09-21 05:38:20 +0000 |
commit | 88c6c5d6df320b543ac3c1355f5b0c0b4bd3eb8e (patch) | |
tree | 101e41977ebc64edaf3554543445ebef06bc9a08 /runsc/container | |
parent | e63e69b939d0634b4fe6e59644deeede6930ca82 (diff) | |
parent | e819029f3ad059bfc1635b7f2a196c332fa7532f (diff) |
Merge release-20210906.0-51-ge819029f3 (automated)
Diffstat (limited to 'runsc/container')
-rw-r--r-- | runsc/container/container.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runsc/container/container.go b/runsc/container/container.go index 50b0dd5e7..9c0004753 100644 --- a/runsc/container/container.go +++ b/runsc/container/container.go @@ -917,7 +917,7 @@ func (c *Container) createGoferProcess(spec *specs.Spec, conf *config.Config, bu // Add root mount and then add any other additional mounts. mountCount := 1 for _, m := range spec.Mounts { - if specutils.Is9PMount(m, conf.VFS2) { + if specutils.IsGoferMount(m, conf.VFS2) { mountCount++ } } |