On Thu, Feb 09, 2023 at 01:31:53PM +0100, Jan Kara wrote: > If the page is pinned, there's no point in trying to reclaim it. > Furthermore if the page is from the page cache we don't want to reclaim > fs-private data from the page because the pinning process may be writing > to the page at any time and reclaiming fs private info on a dirty page > can upset the filesystem (see link below). > > Link: https://lore.kernel.org/linux-mm/20180103100430.GE4911@xxxxxxxxxxxxxx OK, but now I'm confused. I've been told before that the reason we can't take pinned pages off the LRU list is that they need to be written back periodically for ... reasons. But now the pages are going to be skipped if they're found on the LRU list, so why is this better than taking them off the LRU list?