Re: [PATCH 2/7] fuse: Use filemap_invalidate_pages()
Miklos Szeredi <[email protected]>
| Newsgroups | dev.linux.lists.fuse-devel,org.kernel.vger.linux-block,org.kernel.vger.linux-btrfs,org.kernel.vger.linux-fsdevel,org.kernel.vger.linux-nfs,org.kvack.linux-mm |
|---|---|
| Message-ID | <CAJfpegv3Ak+qNLb=fTSCSz7-taQ3Ui-Hkmqgn4PaGPe=CR4cbQ@mail.gmail.com> |
On Mon, 24 Aug 2026 at 15:29, Matthew Wilcox <[email protected]> wrote: > > On Mon, Aug 24, 2026 at 11:05:46AM +0200, Miklos Szeredi wrote: > > Maybe add a variant that takes that lock? > > I don't understand what use that would be. As soon as that function > drops the lock, the pages could be reinstated. If the caller needs the > pages to not come back, it must need to hold the invalidate_lock across > the whole operation. invalidate_inode_pages2_range() together with launder_page guaranteed that no dirty data remained in the cache after that call. Yes, the pages can be reinstated after that but those need faults and the server can then serialize those against the invalidation. I don't see that guarantee with the filemap_write_and_wait_range() (with or without invalidate_lock actually) since the mapping can be dirtied again without the filesystem's knowledge. Am I missing something? Thanks, Miklos > > Before any filesystem people get funny ideas about closing the O_DIRECT > race, you can't do that because you'll deadlock on doing I/O to the same > file that you've mmaped.