CVSROOT: /cvs Module name: src Changes by: dera...@cvs.openbsd.org 2022/02/01 21:05:16
Modified files: sys/dev/acpi : acpi.c Log message: acpi_addtask() calls malloc() w/ M_NOWAIT (because some calls come from interrupt context), this however means occasional resource shortage will result in callbacks registration failing, and unknown consequences for the task-submitting caller. Changing this to use pools with a low water mark, decreases the odds of that problem occuring. ok kettenis