Up to [cvs.NetBSD.org] / src / sys / kern
Request diff between arbitrary revisions
Default branch: MAIN
Current tag: netbsd-3-0
Revision 1.99.8.1.2.1 / (download) - annotate - [select for diffs], Fri Mar 10 13:19:48 2006 UTC (7 years, 3 months ago) by tron
Branch: netbsd-3-0
CVS Tags: netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE
Changes since 1.99.8.1: +32 -30
lines
Diff to previous 1.99.8.1 (colored) next main 1.99.8.2 (colored)
Pull up following revision(s) (requested by bjh21 in ticket #1192): sys/sys/pool.h: revision 1.48 sys/kern/subr_pool.c: revision 1.112 Medium-sized overhaul of POOL_SUBPAGE support so that: 1: I can understand it, and 2: It works. Notable externally-visible changes are that POOL_SUBPAGE now has to be a compile-time constant, and that trying to initialise a pool whose objects are larger than POOL_SUBPAGE automatically generates a pool that doesn't use subpages. NetBSD/acorn26 now boots multi-user again.
Revision 1.99.8.1 / (download) - annotate - [select for diffs], Sat Jun 18 11:13:12 2005 UTC (8 years ago) by tron
Branch: netbsd-3
CVS Tags: netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1
Branch point for: netbsd-3-0
Changes since 1.99: +114 -84
lines
Diff to previous 1.99 (colored)
Pull up revision 1.101 (requested by thorpej in ticket #474): Fix some locking issues: - Make the locking rules for pr_rmpage() sane, and don't modify fields protected by the pool lock without actually holding it. - Always defer freeing the pool page to the back-end allocator, to avoid invoking the pool_allocator with the pool locked (which would violate the pool_allocator -> pool locking order). - Fix pool_reclaim() to not violate the pool_cache -> pool locking order by using a trylock. Reviewed by Chuq Silvers.