y2038: vdso: change time_t to __kernel_old_time_t
Only x86 uses the 'time' syscall in vdso, so change that to __kernel_old_time_t as a preparation for removing 'time_t' and '__kernel_time_t' later. Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
parent
82210fc778
commit
21346564cc
|
@ -15,7 +15,7 @@
|
||||||
#include "../../../../lib/vdso/gettimeofday.c"
|
#include "../../../../lib/vdso/gettimeofday.c"
|
||||||
|
|
||||||
extern int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz);
|
extern int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz);
|
||||||
extern time_t __vdso_time(time_t *t);
|
extern __kernel_old_time_t __vdso_time(__kernel_old_time_t *t);
|
||||||
|
|
||||||
int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
|
int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
|
||||||
{
|
{
|
||||||
|
@ -25,12 +25,12 @@ int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
|
||||||
int gettimeofday(struct __kernel_old_timeval *, struct timezone *)
|
int gettimeofday(struct __kernel_old_timeval *, struct timezone *)
|
||||||
__attribute__((weak, alias("__vdso_gettimeofday")));
|
__attribute__((weak, alias("__vdso_gettimeofday")));
|
||||||
|
|
||||||
time_t __vdso_time(time_t *t)
|
__kernel_old_time_t __vdso_time(__kernel_old_time_t *t)
|
||||||
{
|
{
|
||||||
return __cvdso_time(t);
|
return __cvdso_time(t);
|
||||||
}
|
}
|
||||||
|
|
||||||
time_t time(time_t *t) __attribute__((weak, alias("__vdso_time")));
|
__kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time")));
|
||||||
|
|
||||||
|
|
||||||
#if defined(CONFIG_X86_64) && !defined(BUILD_VDSO32_64)
|
#if defined(CONFIG_X86_64) && !defined(BUILD_VDSO32_64)
|
||||||
|
|
|
@ -194,7 +194,7 @@ bool emulate_vsyscall(unsigned long error_code,
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
if (!write_ok_or_segv(regs->di, sizeof(time_t))) {
|
if (!write_ok_or_segv(regs->di, sizeof(__kernel_old_time_t))) {
|
||||||
ret = -EFAULT;
|
ret = -EFAULT;
|
||||||
goto check_fault;
|
goto check_fault;
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ int __vdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
|
||||||
int gettimeofday(struct __kernel_old_timeval *, struct timezone *)
|
int gettimeofday(struct __kernel_old_timeval *, struct timezone *)
|
||||||
__attribute__((weak, alias("__vdso_gettimeofday")));
|
__attribute__((weak, alias("__vdso_gettimeofday")));
|
||||||
|
|
||||||
time_t __vdso_time(time_t *t)
|
__kernel_old_time_t __vdso_time(__kernel_old_time_t *t)
|
||||||
{
|
{
|
||||||
long secs;
|
long secs;
|
||||||
|
|
||||||
|
@ -47,7 +47,7 @@ time_t __vdso_time(time_t *t)
|
||||||
|
|
||||||
return secs;
|
return secs;
|
||||||
}
|
}
|
||||||
time_t time(time_t *t) __attribute__((weak, alias("__vdso_time")));
|
__kernel_old_time_t time(__kernel_old_time_t *t) __attribute__((weak, alias("__vdso_time")));
|
||||||
|
|
||||||
long
|
long
|
||||||
__vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused)
|
__vdso_getcpu(unsigned *cpu, unsigned *node, struct getcpu_cache *unused)
|
||||||
|
|
|
@ -164,10 +164,10 @@ __cvdso_gettimeofday(struct __kernel_old_timeval *tv, struct timezone *tz)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef VDSO_HAS_TIME
|
#ifdef VDSO_HAS_TIME
|
||||||
static __maybe_unused time_t __cvdso_time(time_t *time)
|
static __maybe_unused __kernel_old_time_t __cvdso_time(__kernel_old_time_t *time)
|
||||||
{
|
{
|
||||||
const struct vdso_data *vd = __arch_get_vdso_data();
|
const struct vdso_data *vd = __arch_get_vdso_data();
|
||||||
time_t t = READ_ONCE(vd[CS_HRES_COARSE].basetime[CLOCK_REALTIME].sec);
|
__kernel_old_time_t t = READ_ONCE(vd[CS_HRES_COARSE].basetime[CLOCK_REALTIME].sec);
|
||||||
|
|
||||||
if (time)
|
if (time)
|
||||||
*time = t;
|
*time = t;
|
||||||
|
|
Loading…
Reference in New Issue