CVSROOT: /cvs Module name: src Changes by: [email protected] 2024/04/16 02:53:02
Modified files:
sys/uvm : uvm_amap.c
Log message:
Prevent a NULL dereference in error code path.
Under memory pressure allocating an amap chunk can fail. In such case it
is not possible to call amap_wipeout() because the newly allocated amap
isn't yet on the global list.
Issue reported by bluhm@, ok jsg@
