From: ebiederm@xmission.com (Eric W. Biederman)
To: liuchao <liuchao173@huawei.com>
Cc: <mingo@kernel.org>, <tglx@linutronix.de>,
<linux-kernel@vger.kernel.org>, <hushiyuan@huawei.com>,
<hewenliang4@huawei.com>
Subject: Re: [RFC] decrease tsk->signal->live before profile_task_exit
Date: Fri, 29 May 2020 13:01:22 -0500 [thread overview]
Message-ID: <87mu5qpqml.fsf@x220.int.ebiederm.org> (raw)
In-Reply-To: <20200528040956.30155-1-liuchao173@huawei.com> (liuchao's message of "Thu, 28 May 2020 12:09:56 +0800")
liuchao <liuchao173@huawei.com> writes:
> I want to dermine which thread is the last one to enter
> do_exit in profile_task_exit. But when a lot of threads
> exit, tsk->signal->live is not correct since it decrease
> after profile_task_exit.
I don't think that would be wise.
Any additional code before the sanity checks at the start of do_exit
seems like a bad idea.
We could probably move the decrement of tsk->signal->live a little
earlier, but not that much earlier in the function.
Does profile_task_exit even make sense that early in the code? If the
code is doing much of anything that is a completely inappopriate
placement of profile_task_exit.
Eric
> Signed-off-by: liuchao <liuchao173@huawei.com>
> ---
> kernel/exit.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/kernel/exit.c b/kernel/exit.c
> index ce2a75bc0ade..1693764bc356 100644
> --- a/kernel/exit.c
> +++ b/kernel/exit.c
> @@ -708,6 +708,7 @@ void __noreturn do_exit(long code)
> struct task_struct *tsk = current;
> int group_dead;
>
> + group_dead = atomic_dec_and_test(&tsk->signal->live);
> profile_task_exit(tsk);
> kcov_task_exit(tsk);
>
> @@ -755,7 +756,6 @@ void __noreturn do_exit(long code)
> if (tsk->mm)
> sync_mm_rss(tsk->mm);
> acct_update_integrals(tsk);
> - group_dead = atomic_dec_and_test(&tsk->signal->live);
> if (group_dead) {
> /*
> * If the last thread of global init has exited, panic
next prev parent reply other threads:[~2020-05-29 18:05 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-05-28 4:09 liuchao
2020-05-29 18:01 ` Eric W. Biederman [this message]
2020-06-09 2:30 liuchao (CR)
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87mu5qpqml.fsf@x220.int.ebiederm.org \
--to=ebiederm@xmission.com \
--cc=hewenliang4@huawei.com \
--cc=hushiyuan@huawei.com \
--cc=linux-kernel@vger.kernel.org \
--cc=liuchao173@huawei.com \
--cc=mingo@kernel.org \
--cc=tglx@linutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome