mount: sysfs also doesn't need to be labelled like mqueue.

Signed-off-by: Mrunal Patel <mrunalp@gmail.com>
This commit is contained in:
Mrunal Patel 2015-03-16 14:05:20 -04:00
parent 71a57166c1
commit 3125b53b1a
1 changed files with 2 additions and 6 deletions

View File

@ -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)