[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20130215145323.GA30829@redhat.com>
Date: Fri, 15 Feb 2013 15:53:23 +0100
From: Oleg Nesterov <oleg@...hat.com>
To: Mandeep Singh Baines <msb@...omium.org>
Cc: linux-kernel@...r.kernel.org, Tejun Heo <tj@...nel.org>,
Andrew Morton <akpm@...ux-foundation.org>,
"Rafael J. Wysocki" <rjw@...k.pl>, Ingo Molnar <mingo@...hat.com>
Subject: Re: [PATCH 3/5] coredump: cleanup the waiting for coredump_finish
code
On 02/14, Mandeep Singh Baines wrote:
>
> Replace the for loop with a simple if.
Why?
> --- a/kernel/exit.c
> +++ b/kernel/exit.c
> @@ -479,12 +479,9 @@ static void exit_mm(struct task_struct * tsk)
> if (atomic_dec_and_test(&core_state->nr_threads))
> complete(&core_state->startup);
>
> - for (;;) {
> - set_task_state(tsk, TASK_UNINTERRUPTIBLE);
> - if (!self.task) /* see coredump_finish() */
> - break;
> + set_task_state(tsk, TASK_UNINTERRUPTIBLE);
> + if (self.task) /* see coredump_finish() */
> schedule();
> - }
If you think we should not worry about spurious wakeups you can simplify
this code even more, you do not need mb() to set TASK_UNINTERRUPTIBLE
(just move it before dec_and_test), you do not need "if (self.task)",
you do not need __set_task_state(tsk, TASK_RUNNING).
But I think we should always worry, so why?
Oleg.
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists