X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=yportenv_multi.h;h=fa5601b82bba915f6806841dc9a555f0620bf30d;hp=3df7d566ebf5a084e68caf7e1181cbbb9dcc6141;hb=HEAD;hpb=3de09ef5a181999f7340462154034b727827e4fa diff --git a/yportenv_multi.h b/yportenv_multi.h index 3df7d56..fa5601b 100644 --- a/yportenv_multi.h +++ b/yportenv_multi.h @@ -53,6 +53,8 @@ #define YUCHAR unsigned char #define _Y(x) x +#define YTIME_T u64 + #define YAFFS_LOSTNFOUND_NAME "lost+found" #define YAFFS_LOSTNFOUND_PREFIX "obj" @@ -61,10 +63,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