Message ID | 166924370539.1772793.13730698360771821317.stgit@warthog.procyon.org.uk (mailing list archive) |
---|---|
Headers | show |
Series | mm, netfs, fscache: Stop read optimisation when folio removed from pagecache | expand |
On Wed, Nov 23, 2022 at 2:48 PM David Howells <dhowells@redhat.com> wrote: > > I've also got rid of the bit clearances > from the network filesystem evict_inode functions as they doesn't seem to > be necessary. Well, the patches look superficially cleaner to me, at least. That "doesn't seem to be necessary" makes me a bit worried, and I'd have liked to see a more clear-cut "clearing it isn't necessary because X", but I _assume_ it's not necessary simply because the 'struct address_space" is released and never re-used. But making the lifetime of that bit explicit might just be a good idea. Linus
Linus Torvalds <torvalds@linux-foundation.org> wrote: > Well, the patches look superficially cleaner to me, at least. That > "doesn't seem to be necessary" makes me a bit worried, I meant that it doesn't cause a splat to appear in dmesg saying that an unexpected flag was left set. David