mm-commits.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [merged] mm-oom-fix-uninitialized-ret-in-task_will_free_mem.patch removed from -mm tree
@ 2016-08-15 20:40 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2016-08-15 20:40 UTC (permalink / raw)
  To: geert, mhocko, oleg, penguin-kernel, mm-commits


The patch titled
     Subject: mm, oom: fix uninitialized ret in task_will_free_mem()
has been removed from the -mm tree.  Its filename was
     mm-oom-fix-uninitialized-ret-in-task_will_free_mem.patch

This patch was dropped because it was merged into mainline or a subsystem tree

------------------------------------------------------
From: Geert Uytterhoeven <geert@linux-m68k.org>
Subject: mm, oom: fix uninitialized ret in task_will_free_mem()

    mm/oom_kill.c: In function `task_will_free_mem':
    mm/oom_kill.c:767: warning: `ret' may be used uninitialized in this function

If __task_will_free_mem() is never called inside the for_each_process()
loop, ret will not be initialized.

Fixes: 1af8bb43269563e4 ("mm, oom: fortify task_will_free_mem()")
Link: http://lkml.kernel.org/r/1470255599-24841-1-git-send-email-geert@linux-m68k.org
Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Acked-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/oom_kill.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN mm/oom_kill.c~mm-oom-fix-uninitialized-ret-in-task_will_free_mem mm/oom_kill.c
--- a/mm/oom_kill.c~mm-oom-fix-uninitialized-ret-in-task_will_free_mem
+++ a/mm/oom_kill.c
@@ -764,7 +764,7 @@ bool task_will_free_mem(struct task_stru
 {
 	struct mm_struct *mm = task->mm;
 	struct task_struct *p;
-	bool ret;
+	bool ret = true;
 
 	/*
 	 * Skip tasks without mm because it might have passed its exit_mm and
_

Patches currently in -mm which might be from geert@linux-m68k.org are



^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2016-08-15 20:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-15 20:40 [merged] mm-oom-fix-uninitialized-ret-in-task_will_free_mem.patch removed from -mm tree akpm

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).