Remove 'vm.panic_on_oom=1' (#7678)

#### Why I did it
If a process limits using nodes by mempolicy/cpusets, and those nodes become memory exhaustion status, one process may be killed by oom-killer.
No panic occurs in this case, because other node's memory may be free.
This means system total status may be not fatal yet.

#### How I did it
Remove 'vm.panic_on_oom=1' kernel flag from 'vmcore-sysctl.conf '
This commit is contained in:
shlomibitton 2021-05-25 03:23:49 +03:00 committed by Ying Xie
parent 55c798adf3
commit c53f58e488

View File

@ -4,4 +4,3 @@ kernel.panic_on_io_nmi=1
kernel.panic_on_stackoverflow=1
kernel.hung_task_panic=1
kernel.unknown_nmi_panic=1
vm.panic_on_oom=1