mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] exit signals: use of uninitialized field notify_count
@ 2008-08-26 22:14 Steve VanDeBogart
  2008-08-27  8:01 ` Ingo Molnar
  0 siblings, 1 reply; 6+ messages in thread
From: Steve VanDeBogart @ 2008-08-26 22:14 UTC (permalink / raw)
  To: linux-kernel; +Cc: Ingo Molnar

task->signal->notify_count is only initialized if
task->signal->group_exit_task is not NULL.  Reorder a conditional so
that uninitialised memory is not used.  Found by Valgrind.

Signed-off-by: Steve VanDeBogart <vandebo-lkml@nerdbox.net>
---

Index: linux/kernel/exit.c
===================================================================
--- linux.orig/kernel/exit.c	2008-08-06 09:19:01.000000000 -0700
+++ linux/kernel/exit.c	2008-08-23 15:21:34.000000000 -0700
@@ -883,8 +883,8 @@

  	/* mt-exec, de_thread() is waiting for us */
  	if (thread_group_leader(tsk) &&
-	    tsk->signal->notify_count < 0 &&
-	    tsk->signal->group_exit_task)
+	    tsk->signal->group_exit_task &&
+	    tsk->signal->notify_count < 0)
  		wake_up_process(tsk->signal->group_exit_task);

  	write_unlock_irq(&tasklist_lock);

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2008-08-28 12:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-26 22:14 [PATCH] exit signals: use of uninitialized field notify_count Steve VanDeBogart
2008-08-27  8:01 ` Ingo Molnar
2008-08-27 16:11   ` Oleg Nesterov
2008-08-28  0:58     ` Steve VanDeBogart
2008-08-28 12:58       ` Oleg Nesterov
2008-08-28  0:27   ` Steve VanDeBogart

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®