Page MenuHomeFreeBSD

fusefs: fix mmap'd writes in direct_io mode
ClosedPublic

Authored by asomers on Sep 20 2020, 3:15 AM.
Tags
None
Referenced Files
Unknown Object (File)
Mon, Mar 17, 10:59 AM
Unknown Object (File)
Sat, Mar 15, 11:28 AM
Unknown Object (File)
Mar 7 2025, 2:21 PM
Unknown Object (File)
Mar 5 2025, 1:29 AM
Unknown Object (File)
Feb 17 2025, 8:38 PM
Unknown Object (File)
Feb 14 2025, 2:00 AM
Unknown Object (File)
Jan 31 2025, 9:18 PM
Unknown Object (File)
Jan 24 2025, 4:57 PM
Subscribers

Details

Summary

fusefs: fix mmap'd writes in direct_io mode

If a FUSE server returns FOPEN_DIRECT_IO in response to FUSE_OPEN, that
instructs the kernel to bypass the page cache for that file. This feature
is also known by libfuse's name: "direct_io".

However, when accessing a file via mmap, there is no possible way to bypass
the cache completely. This change fixes a deadlock that would happen when
an mmap'd write tried to invalidate a portion of the cache, wrongly assuming
that a write couldn't possibly come from cache if direct_io were set.

Arguably, we could instead disable mmap for files with FOPEN_DIRECT_IO set.
But allowing it is less likely to cause user complaints, and is more in
keeping with the spirit of open(2), where O_DIRECT instructs the kernel to
"reduce", not "eliminate" cache effects.

PR: 247276

Test Plan

regression test included

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable