From e7305e4ea30406920fbf0d2cf7507c1e876a0d27 Mon Sep 17 00:00:00 2001 From: Darsey Litzenberger Date: Wed, 2 Oct 2019 17:29:05 -0700 Subject: [PATCH] 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 --- libmount/src/utils.c | 3 +++ 1 file changed, 3 insertions(+) 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", -- 2.39.2