mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2026-05-22 18:40:43 +03:00
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:
@@ -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);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user