X-Git-Url: https://yaffs.net/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yportenv_multi.h;h=68c239c0743513a6076bfec3df48a77edb886eec;hp=3df7d566ebf5a084e68caf7e1181cbbb9dcc6141;hb=eb65ac45ecf8279ba5c8657c302a3df32f0af06e;hpb=c3588d722cf93ff57ed931ddf0fa889f38535337 diff --git a/yportenv_multi.h b/yportenv_multi.h index 3df7d56..68c239c 100644 --- a/yportenv_multi.h +++ b/yportenv_multi.h @@ -61,10 +61,18 @@ #define YAFFS_LOSTNFOUND_MODE 0700 #if (LINUX_VERSION_CODE > KERNEL_VERSION(2, 5, 0)) +#if (LINUX_VERSION_CODE < KERNEL_VERSION(4,12,0)) #define Y_CURRENT_TIME CURRENT_TIME.tv_sec +#else +#define Y_CURRENT_TIME current_kernel_time().tv_sec +#endif #define Y_TIME_CONVERT(x) (x).tv_sec #else +#if (LINUX_VERSION_CODE < KERNEL_VERSION(4,12,0)) #define Y_CURRENT_TIME CURRENT_TIME +#else +#define Y_CURRENT_TIME current_kernel_time() +#endif #define Y_TIME_CONVERT(x) (x) #endif