On Mon, Feb 3, 2020 at 12:28 PM kbuild test robot <l...@intel.com> wrote: > > If you fix the issue, kindly add following tag > Reported-by: kbuild test robot <l...@intel.com> > > 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