CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/08/08 04:25:00
Modified files:
sys/kern : kern_sysctl.c
Log message:
Unlock KERN_MSGBUFSIZE and KERN_CONSBUFSIZE.
`msgbufp' and `consbufp' are immutable, such as `msg_magic' and
`msg_bufs'. initmsgbuf() and initconsbuf() which initialize this buffers
are called during kernel bootstrap, when concurrent sysctl(2) is
impossible, so they don't need to be reordered or use barriers.
ok bluhm
