mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-29 08:11:08 +00:00
7a76f21867
Originally, nptl/descr.h included <sys/rseq.h>, but we removed that in commit2c6b4b272e
("nptl: Unconditionally use a 32-byte rseq area"). After that, it was not ensured that the RSEQ_SIG macro was defined during sched_getcpu.c compilation that provided a definition. This commit always checks the rseq area for CPU number information before using the other approaches. This adds an unnecessary (but well-predictable) branch on architectures which do not define RSEQ_SIG, but its cost is small compared to the system call. Most architectures that have vDSO acceleration for getcpu also have rseq support. Fixes:2c6b4b272e
Fixes:1d350aa060
Reviewed-by: Arjun Shankar <arjun@redhat.com>
42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
/* Copyright (C) 2007-2024 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#include <errno.h>
|
|
#include <sched.h>
|
|
#include <sysdep.h>
|
|
#include <sysdep-vdso.h>
|
|
|
|
static int
|
|
vsyscall_sched_getcpu (void)
|
|
{
|
|
unsigned int cpu;
|
|
int r = -1;
|
|
#ifdef HAVE_GETCPU_VSYSCALL
|
|
r = INLINE_VSYSCALL (getcpu, 3, &cpu, NULL, NULL);
|
|
#else
|
|
r = INLINE_SYSCALL_CALL (getcpu, &cpu, NULL, NULL);
|
|
#endif
|
|
return r == -1 ? r : cpu;
|
|
}
|
|
|
|
int
|
|
sched_getcpu (void)
|
|
{
|
|
int cpu_id = THREAD_GETMEM_VOLATILE (THREAD_SELF, rseq_area.cpu_id);
|
|
return __glibc_likely (cpu_id >= 0) ? cpu_id : vsyscall_sched_getcpu ();
|
|
}
|