mm/oom_kill.c: Use list_for_each_entry instead of list_for_each
mm/oom_kill.c: Convert list_for_each to list_for_each_entry in oom_kill_process() Signed-off-by: Matthias Kaehlcke <matthias.kaehlcke@gmail.com> Cc: Nick Piggin <nickpiggin@yahoo.com.au> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
2e1975868a
commit
7b1915a989
1 changed files with 1 additions and 3 deletions
|
@ -337,7 +337,6 @@ static int oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
|
||||||
unsigned long points, const char *message)
|
unsigned long points, const char *message)
|
||||||
{
|
{
|
||||||
struct task_struct *c;
|
struct task_struct *c;
|
||||||
struct list_head *tsk;
|
|
||||||
|
|
||||||
if (printk_ratelimit()) {
|
if (printk_ratelimit()) {
|
||||||
printk(KERN_WARNING "%s invoked oom-killer: "
|
printk(KERN_WARNING "%s invoked oom-killer: "
|
||||||
|
@ -360,8 +359,7 @@ static int oom_kill_process(struct task_struct *p, gfp_t gfp_mask, int order,
|
||||||
message, p->pid, p->comm, points);
|
message, p->pid, p->comm, points);
|
||||||
|
|
||||||
/* Try to kill a child first */
|
/* Try to kill a child first */
|
||||||
list_for_each(tsk, &p->children) {
|
list_for_each_entry(c, &p->children, sibling) {
|
||||||
c = list_entry(tsk, struct task_struct, sibling);
|
|
||||||
if (c->mm == p->mm)
|
if (c->mm == p->mm)
|
||||||
continue;
|
continue;
|
||||||
if (!oom_kill_task(c))
|
if (!oom_kill_task(c))
|
||||||
|
|
Loading…
Reference in a new issue