CVSROOT: /cvs Module name: src Changes by: [email protected] 2020/09/26 09:15:22
Modified files:
sys/kern : kern_proc.c
Log message:
Remove the PR_WAITOK flag from the ucred_pool. The pool items are small
enough that this pool uses the single page allocator for which PR_WAITOK
is a no-op. However it presence suggests that pool_put(9) may sleep.
The single page allocator will never actually do that.
This makes it obvious that refreshcreds() will not sleep.
ok deraadt@, visa@
