From c6ec9f8f514c93a64a2340164b1dc323616ee832 Mon Sep 17 00:00:00 2001 From: Shahid Laher Date: Wed, 20 Jan 2021 18:04:33 +0000 Subject: [PATCH] libmount: add vboxsf, virtiofs to pseudo filesystems Filesystems provided by a hypervisor for guest kernels: * vboxsf: Linux 5.6 * virtiofs: Linux 5.4 Signed-off-by: Shahid Laher --- libmount/src/utils.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libmount/src/utils.c b/libmount/src/utils.c index 92829ebb01..40f479fd17 100644 --- a/libmount/src/utils.c +++ b/libmount/src/utils.c @@ -333,7 +333,9 @@ int mnt_fstype_is_pseudofs(const char *type) "spufs", "sysfs", "tmpfs", - "tracefs" + "tracefs", + "vboxsf", + "virtiofs" }; assert(type); -- 2.47.3