diff options
Diffstat (limited to 'mm/oom_kill.c')
| -rw-r--r-- | mm/oom_kill.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mm/oom_kill.c b/mm/oom_kill.c index 6969cfb33901..b278b8d60eee 100644 --- a/mm/oom_kill.c +++ b/mm/oom_kill.c | |||
| @@ -61,12 +61,6 @@ unsigned long badness(struct task_struct *p, unsigned long uptime) | |||
| 61 | } | 61 | } |
| 62 | 62 | ||
| 63 | /* | 63 | /* |
| 64 | * swapoff can easily use up all memory, so kill those first. | ||
| 65 | */ | ||
| 66 | if (p->flags & PF_SWAPOFF) | ||
| 67 | return ULONG_MAX; | ||
| 68 | |||
| 69 | /* | ||
| 70 | * The memory size of the process is the basis for the badness. | 64 | * The memory size of the process is the basis for the badness. |
| 71 | */ | 65 | */ |
| 72 | points = mm->total_vm; | 66 | points = mm->total_vm; |
| @@ -77,6 +71,12 @@ unsigned long badness(struct task_struct *p, unsigned long uptime) | |||
| 77 | task_unlock(p); | 71 | task_unlock(p); |
| 78 | 72 | ||
| 79 | /* | 73 | /* |
| 74 | * swapoff can easily use up all memory, so kill those first. | ||
| 75 | */ | ||
| 76 | if (p->flags & PF_SWAPOFF) | ||
| 77 | return ULONG_MAX; | ||
| 78 | |||
| 79 | /* | ||
| 80 | * Processes which fork a lot of child processes are likely | 80 | * Processes which fork a lot of child processes are likely |
| 81 | * a good choice. We add half the vmsize of the children if they | 81 | * a good choice. We add half the vmsize of the children if they |
| 82 | * have an own mm. This prevents forking servers to flood the | 82 | * have an own mm. This prevents forking servers to flood the |
