On Tue, Aug 06, 2019 at 08:27:54AM -0400, Brian Foster wrote: > If you add a generic "defer work" knob to the shrinker mechanism, but > only process it as an "allocation context" check, I expect it could be > easily misused. For example, some shrinkers may decide to set the the > flag dynamically based on in-core state. Which is already the case. e.g. There are shrinkers that don't do anything because a try-lock fails. I haven't attempted to change them, but they are a clear example of how even ->scan_object to ->scan_object the shrinker context can change. > This will work when called from > some contexts but not from others (unrelated to allocation context), > which is confusing. Therefore, what I'm saying is that if the only > current use case is to defer work from shrinkers that currently skip > work due to allocation context restraints, this might be better codified > with something like the appended (untested) example patch. This may or > may not be a preferable interface to the flag, but it's certainly not an > overcomplication... I don't think this is the right way to go. I want the filesystem shrinkers to become entirely non-blocking so that we can dynamically decide on an object-by-object basis whether we can reclaim the object in GFP_NOFS context. That is, a clean XFS inode that requires no special cleanup can be reclaimed even in GFP_NOFS context. The problem we have is that dentry reclaim can drop the last reference to an inode, causing inactivation and hence modification. However, if it's only going to move to the inode LRU and not evict the inode, we can reclaim that dentry. Similarly for inodes - if evicting the inode is not going to block or modify the inode, we can reclaim the inode even under GFP_NOFS constraints. And the same for XFS indoes - it if's clean we can reclaim it, GFP_NOFS context or not. IMO, that's the direction we need to be heading in, and in those cases the "deferred work" tends towards a count of objects we could not reclaim during the scan because they require blocking work to be done. i.e. deferred work is a boolean now because the GFP_NOFS decision is boolean, but it's lays the ground work for deferred work to be integrated at a much finer-grained level in the shrinker scanning routines in future... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx