diff options
author | Karel Zak <kzak@redhat.com> | 2010-09-15 16:23:54 +0200 |
---|---|---|
committer | Karel Zak <kzak@redhat.com> | 2011-01-03 12:28:42 +0100 |
commit | c5a6f7a92d790669943bcb0e77a99936a9712101 (patch) | |
tree | d232f59a9fbb81efdc3679bf6caa1f0078d8f933 /shlibs | |
parent | c83fd489e6a8b43339e39bbc3528b9771746ae32 (diff) | |
download | util-linux-old-c5a6f7a92d790669943bcb0e77a99936a9712101.tar.gz |
libmount: add new pseudo filesystems
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'shlibs')
-rw-r--r-- | shlibs/mount/src/utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; |