| Age | Commit message (Expand) | Author |
| 2004-01-09 | Add a new pool initialization flag, PR_IMMEDRELEASE. This flag causes | thorpej |
| 2003-12-29 | pool_prime_page: initialize ph_time to mono_time instead of zero | yamt |
| 2003-11-13 | two changes in improve scalability: | chs |
| 2003-04-09 | Add the ability for pool caches to cache the physical address of | thorpej |
| 2003-03-16 | Only define POOL_LOGSIZE/pool_size if POOL_DIAGNOSTIC is defined. | matt |
| 2003-02-23 | Use splvm() instead of splhigh() when accessing the internal page header pool. | pk |
| 2003-01-18 | Merge the nathanw_sa branch. | thorpej |
| 2002-11-24 | Quell uninitialised variable warnings. | scw |
| 2002-11-09 | Fix signed/unsigned comparison warnings. | thorpej |
| 2002-11-08 | Parse the modifier of ddb command as documented. | enami |
| 2002-09-27 | remove trailing \n in panic(). approved perry. | provos |
| 2002-08-25 | Fix signed/unsigned comparison warnings from GCC 3.3. | thorpej |
| 2002-07-30 | Bring down a fix from the "newlock" branch, slightly modified: | thorpej |
| 2002-07-11 | Add wchan to a panic (must have NOWAIT). | matt |
| 2002-03-13 | Move 'struct pool_cache_group' definition into <sys/pool.h> | simonb |
| 2002-03-13 | Remove two instances of an "error" variable that is only ever assigned to | simonb |
| 2002-03-09 | Put back pool_prime(); the i386 mp pmap uses it. | thorpej |
| 2002-03-09 | Fix a couple of typos in simple_{,un}lock()'s. | thorpej |
| 2002-03-09 | Remove pool_prime(). Nothing uses it, and how it should be used it not | thorpej |
| 2002-03-09 | If, when a page becomes idle, the backend allocator is waiting for | thorpej |
| 2002-03-09 | Remove PR_MALLOCOK and PR_STATIC. The former wasn't actually used, | thorpej |
| 2002-03-08 | Add a missing simple_unlock. | thorpej |
| 2002-03-08 | Add an optional "drain" client callback, which can be set by the new | thorpej |
| 2002-03-08 | Remove PR_FREEHEADER; nothing uses it anymore. | thorpej |
| 2002-03-08 | Pool deals fairly well with physical memory shortage, but it doesn't | thorpej |
| 2001-11-20 | Call pr_log(PRLOG_GET) when POOL_DIAGNOSTIC is defined instead of DIAGNOSTIC | enami |
| 2001-11-12 | add RCSIDs | lukem |
| 2001-10-21 | in pool_drain(), call pool_reclaim() while we still have interrupts blocked | chs |
| 2001-10-07 | Add support for allocating pool memory in units smaller than a whole page. | bjh21 |
| 2001-09-26 | jump through hoops to avoid calling uvm_km_free_poolpage() while holding | chs |
| 2001-07-01 | Protect the `pool cache group' pool with splvm(), so that pool caches | thorpej |
| 2001-06-05 | Do the reentrancy checking if POOL_DIAGNOSTIC, not DIAGNOSTIC. Prevents | thorpej |
| 2001-06-05 | Assert that no locks are held if we're called with PR_WAITOK. | thorpej |
| 2001-05-13 | Make this build again ifdef DIAGNOSTIC (oops) | sommerfeld |
| 2001-05-13 | Remove pool reentrancy testing overhead unless DIAGNOSTIC is defined. | sommerfeld |
| 2001-05-10 | Rearrange the code that adds pages of objects to the pool; require | thorpej |
| 2001-05-10 | Use POOL_NEEDS_CATCHUP() in one more place. | thorpej |
| 2001-05-10 | Encapsulate the test for a pool needing a pool_catchup() in a macro. | thorpej |
| 2001-05-09 | Remove pool_create() and pool_prime(). Nothing except pool_create() | thorpej |
| 2001-05-04 | Add pool_cache_destruct_object(), used to force destruction of | thorpej |
| 2001-01-29 | Don't use PR_URGENT to allocate page header. We don't want to just panic | enami |
| 2001-01-14 | Change some low-hanging splimp() calls to splvm(). | thorpej |
| 2000-12-11 | Add some basic statistics to pool_cache. | thorpej |
| 2000-12-10 | Don't hold a pool cache lock across any call to pool_get() or pool_put(). | thorpej |
| 2000-12-07 | ...and when freeing cache groups, clear `freeto' if that's the one | thorpej |
| 2000-12-07 | When we invalidate a pool cache, make sure to clear `allocfrom' if | thorpej |
| 2000-12-07 | Add a /c modifier to "show pool" to display pool caches. | thorpej |
| 2000-12-07 | This is a first-cut implementation of support for caching of | thorpej |
| 2000-12-06 | ANSI'ify. | thorpej |
| 2000-11-19 | In pool_setlowat(), only call pool_catchup() if the pool is under the | sommerfeld |