CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2019/07/18 17:47:33
Modified files:
sys/uvm : uvm.h uvm_amap.c uvm_aobj.c uvm_device.c
uvm_fault.c uvm_km.c uvm_vnode.c
Log message:
R.I.P. UVM_WAIT(). Use tsleep_nsec(9) directly.
UVM_WAIT() doesn't provide much of a useful abstraction. All callers
tsleep forever and no callers set PCATCH, so only 2 of 4 parameters are
actually used. Might as well just use tsleep_nsec(9) directly and make
the uvm code a bit less specialized.
Suggested by mpi@.
ok mpi@ visa@ millert@