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.

selftests: vDSO: vdso_config: Add configurations for clock_getres_time64()

Some architectures will start to implement this function.
Make sure that tests can be written for it.

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-2-97ea7a06a543@linutronix.de

authored by

Thomas Weißschuh and committed by
Thomas Gleixner
609e359a b205656d

+3 -1
+3 -1
tools/testing/selftests/vDSO/vdso_config.h
··· 66 66 }; 67 67 68 68 __attribute__((unused)) 69 - static const char *names[2][7] = { 69 + static const char *names[2][8] = { 70 70 { 71 71 "__kernel_gettimeofday", 72 72 "__kernel_clock_gettime", ··· 75 75 "__kernel_getcpu", 76 76 "__kernel_clock_gettime64", 77 77 "__kernel_getrandom", 78 + "__kernel_clock_getres_time64", 78 79 }, 79 80 { 80 81 "__vdso_gettimeofday", ··· 85 84 "__vdso_getcpu", 86 85 "__vdso_clock_gettime64", 87 86 "__vdso_getrandom", 87 + "__vdso_clock_getres_time64", 88 88 }, 89 89 }; 90 90