mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@libc.org>
To: "zhaohang (F)" <zhaohang14@huawei.com>
Cc: "musl@lists.openwall.com" <musl@lists.openwall.com>
Subject: Re: src/thread/pthread_create: Why prio of child thread is set by himself
Date: Thu, 5 Sep 2019 09:34:14 -0400	[thread overview]
Message-ID: <20190905133414.GE9017@brightrain.aerifal.cx> (raw)
In-Reply-To: <59FB1E003EF3A943BD6BAD197ABD4D6A2A9CC4@dggemi524-mbx.china.huawei.com>

On Thu, Sep 05, 2019 at 02:14:36AM +0000, zhaohang (F) wrote:
> In the function pthread_create, father thread will wait child if
> attr._a_sched is set, after SYS_clone is finished.Child thread will
> set his prio in entry 'start', and then wake father thread to
> continue.
> 
> But consider this kind of situation, there are three threads: A with
> prio 51, B with prio 30, and C with prio 20 created by A, and there
> is only simplest sched policy 'FIFO'.
> 
> When system starts, A is running because A is higher than B, then A
> uses pthread_create to create C. After C is cloned, A wait for C to
> set prio and wake him up, but after C set his prio to 20, B will be
> sched. And if B won't exit, A and C will never get sched, even if A
> is higher than B. Maybe this is a kind of priority inversion.
> 
> So why prio of child is set by himself rather than father? If prio
> of child is set by father, something will go wrong? Or other
> considerations?

I think you're correct in your analysis of this problem; I'm going to
look at it more in a bit to make sure.

Originally, pthread_create (in the caller) was responsible for setting
priority; this changed in b8742f32602add243ee2ce74d804015463726899 and
40bae2d32fd6f3ffea437fa745ad38a1fe77b27e as part of trying to trim
down the pthread structure and get init-time-only junk out of it.
However, 04335d9260c076cf4d9264bd93dd3b06c237a639 largely undid that
already, and moved the extra start args to a struct on the new
thread's stack so that it doesn't contribute to size/clutter in struct
pthread. It should be easy to switch back to having the new thread
just wait for the parent to tell it whether priority setup succeeded.

One related issue this also turned up is that exiting in detached
state is probably a bad idea. Depending on priorities, the thread that
failed to start could linger for a long time after pthread_create
returns, potentially causing spurious transient resource exhaustion
with no way to wait for it to subside. At some point we should
probably switch from forcing detached exit to forcing joinable (or
equivalent; forcing linking of pthread_join code is somewhat
undesirable) exit so that when a failed pthread_create returns it's
not consuming any kernel task resources.

Thanks for the report.

Rich


      reply	other threads:[~2019-09-05 13:34 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-05  2:14 zhaohang (F)
2019-09-05 13:34 ` Rich Felker [this message]

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=20190905133414.GE9017@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --cc=musl@lists.openwall.com \
    --cc=zhaohang14@huawei.com \
    /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.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

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).