config: remove HAVE_KTIME_GET_COARSE_REAL_TS64

Sponsored-by: https://despairlabs.com/sponsor/
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Reviewed-by: Tony Hutter <hutter2@llnl.gov>
Reviewed-by: Tino Reichardt <milky-zfs@mcmilk.de>
Signed-off-by: Rob Norris <robn@despairlabs.com>
Closes #16479
This commit is contained in:
Rob Norris
2024-08-24 20:54:29 +10:00
committed by Tony Hutter
parent 0cbf4f7e9c
commit e2fcc6ad9e
2 changed files with 0 additions and 33 deletions
-8
View File
@@ -67,22 +67,14 @@ typedef struct timespec64 inode_timespec_t;
static inline void
gethrestime(inode_timespec_t *ts)
{
#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 */
}
static inline uint64_t
gethrestime_sec(void)
{
#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 */
return (ts.tv_sec);
}