From a8c1b326600983abeabd41cbfa0c32ff84cf475a Mon Sep 17 00:00:00 2001 From: Fabricio Voznika Date: Thu, 28 May 2020 12:24:37 -0700 Subject: Automated rollback of changelist 309082540 PiperOrigin-RevId: 313636920 --- runsc/specutils/specutils.go | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) (limited to 'runsc/specutils') diff --git a/runsc/specutils/specutils.go b/runsc/specutils/specutils.go index 202518b58..837d5e238 100644 --- a/runsc/specutils/specutils.go +++ b/runsc/specutils/specutils.go @@ -311,19 +311,7 @@ func capsFromNames(names []string, skipSet map[linux.Capability]struct{}) (auth. // Is9PMount returns true if the given mount can be mounted as an external gofer. func Is9PMount(m specs.Mount) bool { - var isBind bool - switch m.Type { - case "bind": - isBind = true - default: - for _, opt := range m.Options { - if opt == "bind" || opt == "rbind" { - isBind = true - break - } - } - } - return isBind && m.Source != "" && IsSupportedDevMount(m) + return m.Type == "bind" && m.Source != "" && IsSupportedDevMount(m) } // IsSupportedDevMount returns true if the mount is a supported /dev mount. -- cgit v1.2.3