mirror of
git://sourceware.org/git/glibc.git
synced 2025-03-06 20:58:33 +01:00
Move the rseq area to the newly added 'extra TLS' block, this is the last step in adding support for the rseq extended ABI. The size of the rseq area is now dynamic and depends on the rseq features reported by the kernel through the elf auxiliary vector. This will allow applications to use rseq features past the 32 bytes of the original rseq ABI as they become available in future kernels. Signed-off-by: Michael Jeanson <mjeanson@efficios.com> Reviewed-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Reviewed-by: Florian Weimer <fweimer@redhat.com>
42 lines
1.3 KiB
C
42 lines
1.3 KiB
C
/* Copyright (C) 2007-2025 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>
|
|
#include <rseq-internal.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 = RSEQ_GETMEM_ONCE (cpu_id);
|
|
return __glibc_likely (cpu_id >= 0) ? cpu_id : vsyscall_sched_getcpu ();
|
|
}
|