]> git.michaelhowe.org Git - packages/o/openafs.git/commit
LINUX: Update to Linux struct iattr->ia_ctime to timespec64 with 4.18
authorJoe Gorse <jhgorse@gmail.com>
Mon, 2 Jul 2018 20:36:04 +0000 (20:36 +0000)
committerBenjamin Kaduk <kaduk@mit.edu>
Fri, 3 Aug 2018 13:34:15 +0000 (09:34 -0400)
commit554176bd236d772d670df9bdd2496facd5a4209a
treecd7e4e9b88b4ba32fb5a6cb2736da1071e2699ab
parenteb107ed5c6dd3a53b8a0593054cdf5a03e1421d7
LINUX: Update to Linux struct iattr->ia_ctime to timespec64 with 4.18

With 4.18+ Linux kernels we see a transition to 64-bit time stamps by
default.

current_kernel_time() returns the 32-bit struct timespec.
current_kernel_time64() returns the 64-bit struct timespec64.

struct iattr->ia_ctime expects struct timespec64 as of 4.18+.

Timestamps greater than 31-bit rollover after 2147483647 or
January 19, 2038 03:14:07 UTC. This is the same approach taken by
the Linux developers for converting between timepsec64 and timespec.

Reviewed-on: https://gerrit.openafs.org/13241
Reviewed-by: Stephan Wiesand <stephan.wiesand@desy.de>
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
(cherry picked from commit 0bc5c15029cf7e720731f1415fcf9dc972d57ef4)

Change-Id: I16f93fd54dd45fe64f0c6fd499bf3adca978e9b1
Reviewed-on: https://gerrit.openafs.org/13268
Tested-by: BuildBot <buildbot@rampaginggeek.com>
Reviewed-by: Mark Vitale <mvitale@sinenomine.net>
Reviewed-by: Benjamin Kaduk <kaduk@mit.edu>
src/afs/LINUX/osi_file.c
src/cf/linux-kernel-assorted.m4
src/cf/linux-test4.m4