diff options
author | Kir Kolyshkin <kolyshkin@gmail.com> | 2020-03-31 01:59:44 -0700 |
---|---|---|
committer | Kir Kolyshkin <kolyshkin@gmail.com> | 2020-04-02 07:52:34 -0700 |
commit | e0614367ca27c2e47649e08291e0f1d19d42232e (patch) | |
tree | 8eeb95dd01fc5bed27cd08ffc61244950bed7d56 /libpod | |
parent | f2c42a3958d12b45375aeb2384a3a8a103203c1c (diff) | |
download | podman-e0614367ca27c2e47649e08291e0f1d19d42232e.tar.gz podman-e0614367ca27c2e47649e08291e0f1d19d42232e.tar.bz2 podman-e0614367ca27c2e47649e08291e0f1d19d42232e.zip |
pkg/spec.InitFSMounts: optimize
Instead of getting mount options from /proc/self/mountinfo, which is
very costly to read/parse (and can even be unreliable), let's use
statfs(2) to figure out the flags we need.
[v2: move getting default options to pkg/util, make it linux-specific]
Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com>
Diffstat (limited to 'libpod')
-rw-r--r-- | libpod/options.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/options.go b/libpod/options.go index dfbec364a..65a089131 100644 --- a/libpod/options.go +++ b/libpod/options.go @@ -1334,7 +1334,7 @@ func WithNamedVolumes(volumes []*ContainerNamedVolume) CtrCreateOption { } destinations[vol.Dest] = true - mountOpts, err := util.ProcessOptions(vol.Options, false, nil) + mountOpts, err := util.ProcessOptions(vol.Options, false, "") if err != nil { return errors.Wrapf(err, "error processing options for named volume %q mounted at %q", vol.Name, vol.Dest) } |