[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <774275.1724770015@warthog.procyon.org.uk>
Date: Tue, 27 Aug 2024 15:46:55 +0100
From: David Howells <dhowells@...hat.com>
To: Jan Kara <jack@...e.cz>
cc: dhowells@...hat.com, Matthew Wilcox <willy@...radead.org>,
Steve French <sfrench@...ba.org>, netfs@...ts.linux.dev,
linux-cifs@...r.kernel.org, linux-fsdevel@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: The mapping->invalidate_lock, copy-offload and cifs
Hi Jann,
I'm looking at trying to fix cifs_file_copychunk_range(). Currently, it
invalidates the destination range, apart from a partial folio at either end
which will be flushed, and then tries the copy. But if the copy fails or can
only be partially completed (eg. ENOSPC), we lose any data in the destination
region, so I think it needs to be flushed and invalidated rather than just
being invalidated.
Now, we have filemap_invalidate_inode() which I can use to flush back and
invalidate the folios under the invalidate_lock (thereby avoiding the need for
launder_folio). However, that doesn't prevent mmap from reinstating the
destination folios with modifications whilst the copy is ongoing the moment
the invalidate_lock is dropped.
Question is: would it be reasonable to do the copy offload whilst holding the
invalidate_lock for the duration?
Thanks,
David
Powered by blists - more mailing lists