CVSROOT: /cvs Module name: src Changes by: bl...@cvs.openbsd.org 2019/12/24 05:56:07
Modified files: sys/kern : subr_log.c Log message: The console buffer is allocated during startup. initconsbuf() is only called from main(). There allocation must not fail, so better use M_WAITOK and remove error handling. As it is not a temporary buffer, M_TTYS is more appropriate. OK deraadt@ mpi@