Module Name: src Committed By: martin Date: Mon Oct 2 13:29:59 UTC 2023
Modified Files: src/external/cddl/osnet/sys/kern [netbsd-10]: kmem.c Log Message: Pull up following revision(s) (requested by riastradh in ticket #383): external/cddl/osnet/sys/kern/kmem.c: revision 1.4 solaris: Use pool_cache_reclaim, not pool_cache_invalidate. pool_cache_invalidate invalidates cached objects, but doesn't return any backing pages to the underlying page allocator. pool_cache_reclaim does pool_cache_invalidate _and_ reutrns backing pages to the underlying page alloator, so it is actually useful for the page daemon to do when trying to free memory. PR kern/57558 To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.3.6.1 src/external/cddl/osnet/sys/kern/kmem.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.