summaryrefslogtreecommitdiff
path: root/mount-setup.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2010-04-21 14:04:32 +0200
committerLennart Poettering <lennart@poettering.net>2010-04-21 14:04:32 +0200
commit020379a7f7d2cca3ab37942db3d67d06c45083fe (patch)
tree7d665893a56f21c6ff18ff541673d0cf5fbf51fc /mount-setup.c
parent701cc384c283206a29b21e4e7302e5cf5f2d9433 (diff)
mount-setup: also consider /dev/mqueue an API mount
Diffstat (limited to 'mount-setup.c')
-rw-r--r--mount-setup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/mount-setup.c b/mount-setup.c
index d2a1d0a94..1b3d32bb3 100644
--- a/mount-setup.c
+++ b/mount-setup.c
@@ -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) {