OneLinersCommand workbench
Verified diagnostic signature

The kernel or a memory cgroup exhausted reclaimable memory and killed or failed an allocation.

Match output from linux-kernel, understand the likely cause, then continue with sourced, read-only checks.

Confidence
high
Platforms
linux
Verified
2026-07-24
Recognized output

Signature matched locally

page allocation failure

OneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.

Likely causes

What usually produces this signal

  1. Memory leak or spike
  2. Container memory limit
  3. Insufficient swap
  4. Kernel allocation pressure
Safe next checks

Collect evidence before changing the system

01

Show Linux memory and swap usage

free -h

The output matches the expected target and exits without an error.

02

Show the ten processes using the most memory

ps aux | sort -nrk 4,4 | head -10

The output matches the expected target and exits without an error.

03

Inspect Linux CPU, memory, and I/O pressure stall metrics

grep -H . /proc/pressure/{cpu,memory,io}

The output matches the expected target and exits without an error.

04

Show the latest kernel messages

dmesg | tail -30

Re-run the corresponding read-only inspection and confirm the intended state.