glib2/gunixmounts-Don-t-treat-ZFS-as-a-system-internal-fs.patch

36 lines
1.0 KiB
Diff
Raw Normal View History

2019-09-30 10:40:42 -04:00
From 624e99b9d6fa990a5b9afda771837aca7edadf8d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ant=C3=B3nio=20Fernandes?= <antoniojpfernandes@gmail.com>
Date: Mon, 26 Nov 2018 12:27:59 +0000
Subject: [PATCH 306/682] gunixmounts: Don't treat ZFS as a system internal fs
ZFS was originally added to the list of system internal filesystems by
commit 4cafadc955d1c37118ca269ea22bbd37f8f2a2ce.
The rationale from https://bugzilla.gnome.org/show_bug.cgi?id=542156
doesn't seem very solid, and now we have x-gvfs-hide for this.
Also, this may contribute for trash:/// ignoring `{zfs mount path}/.Trash/`
So, remove zfs from the ignore_fs array.
Closes https://gitlab.gnome.org/GNOME/glib/issues/1599
---
gio/gunixmounts.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/gio/gunixmounts.c b/gio/gunixmounts.c
index 3c32d0e89..cc905f2fc 100644
--- a/gio/gunixmounts.c
+++ b/gio/gunixmounts.c
@@ -344,7 +344,6 @@ g_unix_is_system_fs_type (const char *fs_type)
"sysfs",
"tmpfs",
"usbfs",
- "zfs",
NULL
};
--
2.19.1