Blame SOURCES/coreutils-8.32-fuse-portal.patch

04161d
From 602fb566468d3837b7871c17a0fab1a20228d119 Mon Sep 17 00:00:00 2001
04161d
From: Kamil Dudka <kdudka@redhat.com>
04161d
Date: Mon, 7 Jun 2021 14:43:03 +0200
04161d
Subject: [PATCH] mountlist: recognize fuse.portal as dummy file system
04161d
04161d
This was originally proposed at:
04161d
04161d
    https://lists.gnu.org/archive/html/bug-gnulib/2021-02/msg00053.html
04161d
04161d
As the full review might take some time, would it be possible to apply
04161d
at least the part related to fuse.portal file systems?  They started to
04161d
cause problems recently:
04161d
04161d
    https://bugs.launchpad.net/ubuntu/+source/xdg-desktop-portal/+bug/1905623
04161d
    https://github.com/muesli/duf/issues/35
04161d
    https://bugzilla.redhat.com/1913358
04161d
04161d
Upstream-commit: 9a38d499ca16f2f4304992eb1ab0894cd0b478e1
04161d
Signed-off-by: Kamil Dudka <kdudka@redhat.com>
04161d
---
04161d
 lib/mountlist.c | 1 +
04161d
 1 file changed, 1 insertion(+)
04161d
04161d
diff --git a/lib/mountlist.c b/lib/mountlist.c
04161d
index e0227b7..e5f6b07 100644
04161d
--- a/lib/mountlist.c
04161d
+++ b/lib/mountlist.c
04161d
@@ -170,6 +170,7 @@
04161d
    || strcmp (Fs_type, "debugfs") == 0          \
04161d
    || strcmp (Fs_type, "devpts") == 0           \
04161d
    || strcmp (Fs_type, "fusectl") == 0          \
04161d
+   || strcmp (Fs_type, "fuse.portal") == 0      \
04161d
    || strcmp (Fs_type, "mqueue") == 0           \
04161d
    || strcmp (Fs_type, "rpc_pipefs") == 0       \
04161d
    || strcmp (Fs_type, "sysfs") == 0            \
04161d
-- 
04161d
2.31.1
04161d