From: Davidlohr Bueso Date: Mon, 23 Aug 2010 14:17:36 +0000 (-0400) Subject: mount: Add more pseudo filesystems. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5adaf9f120131f030ce15c5a312746059608e762;p=util-linux mount: Add more pseudo filesystems. Signed-off-by: Davidlohr Bueso --- 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; }