mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 10:37:35 +03:00
Linux 4.18 compat: Use ktime_get_coarse_real_ts64()
Newer kernels remove current_kernel_time64(). Use ktime_get_coarse_real_ts64() in its place. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Tony Hutter <hutter2@llnl.gov> Closes #8258
This commit is contained in:
committed by
Brian Behlendorf
parent
c853f382db
commit
5cb46f6a66
@@ -73,7 +73,13 @@ static inline void
|
||||
gethrestime(inode_timespec_t *ts)
|
||||
{
|
||||
#if defined(HAVE_INODE_TIMESPEC64_TIMES)
|
||||
|
||||
#if defined(HAVE_KTIME_GET_COARSE_REAL_TS64)
|
||||
ktime_get_coarse_real_ts64(ts);
|
||||
#else
|
||||
*ts = current_kernel_time64();
|
||||
#endif /* HAVE_KTIME_GET_COARSE_REAL_TS64 */
|
||||
|
||||
#else
|
||||
*ts = current_kernel_time();
|
||||
#endif
|
||||
@@ -83,7 +89,13 @@ static inline time_t
|
||||
gethrestime_sec(void)
|
||||
{
|
||||
#if defined(HAVE_INODE_TIMESPEC64_TIMES)
|
||||
#if defined(HAVE_KTIME_GET_COARSE_REAL_TS64)
|
||||
inode_timespec_t ts;
|
||||
ktime_get_coarse_real_ts64(&ts);
|
||||
#else
|
||||
inode_timespec_t ts = current_kernel_time64();
|
||||
#endif /* HAVE_KTIME_GET_COARSE_REAL_TS64 */
|
||||
|
||||
#else
|
||||
inode_timespec_t ts = current_kernel_time();
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user