Re: [PATCH v5 6/6] powerpc/vdso: Switch VDSO to generic C implementation.

From: Arnd Bergmann
Date: Mon Feb 03 2020 - 06:59:35 EST


On Mon, Feb 3, 2020 at 12:28 PM kbuild test robot <lkp@xxxxxxxxx> wrote:
>
> If you fix the issue, kindly add following tag
> Reported-by: kbuild test robot <lkp@xxxxxxxxx>
>
> All errors (new ones prefixed by >>):
>
> >> arch/powerpc/kernel/vdso32/vgettimeofday.c:26:1: error: unknown type name 'time_t'; did you mean 'ktime_t'?
> time_t __c_kernel_time(time_t *time, const struct vdso_data *vd)
> ^~~~~~
> ktime_t


time_t is no longer available in linux-next, so this has to use
__kernel_old_time_t.

Arnd