oom, PM: make OOM detection in the freezer path raceless
Commit 5695be14 ("OOM, PM: OOM killed task shouldn't escape PM suspend") has left a race window when OOM killer manages to note_oom_kill after freeze_processes checks the counter. The race window is quite small and really unlikely and partial solution deemed sufficient at the time of submission. Tejun wasn't happy about this partial solution though and insisted on a full solution. That requires the full OOM and freezer's task freezing exclusion, though. This is done by this patch which introduces oom_sem RW lock and turns oom_killer_disable() into a full OOM barrier. oom_killer_disabled check is moved from the allocation path to the OOM level and we take oom_sem for reading for both the check and the whole OOM invocation. oom_killer_disable() takes oom_sem for writing so it waits for all currently running OOM killer invocations. Then it disable all the further OOMs by setting oom_killer_disabled and checks for any oom victims. Victims are...
Showing
- drivers/tty/sysrq.c 3 additions, 2 deletionsdrivers/tty/sysrq.c
- include/linux/oom.h 3 additions, 11 deletionsinclude/linux/oom.h
- kernel/exit.c 2 additions, 1 deletionkernel/exit.c
- kernel/power/process.c 9 additions, 41 deletionskernel/power/process.c
- mm/memcontrol.c 1 addition, 1 deletionmm/memcontrol.c
- mm/oom_kill.c 112 additions, 20 deletionsmm/oom_kill.c
- mm/page_alloc.c 2 additions, 15 deletionsmm/page_alloc.c
Please register or sign in to comment