]> err.no Git - util-linux/commitdiff
mount: Add more pseudo filesystems.
authorDavidlohr Bueso <dave@gnu.org>
Mon, 23 Aug 2010 14:17:36 +0000 (10:17 -0400)
committerKarel Zak <kzak@redhat.com>
Fri, 27 Aug 2010 09:11:56 +0000 (11:11 +0200)
Signed-off-by: Davidlohr Bueso <dave@gnu.org>
mount/sundries.c

index 1d9eb88ef7b3d64a8c8f47bd06f4b40c54db88a4..98f46949e0b65f2e2845e8a64a664f798b2ec954 100644 (file)
@@ -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;
 }