We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 92d3306 commit 5646bbdCopy full SHA for 5646bbd
tools/testing/selftests/x86/test_vsyscall.c
@@ -92,11 +92,8 @@ static void init_vdso(void)
92
printf("[WARN]\tfailed to find time in vDSO\n");
93
94
vdso_getcpu = (getcpu_t)dlsym(vdso, "__vdso_getcpu");
95
- if (!vdso_getcpu) {
96
- /* getcpu() was never wired up in the 32-bit vDSO. */
97
- printf("[%s]\tfailed to find getcpu in vDSO\n",
98
- sizeof(long) == 8 ? "WARN" : "NOTE");
99
- }
+ if (!vdso_getcpu)
+ printf("[WARN]\tfailed to find getcpu in vDSO\n");
100
}
101
102
static int init_vsys(void)
0 commit comments