diff options
author | moricho <ikeda.morito@gmail.com> | 2020-04-22 15:04:18 +0900 |
---|---|---|
committer | moricho <ikeda.morito@gmail.com> | 2020-04-26 17:24:34 +0900 |
commit | fc53d6436776d5de052075e98f44417f04ced7e7 (patch) | |
tree | f4f0c237595b0a6d9745cf6870abc4fb2917b92f /pkg | |
parent | 0b3166f6243472fbb72cc749c57d3a59aa481979 (diff) |
refactor and add test for bindmount
Signed-off-by: moricho <ikeda.morito@gmail.com>
Diffstat (limited to 'pkg')
-rw-r--r-- | pkg/sentry/fs/filesystems.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/sentry/fs/filesystems.go b/pkg/sentry/fs/filesystems.go index d6abddfd8..084da2a8d 100644 --- a/pkg/sentry/fs/filesystems.go +++ b/pkg/sentry/fs/filesystems.go @@ -144,10 +144,6 @@ type MountSourceFlags struct { // NoExec corresponds to mount(2)'s "MS_NOEXEC" and indicates that // binaries from this file system can't be executed. NoExec bool - - // Bind corresponds to mount(2)'s MS_BIND and indicates that - // the filesystem should be bind mounted. - Bind bool } // GenericMountSourceOptions splits a string containing comma separated tokens of the |