From: Davidlohr Bueso Date: Mon, 23 Aug 2010 14:17:36 +0000 (-0400) Subject: mount: Add more pseudo filesystems. X-Git-Tag: v2.19-rc1~354 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5adaf9f120131f030ce15c5a312746059608e762;p=thirdparty%2Futil-linux.git mount: Add more pseudo filesystems. Signed-off-by: Davidlohr Bueso --- diff --git a/mount/sundries.c b/mount/sundries.c index 1d9eb88ef7..98f46949e0 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; }