x86/vdso: Provide getcpu for x86-32.
authorSebastian Andrzej Siewior <bigeasy@linutronix.de>
Fri, 25 Nov 2022 09:42:15 +0000 (10:42 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Mon, 6 Feb 2023 14:48:54 +0000 (15:48 +0100)
commit92d33063c081a82d25dd08a9cce03947c8ed9164
tree101b026a2a3fd1d35600e86341a5faaf378483c8
parent717cce3bdcf34705417f641bf2fcdf9b038ec36c
x86/vdso: Provide getcpu for x86-32.

Wire up __vdso_getcpu() for x86-32.

The 64bit version is reused with trivial modifications. Contrary to
vclock_gettime.c there is no requirement to fake any defines in the case of
32bit VDSO on a 64bit kernel because the GDT entry from which the CPU and
node information is read is always the native one.

Adopt vdso_getcpu.c by:

 - removing the unneeded time* header files which lead to compile errors
   for 32bit.
 - adding segment.h which provides vdso_read_cpunode() and the defines
   required by it.

Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20221125094216.3663444-3-bigeasy@linutronix.de
arch/x86/entry/vdso/Makefile
arch/x86/entry/vdso/vdso32/vdso32.lds.S
arch/x86/entry/vdso/vdso32/vgetcpu.c [new file with mode: 0644]
arch/x86/entry/vdso/vgetcpu.c