From: Karel Zak Date: Wed, 15 Sep 2010 14:23:54 +0000 (+0200) Subject: libmount: add new pseudo filesystems X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5a6f7a92d790669943bcb0e77a99936a9712101;p=util-linux libmount: add new pseudo filesystems Signed-off-by: Karel Zak --- diff --git a/shlibs/mount/src/utils.c b/shlibs/mount/src/utils.c index 99b7d5e5..f48e533d 100644 --- a/shlibs/mount/src/utils.c +++ b/shlibs/mount/src/utils.c @@ -132,6 +132,10 @@ int mnt_fstype_is_pseudofs(const char *type) strcmp(type, "dlmfs") == 0 || strcmp(type, "cpuset") == 0 || strcmp(type, "securityfs") == 0 || + strcmp(type, "rpc_pipefs") == 0 || + strcmp(type, "fusectl") == 0 || + strcmp(type, "binfmt_misc") == 0 || + strcmp(type, "fuse.gvfs-fuse-daemon") == 0 || strcmp(type, "debugfs") == 0 || strcmp(type, "spufs") == 0) return 1;