]> git.ipfire.org Git - people/ms/systemd.git/commitdiff
mount-setup: also consider /dev/mqueue an API mount
authorLennart Poettering <lennart@poettering.net>
Wed, 21 Apr 2010 12:04:32 +0000 (14:04 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 21 Apr 2010 12:04:32 +0000 (14:04 +0200)
mount-setup.c

index d2a1d0a942b310b1af7496dad1e6ddedd8e3e2fe..1b3d32bb37f9faf162ddf154907baccbe27b8511 100644 (file)
@@ -50,6 +50,7 @@ static const MountPoint mount_table[] = {
         { "cgroup",      "/cgroup/debug",            "cgroup",      "debug",     MS_NOSUID|MS_NOEXEC|MS_NODEV, true },
         { "debugfs",     "/sys/kernel/debug",        "debugfs",     NULL,        MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
         { "binfmt_misc", "/proc/sys/fs/binfmt_misc", "binfmt_misc", NULL,        MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
+        { "mqueue",      "/dev/mqueue",              "mqueue",      NULL,        MS_NOSUID|MS_NOEXEC|MS_NODEV, false },
 };
 
 bool mount_point_is_api(const char *path) {