From 5adaf9f120131f030ce15c5a312746059608e762 Mon Sep 17 00:00:00 2001 From: Davidlohr Bueso Date: Mon, 23 Aug 2010 10:17:36 -0400 Subject: [PATCH] mount: Add more pseudo filesystems. Signed-off-by: Davidlohr Bueso --- mount/sundries.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mount/sundries.c b/mount/sundries.c index 1d9eb88e..98f46949 100644 --- a/mount/sundries.c +++ b/mount/sundries.c @@ -256,7 +256,9 @@ is_pseudo_fs(const char *type) streq(type, "cgroup") || streq(type, "cpuset") || streq(type, "rpc_pipefs") || - streq(type, "devpts")) + streq(type, "devpts") || + streq(type, "securityfs") || + streq(type, "debugfs")) return 1; return 0; } -- 2.39.5