On Tue, Jun 06, 2023 at 04:51:40PM +1000, Dave Chinner wrote: > On Mon, Jun 05, 2023 at 07:56:59PM -0700, Roman Gushchin wrote: > > On Tue, Jun 06, 2023 at 11:24:32AM +1000, Dave Chinner wrote: > > > On Mon, Jun 05, 2023 at 05:38:27PM -0700, Roman Gushchin wrote: > > > > Isn't it possible to hide it from a user and call the second part from a work > > > > context automatically? > > > > > > Nope, because it has to be done before the struct shrinker is freed. > > > Those are embedded into other structures rather than being > > > dynamically allocated objects. > > > > This part we might consider to revisit, if it helps to solve other problems. > > Having an extra memory allocation (or two) per mount-point doesn't look > > that expensive. Again, iff it helps with more important problems. > > Ah, I guess if you're concerned about memory allocation overhead > during register_shrinker() calls then you really aren't familiar > with what register_shrinker() does on memcg and numa aware > shrinkers? What a nice way to agree with an idea :) > > Let's ignore the fact that we could roll the shrinker structure > allocation into the existing shrinker->nr_deferred array allocation > (so it's effectively a zero cost modification), and just look at > what a memcg enabled shrinker must initialise if it expands the > shrinker info array because the index returned from idr_alloc() > is larger than the current array: > > for each memcg { > for_each_node { > info = kvmalloc_node(); > rcu_assign_pointer(memcg->nodeinfo[nid]->shrinker_info, info); > } > } > > Hmmmm? > > So, there really isn't any additional cost, it completely decouples > the shrinker infrastructure from the subsystem shrinker > implementations, it enables the shrinker to control infrastructure > teardown independently of the subsystem that registered the > shrinker, and it still gives guarantees that the shrinker is never > run after unregister_shrinker() completes. What's not to like? Yep, this sounds like a good idea. Thanks.