Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion plugins/housekeeping/csd-disk-space-helper.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,13 @@ csd_should_ignore_unix_mount (GUnixMountEntry *mount)
* purpose
*/

/* We also ignore network filesystems */
/* We also ignore network filesystems and FUSE-based
* network mounts. FUSE network filesystems (e.g. sshfs)
* can block on statvfs() when the remote host is
* unreachable, causing the process to enter
* uninterruptible sleep (D state) and preventing
* system suspend.
*/

const gchar *ignore_fs[] = {
"adfs",
Expand All @@ -56,6 +62,13 @@ csd_should_ignore_unix_mount (GUnixMountEntry *mount)
"devpts",
"ecryptfs",
"fdescfs",
"fuse.cephfuse",
"fuse.davfs2",
"fuse.glusterfs",
"fuse.gvfsd-fuse",
"fuse.rclone",
"fuse.s3fs",
"fuse.sshfs",
"gfs",
"gfs2",
"kernfs",
Expand Down