From: Darsey Litzenberger Date: Thu, 3 Oct 2019 00:29:05 +0000 (-0700) Subject: libmount: Recognize more FUSE pseudofs (avfsd, lxcfs, vmware-vmblock) X-Git-Tag: v2.35-rc1~179^2 X-Git-Url: http://git.ipfire.org/?p=thirdparty%2Futil-linux.git;a=commitdiff_plain;h=e7305e4ea30406920fbf0d2cf7507c1e876a0d27 libmount: Recognize more FUSE pseudofs (avfsd, lxcfs, vmware-vmblock) General info about these filesystems: * fuse.avfsd: https://sourceforge.net/projects/avf/ * fuse.lxcfs: https://linuxcontainers.org/lxcfs/ * fuse.vmware-vmblock: https://github.com/vmware/open-vm-tools Signed-off-by: Darsey Litzenberger --- diff --git a/libmount/src/utils.c b/libmount/src/utils.c index 1cd8329fcc..708da2e008 100644 --- a/libmount/src/utils.c +++ b/libmount/src/utils.c @@ -287,11 +287,14 @@ int mnt_fstype_is_pseudofs(const char *type) "efivarfs", "fuse", /* Fallback name of fuse used by many poorly written drivers. */ "fuse.archivemount", /* Not a true pseudofs (has source), but source is not reported. */ + "fuse.avfsd", /* Not a true pseudofs (has source), but source is not reported. */ "fuse.dumpfs", /* In fact, it is a netfs, but source is not reported. */ "fuse.encfs", /* Not a true pseudofs (has source), but source is not reported. */ "fuse.gvfs-fuse-daemon", /* Old name, not used by gvfs any more. */ "fuse.gvfsd-fuse", + "fuse.lxcfs", "fuse.rofiles-fuse", + "fuse.vmware-vmblock", "fuse.xwmfs", "fusectl", "hugetlbfs",