Restartable Sequences "RSEQ" Support Returning To GNU C Library

Restartable Sequences has shown nice performance potential and generated interest among developers. Glibc has been working on utilizing Restartable Sequences and the initial code was merged in 2020. More background information on RSEQ can be learned at Efficios.com from their work over the years on this support.
The next Glibc release should have its Restartable Sequences interface for more easily making use of this system call. The GNU C Library is also now wired up to make use of RSEQ for its sched_getcpu call as one beneficiary.
While the RSEQ support was merged into Glibc, it was later dropped pre-release. The Restartable Sequences code was removed from Glibc over open design issues and the possibility of the kernel ABI not being finalized.
RSEQ has looked quite promising for per-CPU data performance improvements now after nearly four years by the time of Glibc 2.35 the fruits can be more easily enjoyed.
More than one year later, things have settled down and the GNU C Library appears ready to make use of this performance-helping system call. Following some prep patches merged earlier in the week, the initial RSEQ code was merged yesterday. This includes bits for RSEQ registration, a glibc.pthread.rseq tunable to control RSEQ registration so applications can register it instead of Glibc, the public RSEQ symbols and sys/rseq.h, and using RSEQ to accelerate sched_getcpu.
Assuming no reverts again, the Restartable Sequences support will be in Glibc 2.35 due out in February.