HomeFreeBSD

Modify the vm.panic_on_oom sysctl to take a count of events.

Description

Modify the vm.panic_on_oom sysctl to take a count of events.

Currently, the vm.panic_on_oom sysctl is a boolean which controls the
behavior of the VM system when it encounters an out-of-memory situation.
If set to 0, the VM system kills the largest process. If set to any other
value, the VM system will initiate a panic.

This change makes the sysctl a count of events. If set to 0, the VM system
kills the largest process. If set to any other value, the VM system will
kill the largest process until it has seen the specified number of
out-of-memory events. Once it reaches the specified number of events, it
will initiate a panic.

This change is helpful in capturing cores when the system is in a perpetual
cycle of out-of-memory events (as opposed to just hitting one or two
sporadic out-of-memory events).

Reviewed by: kib
MFC after: 2 weeks
Sponsored by: Netflix
Differential Revision: https://reviews.freebsd.org/D23601

Details

Provenance
jtlAuthored on
Reviewer
kib
Differential Revision
D23601: Modify the vm.panic_on_oom sysctl to take a count of events
Parents
rS357741: Remove ifdefs for ia64 and sparc64.
Branches
Unknown
Tags
Unknown