[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <1072203859.1074.1555602325772.JavaMail.zimbra@efficios.com>
Date: Thu, 18 Apr 2019 11:45:25 -0400 (EDT)
From: Mathieu Desnoyers <mathieu.desnoyers@...icios.com>
To: Szabolcs Nagy <Szabolcs.Nagy@....com>
Cc: carlos <carlos@...hat.com>, nd <nd@....com>,
Florian Weimer <fweimer@...hat.com>,
Joseph Myers <joseph@...esourcery.com>,
libc-alpha <libc-alpha@...rceware.org>,
Thomas Gleixner <tglx@...utronix.de>,
Ben Maurer <bmaurer@...com>,
Peter Zijlstra <peterz@...radead.org>,
"Paul E. McKenney" <paulmck@...ux.vnet.ibm.com>,
Boqun Feng <boqun.feng@...il.com>,
Will Deacon <Will.Deacon@....com>,
Dave Watson <davejwatson@...com>, Paul Turner <pjt@...gle.com>,
linux-kernel <linux-kernel@...r.kernel.org>,
linux-api <linux-api@...r.kernel.org>
Subject: Re: [PATCH 2/5] glibc: sched_getcpu(): use rseq cpu_id TLS on Linux
(v2)
----- On Apr 18, 2019, at 11:33 AM, Szabolcs Nagy Szabolcs.Nagy@....com wrote:
> On 16/04/2019 18:32, Mathieu Desnoyers wrote:
>> --- a/sysdeps/unix/sysv/linux/sched_getcpu.c
>> +++ b/sysdeps/unix/sysv/linux/sched_getcpu.c
>> @@ -37,3 +37,26 @@ sched_getcpu (void)
>> return -1;
>> #endif
>> }
>> +
>> +#ifdef __NR_rseq
>> +#include <sys/rseq.h>
>> +#endif
>> +
>> +#if defined __NR_rseq && defined RSEQ_SIG
>> +extern __attribute__ ((tls_model ("initial-exec")))
>> +__thread volatile struct rseq __rseq_abi;
>
> i'd expect sys/rseq.h to provide this declaration.
And it actually does! Will remove this duplicate.
Thanks,
Mathieu
>
>> +
>> +int
>> +sched_getcpu (void)
>> +{
>> + int cpu_id = __rseq_abi.cpu_id;
>> +
>> + return cpu_id >= 0 ? cpu_id : vsyscall_sched_getcpu ();
>> +}
>> +#else
>> +int
>> +sched_getcpu (void)
>> +{
>> + return vsyscall_sched_getcpu ();
>> +}
>> +#endif
>> -- 2.17.1
--
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com
Powered by blists - more mailing lists