mirror of
https://github.com/opencontainers/runc.git
synced 2026-07-11 06:03:57 +08:00
mount: sysfs also doesn't need to be labelled like mqueue.
Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
+2
-6
@@ -95,7 +95,7 @@ func mount(m *configs.Mount, rootfs, mountLabel string) error {
|
||||
}
|
||||
|
||||
switch m.Device {
|
||||
case "proc":
|
||||
case "proc", "mqueue", "sysfs":
|
||||
if err := os.MkdirAll(dest, 0755); err != nil && !os.IsExist(err) {
|
||||
return err
|
||||
}
|
||||
@@ -116,14 +116,10 @@ func mount(m *configs.Mount, rootfs, mountLabel string) error {
|
||||
}
|
||||
}
|
||||
return nil
|
||||
case "mqueue", "devpts", "sysfs":
|
||||
case "devpts":
|
||||
if err := os.MkdirAll(dest, 0755); err != nil && !os.IsExist(err) {
|
||||
return err
|
||||
}
|
||||
if m.Device == "mqueue" {
|
||||
// mqueue should not be labeled, otherwise the mount will fail
|
||||
data = ""
|
||||
}
|
||||
return syscall.Mount(m.Source, dest, m.Device, uintptr(m.Flags), data)
|
||||
case "bind":
|
||||
stat, err := os.Stat(m.Source)
|
||||
|
||||
Reference in New Issue
Block a user