| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
the ioff argument to pool_init() is unused and has been for many
years, so this replaces it with an ipl argument. because the ipl
will be set on init we no longer need pool_setipl.
most of these changes have been done with coccinelle using the spatch
below. cocci sucks at formatting code though, so i fixed that by hand.
the manpage and subr_pool.c bits i did myself.
ok tedu@ jmatthew@
@ipl@
expression pp;
expression ipl;
expression s, a, o, f, m, p;
@@
-pool_init(pp, s, a, o, f, m, p);
-pool_setipl(pp, ipl);
+pool_init(pp, s, a, ipl, f, m, p);
|
|
|
|
|
| |
don't need to be married.
ok guenther miod beck jsing kettenis
|
| |
|
|
|
|
|
|
| |
<uvm/uvm.h> if possible and remove double inclusions.
ok beck@, mlarkin@, deraadt@
|
|
|
|
|
|
| |
Requested by dlg@
ok oga@
|
|
|
|
|
|
| |
The problems during the hackathon were not caused by this (most likely).
prodded by deraadt@ and beck@
|
|
|
|
|
|
| |
and we aren't sure what's causing them.
shouted oks by many before I even built a kernel with the diff.
|
|
|
|
|
|
|
|
| |
- Use km_alloc for all backend allocations in pools.
- Use km_alloc for the emergmency kentry allocations in uvm_mapent_alloc
- Garbage collect uvm_km_getpage, uvm_km_getpage_pla and uvm_km_putpage
ariane@ ok
|
|
|
|
| |
ok dlg
|
|
|
|
|
|
| |
SCIOCCOMMAND wants a dma'able object that big. should we handle
this another way, by handling that data in a buf?
ok krw
|
|
|
|
|
| |
is a variable on sparc. This should be revisited... after the arguments
for pagesize vs 4K complete :)
|
| |
|
|
pools, sized by powers of 2, which are constrained to dma memory.
ok matthew tedu thib
|