On Fri, 3 Mar 2017, Matthew Wilcox wrote: > OK. So how about we have the following functions: > > bool can_free(void **objects, unsigned int nr); > void reclaim(void **objects, unsigned int nr); > > The callee can take references or whetever else is useful to mark > objects as being targetted for reclaim in 'can_free', but may not sleep, > and should not take a long time to execute (because we're potentially > delaying somebody in irq context). > > In reclaim, anything goes, no locks are held by slab, kmem_cache_alloc > can be called. When reclaim() returns, slab will evaluate the state > of the page and free it back to the page allocator if everything is > freed. Ok. That is pretty much how it works (aside from the naming, the refcounting is just what is commonly done to provide existence guarantees, you can do something else). The old patchset is available at https://lwn.net/Articles/371892/ -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>