x86, vdso: Reimplement vdso.so preparation in build-time C
[deliverable/linux.git] / arch / x86 / vdso / vclock_gettime.c
index 16d686171e9af802161a82e89b3b507a7162b6c0..091554c20bc931103ed29d3498472afcfef0a8a4 100644 (file)
@@ -154,7 +154,7 @@ notrace static long vdso_fallback_gettime(long clock, struct timespec *ts)
        asm(
                "mov %%ebx, %%edx \n"
                "mov %2, %%ebx \n"
-               "call VDSO32_vsyscall \n"
+               "call __kernel_vsyscall \n"
                "mov %%edx, %%ebx \n"
                : "=a" (ret)
                : "0" (__NR_clock_gettime), "g" (clock), "c" (ts)
@@ -169,7 +169,7 @@ notrace static long vdso_fallback_gtod(struct timeval *tv, struct timezone *tz)
        asm(
                "mov %%ebx, %%edx \n"
                "mov %2, %%ebx \n"
-               "call VDSO32_vsyscall \n"
+               "call __kernel_vsyscall \n"
                "mov %%edx, %%ebx \n"
                : "=a" (ret)
                : "0" (__NR_gettimeofday), "g" (tv), "c" (tz)
This page took 0.027821 seconds and 5 git commands to generate.