From: David Marchand <david.marchand@redhat.com>
To: Stephen Hemminger <stephen@networkplumber.org>
Cc: dev@dpdk.org, thomas@monjalon.net, luca.boccassi@gmail.com,
stable@dpdk.org, Tyler Retzlaff <roretzla@linux.microsoft.com>
Subject: Re: [PATCH] eal/unix: optimize thread creation with glibc
Date: Sun, 3 Nov 2024 11:37:25 +0100 [thread overview]
Message-ID: <CAJFAV8yD5s+Os5pj1QOY-WWpOEPY4L3f5XphZUHN3oUz_+62vA@mail.gmail.com> (raw)
In-Reply-To: <20241102125846.2d206e3a@hermes.local>
On Sat, Nov 2, 2024 at 8:58 PM Stephen Hemminger
<stephen@networkplumber.org> wrote:
>
> On Sat, 2 Nov 2024 11:08:39 +0100
> David Marchand <david.marchand@redhat.com> wrote:
>
> > Setting the cpu affinity of the child thread from the parent thread is
> > racy when using pthread_setaffinity_np, as the child thread may start
> > running and initialize before affinity is set.
> >
> > On the other hand, setting the cpu affinity from the child thread itself
> > may fail, so the parent thread waits for the child thread to report
> > whether this call succeeded.
> >
> > This synchronisation point resulted in a significant slow down of
> > rte_thread_create() (as seen in the lcores_autotest unit tests, in OBS
> > for some ARM systems).
> >
> > Another option for setting cpu affinity is to use the not portable
> > pthread_attr_setaffinity_np, but it is not available with musl.
> > Assume availability by relying on __USE_GNU that is not set with musl.
> >
> > Fixes: b28c6196b132 ("eal/unix: fix thread creation")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: David Marchand <david.marchand@redhat.com>
> > ---
>
> Seems like a reasonable way forward but not sure.
>
> What about FreeBSD (which shares this code)?
I did not investigate FreeBSD.
Either we find a "good" #define, or we could add some detection in
meson (probably the best option).
>
> Looking inside glibc, what it does is have the parent call sched_setaffinty()
> after the clone system call with the thread id. So using attributes is
> just as racy as the original code.
It there was such a race in the glibc, I would call it a bug.
Afaiu, the parent calls sched_setaffinity while holding a lock on the
child thread, see CREATE THREAD NOTES: and stopped_start.
--
David Marchand
next prev parent reply other threads:[~2024-11-03 10:37 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-02 10:08 David Marchand
2024-11-02 11:32 ` [PATCH v2] " David Marchand
2024-11-02 12:36 ` Luca Boccassi
2024-11-02 19:58 ` [PATCH] " Stephen Hemminger
2024-11-03 10:37 ` David Marchand [this message]
2024-11-03 11:25 ` [PATCH v3] " David Marchand
2024-11-03 16:10 ` Stephen Hemminger
2024-11-04 0:19 ` fengchengwen
2024-11-04 8:57 ` [PATCH v4] eal/unix: optimize thread creation David Marchand
2024-11-04 17:12 ` David Marchand
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=CAJFAV8yD5s+Os5pj1QOY-WWpOEPY4L3f5XphZUHN3oUz_+62vA@mail.gmail.com \
--to=david.marchand@redhat.com \
--cc=dev@dpdk.org \
--cc=luca.boccassi@gmail.com \
--cc=roretzla@linux.microsoft.com \
--cc=stable@dpdk.org \
--cc=stephen@networkplumber.org \
--cc=thomas@monjalon.net \
/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;
as well as URLs for NNTP newsgroup(s).