Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ARM: VDSO: Patch out __vdso_clock_getres() if unavailable

The vDSO code hides symbols which are non-functional.
__vdso_clock_getres() was not added to this list when it got introduced.

Fixes: 052e76a31b4a ("ARM: 8931/1: Add clock_getres entry point")
Signed-off-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@kernel.org>
Link: https://patch.msgid.link/20251223-vdso-compat-time32-v1-6-97ea7a06a543@linutronix.de

authored by

Thomas Weißschuh and committed by
Thomas Gleixner
b9fecf0d 21bbfd74

+1
+1
arch/arm/kernel/vdso.c
··· 161 161 vdso_nullpatch_one(&einfo, "__vdso_gettimeofday"); 162 162 vdso_nullpatch_one(&einfo, "__vdso_clock_gettime"); 163 163 vdso_nullpatch_one(&einfo, "__vdso_clock_gettime64"); 164 + vdso_nullpatch_one(&einfo, "__vdso_clock_getres"); 164 165 } 165 166 } 166 167