timekeeping: Remove timespec64 hack
authorArnd Bergmann <arnd@arndb.de>
Fri, 27 Apr 2018 13:40:12 +0000 (15:40 +0200)
committerThomas Gleixner <tglx@linutronix.de>
Sat, 19 May 2018 11:57:31 +0000 (13:57 +0200)
commit4f0fad9a603aee91a374e8411c23953894a77479
tree3a8bd6e90446982588cc533ef31fddc56dd98133
parentb563ea676a46f3a297b1e64b6ece25b934aafba5
timekeeping: Remove timespec64 hack

At this point, we have converted most of the kernel to use timespec64
consistently in place of timespec, so it seems it's time to make
timespec64 the native structure and define timespec in terms of that
one on 64-bit architectures.

Starting with gcc-5, the compiler can completely optimize away the
timespec_to_timespec64 and timespec64_to_timespec functions on 64-bit
architectures. With older compilers, we introduce a couple of extra
copies of local variables, but those are easily avoided by using
the timespec64 based interfaces consistently, as we do in most of the
important code paths already.

The main upside of removing the hack is that printing the tv_sec
field of a timespec64 structure can now use the %lld format
string on all architectures without a cast to time64_t. Without
this patch, the field is a 'long' type and would have to be printed
using %ld on 64-bit architectures.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Stephen Boyd <sboyd@kernel.org>
Cc: y2038@lists.linaro.org
Cc: John Stultz <john.stultz@linaro.org>
Link: https://lkml.kernel.org/r/20180427134016.2525989-2-arnd@arndb.de
include/linux/time32.h
include/linux/time64.h
include/linux/timekeeping32.h
kernel/time/time.c