summaryrefslogtreecommitdiff
path: root/sys/kern/subr_pool.c
AgeCommit message (Expand)Author
2014-08-27deprecate the "item offset" handling. nothing uses it, so we canDavid Gwynne
2014-08-20bring back r1.130:David Gwynne
2014-08-18external page headers use an RB tree to find the page headerDavid Gwynne
2014-08-12sigh. when returning ENOENT in the sysctl path, unlock on the way out.David Gwynne
2014-08-12i accidentally removed the check for whether the requested pool inDavid Gwynne
2014-08-12bring back r1.135:David Gwynne
2014-08-12bring back r1.134:David Gwynne
2014-08-12bring back r1.132. this is a bit different cos we're still using splvm toDavid Gwynne
2014-08-11bring back r1.132:David Gwynne
2014-08-11bring back r1.131:David Gwynne
2014-07-10drain some boolean_t poisonTed Unangst
2014-07-10hide the biglock thrashing under pool_debug so it can be turned offTed Unangst
2014-07-03Revert back to 1.129: pool_init() is called before rwlocks can bePhilip Guenther
2014-07-02matthew@ noticed i wasnt populating npages in the kinfo_pool sent toDavid Gwynne
2014-07-02inline is the new __inlineDavid Gwynne
2014-07-02use pool_count to report the number of pools to userland ratherDavid Gwynne
2014-07-02provide a pool_count global so we can figure out how many pools there areDavid Gwynne
2014-07-02take the pools mutex when copying stats out of it in the sysctlDavid Gwynne
2014-07-02add an explicit rwlock around the global state (the pool list and serialDavid Gwynne
2014-07-02info about pools is currently given to userland by copying eachDavid Gwynne
2014-05-19consistent use of uint32_t for poison valuesTed Unangst
2014-05-01with some random chance, swizzle the current page for the pool to avoidTed Unangst
2014-04-03if it's ok to wait, it must also be ok to give the kernel lock. do so.Ted Unangst
2014-03-28Reduce uvm include madness. Use <uvm/uvm_extern.h> instead ofMartin Pieuchot
2013-11-05remove pool constructors and destructors. theyre called for everyDavid Gwynne
2013-08-08Uncomment kprintf format attributes for sys/kernSylvestre Gallon
2013-06-05blow up sooner rather than later for double pool_putTed Unangst
2013-05-31open up some races. if pool_debug == 2, force a yield() whenever waitok.Ted Unangst
2013-05-03switch the malloc and pool freelists to using xor simpleq.Ted Unangst
2013-04-17check that the pool we are about to init isn't already on the list inTed Unangst
2013-04-06make kernel compileTheo de Raadt
2013-04-06shuffle around some poison code, prototypes, values...Ted Unangst
2013-03-31replace pool debug magic with shared mem poison codeTed Unangst
2013-03-26simpleq is lighter weight and sufficient for pool's needs.Ted Unangst
2013-02-17Comment out recently added __attribute__((__format__(__kprintf__))) annotationsMiod Vallat
2013-02-09Add explicit __attribute__ ((__format__(__kprintf__)))) to the functions andMiod Vallat
2012-12-24Fix compilation with POOL_DEBUG but !DDBPhilip Guenthe
2011-11-23block interrupts while pool_reclaim_all is grubbing around in every poolsDavid Gwynne
2011-09-23touching pr_nput and pr_nget outside the lock might be racy since ++ and --David Gwynne
2011-09-23ph = pool_get(&phpool, PR_NOWAIT) can return NULL, so dont unconditionallyDavid Gwynne
2011-07-06remove the predict_whatever stuffs. ok deraadt dlg henningTed Unangst
2011-07-06move a few accounting adjustments closer to removing the page, just to be safe.Ted Unangst
2011-07-05Remove a broken optimization found by the new pool_chk code. ItTed Unangst
2011-07-05when all you have is a hammer, make it a big one. add more checks to pool_chkTed Unangst
2011-04-18Put back the change of pool and malloc into the new km_alloc(9) api.Artur Grabowski
2011-04-06Backout the uvm_km_getpage -> km_alloc conversion. Weird things are happeningArtur Grabowski
2011-04-05 - Change pool constraints to use kmem_pa_mode instead of uvm_constraint_rangeArtur Grabowski
2011-04-04sysctl kern.pool_debug=0 will disable POOL_DEBUG on the fly (still defaultsTheo de Raadt
2011-04-03Helper functions for suspend.Ariane van der Steldt
2010-11-03pool_sethardlimit should not imply pool_sethiwat; figured out with claudioMike Belopuhov