From 29adf02352e596d987ca596be0d1cf31952baa66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20Dejean?= Date: Tue, 21 Feb 2006 09:06:40 +0000 Subject: [PATCH] Also ignores linprocfs, mfs and devfs. Closes #331856. Patch by Andreas * mountlist.c: (ignore_mount_entry): Also ignores linprocfs, mfs and devfs. Closes #331856. Patch by Andreas Kohn --- sysdeps/common/ChangeLog | 7 +++++++ sysdeps/common/mountlist.c | 3 +++ 2 files changed, 10 insertions(+) diff --git a/sysdeps/common/ChangeLog b/sysdeps/common/ChangeLog index 84a7b5d6..ce5bdb5c 100644 --- a/sysdeps/common/ChangeLog +++ b/sysdeps/common/ChangeLog @@ -1,3 +1,10 @@ +2006-02-21 Benoît Dejean + + * mountlist.c: (ignore_mount_entry): Also ignores linprocfs, mfs + and devfs. + Closes #331856. + Patch by Andreas Kohn + 2005-04-26 Jörgen Scheibengruber * mountlist.c: (ignore_mount_entry): Added tmpfs to ignore list. diff --git a/sysdeps/common/mountlist.c b/sysdeps/common/mountlist.c index b486b02a..e3825964 100644 --- a/sysdeps/common/mountlist.c +++ b/sysdeps/common/mountlist.c @@ -540,7 +540,10 @@ static gboolean ignore_mount_entry(const struct mount_entry *me) static const char ignored[][12] = { "autofs", "binfmt_misc", + "devfs", "devpts", + "linprocfs", + "mfs", "mntfs", "mqueue", "none",