* lib/mountlist.c (ME_DUMMY_0):
additional dummy FS names for Linux systems.
- "devpts" PTY slave filesystem
- "fusectl" control filesystem for FUSE
- "mqueue" enumerates POSIX message queues
- "rpc_pipefs" kernel <-> userspace bridge for NFS
- "sysfs" is for exporting kernel objects
There are likely more dummy FSes I am not aware of.
---
lib/mountlist.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/lib/mountlist.c b/lib/mountlist.c
index d0fe1b2..1a21574 100644
--- a/lib/mountlist.c
+++ b/lib/mountlist.c
@@ -153,6 +153,12 @@
(strcmp (Fs_type, "autofs") == 0 \
|| strcmp (Fs_type, "proc") == 0 \
|| strcmp (Fs_type, "subfs") == 0 \
+ /* for Linux 2.6/3.x */ \
+ || strcmp (Fs_type, "devpts") == 0 \
+ || strcmp (Fs_type, "fusectl") == 0 \
+ || strcmp (Fs_type, "mqueue") == 0 \
+ || strcmp (Fs_type, "rpc_pipefs") == 0 \
+ || strcmp (Fs_type, "sysfs") == 0 \
/* for NetBSD 3.0 */ \
|| strcmp (Fs_type, "kernfs") == 0 \
/* for Irix 6.5 */ \
--
Eric Wong