From: Florian Weimer <fweimer@redhat.com>
To: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Cc: libc-alpha@sourceware.org
Subject: Re: [PATCH v2 11/19] nptl: Use tidlock when accessing TID on pthread_setaffinity
Date: Thu, 26 Aug 2021 16:25:43 +0200 [thread overview]
Message-ID: <87zgt45llk.fsf@oldenburg.str.redhat.com> (raw)
In-Reply-To: <20210823195047.543237-12-adhemerval.zanella@linaro.org> (Adhemerval Zanella's message of "Mon, 23 Aug 2021 16:50:39 -0300")
* Adhemerval Zanella:
> Checked on x86_64-linux-gnu.
> ---
> nptl/pthread_setaffinity.c | 22 +++++++++++++++-------
> 1 file changed, 15 insertions(+), 7 deletions(-)
>
> diff --git a/nptl/pthread_setaffinity.c b/nptl/pthread_setaffinity.c
> index 3bfdc63e19..beb61836a6 100644
> --- a/nptl/pthread_setaffinity.c
> +++ b/nptl/pthread_setaffinity.c
> @@ -27,15 +27,23 @@ int
> __pthread_setaffinity_new (pthread_t th, size_t cpusetsize,
> const cpu_set_t *cpuset)
> {
> - const struct pthread *pd = (const struct pthread *) th;
> - int res;
> + struct pthread *pd = (struct pthread *) th;
>
> - res = INTERNAL_SYSCALL_CALL (sched_setaffinity, pd->tid, cpusetsize,
> - cpuset);
> + /* Block all signal, since the lock is recursive and used on pthread_cancel
> + (which should be async-signal-safe). */
> + sigset_t oldmask;
> + __libc_signal_block_all (&oldmask);
> + lll_lock (pd->tidlock, LLL_PRIVATE);
>
> - return (INTERNAL_SYSCALL_ERROR_P (res)
> - ? INTERNAL_SYSCALL_ERRNO (res)
> - : 0);
> + int res = pd->tid == 0
> + ? ESRCH
> + : INTERNAL_SYSCALL_CALL (sched_setaffinity, pd->tid, cpusetsize,
> + cpuset);
> +
> + lll_unlock (pd->tidlock, LLL_PRIVATE);
> + __libc_signal_restore_set (&oldmask);
> +
> + return res;
Same issue regarding ESRCH and pthread_cancel. Here we can just return
0 in case the thread is gone, I think.
Thanks,
Florian
next prev parent reply other threads:[~2021-08-26 14:25 UTC|newest]
Thread overview: 68+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-08-23 19:50 [PATCH v2 00/19] Fix various NPTL synchronization issues Adhemerval Zanella
2021-08-23 19:50 ` [PATCH v2 01/19] nptl: Fix tst-cancel7 and tst-cancelx7 race condition (BZ #14232) Adhemerval Zanella
2021-08-26 9:33 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 02/19] nptl: Set cancellation type and state on pthread_exit Adhemerval Zanella
2021-08-26 9:38 ` Florian Weimer
2021-08-26 9:42 ` Florian Weimer
2021-08-26 11:56 ` Adhemerval Zanella
2021-08-26 11:52 ` Adhemerval Zanella
2021-08-26 12:08 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 03/19] nptl: Handle robust PI mutexes for !__ASSUME_SET_ROBUST_LIST Adhemerval Zanella
2021-08-26 9:42 ` Florian Weimer
2021-08-26 12:14 ` Adhemerval Zanella
2021-08-23 19:50 ` [PATCH v2 04/19] nptl: Do not use pthread set_tid_address as state synchronization (BZ #19951) Adhemerval Zanella
2021-08-26 10:41 ` Florian Weimer
2021-08-26 14:58 ` Adhemerval Zanella
2021-08-26 15:06 ` Florian Weimer
2021-08-26 16:16 ` Adhemerval Zanella
2021-08-30 10:42 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 05/19] nptl: Move setxid flag out of cancelhandling Adhemerval Zanella
2021-08-26 11:34 ` Florian Weimer
2021-08-26 15:11 ` Adhemerval Zanella
2021-08-26 15:21 ` Florian Weimer
2021-08-26 16:39 ` Adhemerval Zanella
2021-08-30 11:27 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 06/19] nptl: Replace struct thread cancelhandling field Adhemerval Zanella
2021-08-26 14:34 ` Florian Weimer
2021-08-26 16:48 ` Adhemerval Zanella
2021-08-30 10:36 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 07/19] support: Add support_wait_for_thread_exit Adhemerval Zanella
2021-08-26 9:31 ` Florian Weimer
2021-08-26 16:49 ` Adhemerval Zanella
2021-08-30 11:46 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 08/19] nptl: pthread_kill, pthread_cancel should fail after exit (bug 19193) Adhemerval Zanella
2021-08-26 10:03 ` Florian Weimer
2021-08-26 16:49 ` Adhemerval Zanella
2021-08-23 19:50 ` [PATCH v2 09/19] nptl: Fix race between pthread_kill and thread exit (bug 12889) Adhemerval Zanella
2021-08-26 14:23 ` Florian Weimer
2021-08-26 17:06 ` Adhemerval Zanella
2021-08-30 9:25 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 10/19] nptl: Use tidlock when accessing TID on pthread_getaffinity_np Adhemerval Zanella
2021-08-26 14:24 ` Florian Weimer
2021-08-26 17:29 ` Adhemerval Zanella
2021-08-30 9:30 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 11/19] nptl: Use tidlock when accessing TID on pthread_setaffinity Adhemerval Zanella
2021-08-26 14:25 ` Florian Weimer [this message]
2021-08-26 17:31 ` Adhemerval Zanella
2021-08-23 19:50 ` [PATCH v2 12/19] nptl: Use tidlock when accessing TID on pthread_getcpuclockid Adhemerval Zanella
2021-08-26 14:27 ` Florian Weimer
2021-08-26 17:41 ` Adhemerval Zanella
2021-08-30 9:34 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 13/19] nptl: Use tidlock when accessing TID on pthread_getschedparam Adhemerval Zanella
2021-08-26 15:00 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 14/19] nptl: Use tidlock when accessing TID on pthread_setschedparam Adhemerval Zanella
2021-08-26 14:35 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 15/19] nptl: Use tidlock when accessing TID on pthread_getname_np Adhemerval Zanella
2021-08-26 14:38 ` Florian Weimer
2021-08-26 17:45 ` Adhemerval Zanella
2021-08-30 9:37 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 16/19] nptl: Use tidlock when accessing TID on pthread_setname_np Adhemerval Zanella
2021-08-23 19:50 ` [PATCH v2 17/19] nptl: Use tidlock when accessing TID on pthread_sigqueue Adhemerval Zanella
2021-08-26 14:43 ` Florian Weimer
2021-08-26 17:49 ` Adhemerval Zanella
2021-08-30 9:26 ` Florian Weimer
2021-08-23 19:50 ` [PATCH v2 18/19] nptl: Use tidlock when accessing TID on pthread_setschedprio Adhemerval Zanella
2021-08-23 19:50 ` [PATCH v2 19/19] nptl: Remove INVALID_TD_P Adhemerval Zanella
2021-08-26 9:30 ` Florian Weimer
2021-08-26 14:47 ` [PATCH v2 00/19] Fix various NPTL synchronization issues Florian Weimer
2021-08-26 18:19 ` Adhemerval Zanella
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=87zgt45llk.fsf@oldenburg.str.redhat.com \
--to=fweimer@redhat.com \
--cc=adhemerval.zanella@linaro.org \
--cc=libc-alpha@sourceware.org \
/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 read-only IMAP folder(s) and NNTP newsgroup(s).