]> granicus.if.org Git - zfs/commit
Linux 4.18 compat: inode timespec -> timespec64
authorBrian Behlendorf <behlendorf1@llnl.gov>
Sun, 12 Aug 2018 22:22:03 +0000 (18:22 -0400)
committerTony Hutter <hutter2@llnl.gov>
Fri, 6 Jul 2018 09:46:51 +0000 (02:46 -0700)
commitf79c0de208ad1a4effd5b0a9afc426922b12918a
treefaf14cee4ba888106c23bdbb5a12cd23c45768dd
parent166781608941be963d7b0ffd40c4a785cea5a97f
Linux 4.18 compat: inode timespec -> timespec64

Commit torvalds/linux@95582b0 changes the inode i_atime, i_mtime,
and i_ctime members form timespec's to timespec64's to make them
2038 safe.  As part of this change the current_time() function was
also updated to return the timespec64 type.

Resolve this issue by introducing a new inode_timespec_t type which
is defined to match the timespec type used by the inode.  It should
be used when working with inode timestamps to ensure matching types.

The timestruc_t type under Illumos was used in a similar fashion but
was specified to always be a timespec_t.  Rather than incorrectly
define this type all timespec_t types have been replaced by the new
inode_timespec_t type.

Finally, the kernel and user space 'sys/time.h' headers were aligned
with each other.  They define as appropriate for the context several
constants as macros and include static inline implementation of
gethrestime(), gethrestime_sec(), and gethrtime().

Reviewed-by: Chunwei Chen <tuxoko@gmail.com>
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Closes #7643
Backported-by: Richard Yao <ryao@gentoo.org>
21 files changed:
config/kernel-current-time.m4
include/sys/dmu.h
include/sys/dmu_objset.h
include/sys/dsl_dir.h
include/sys/spa_impl.h
include/sys/xvattr.h
include/sys/zfs_context.h
include/sys/zfs_znode.h
include/sys/zpl.h
lib/libspl/Makefile.am
lib/libspl/gethrestime.c [deleted file]
lib/libspl/gethrtime.c [deleted file]
lib/libspl/include/sys/time.h
lib/libzpool/kernel.c
module/zfs/dmu_objset.c
module/zfs/dsl_dir.c
module/zfs/fm.c
module/zfs/zfs_ctldir.c
module/zfs/zfs_vnops.c
module/zfs/zfs_znode.c
module/zfs/zpl_inode.c