]> git.baikalelectronics.ru Git - kernel.git/commit
time: Move time_t conversion helpers to time32.h
authorArnd Bergmann <arnd@arndb.de>
Thu, 19 Oct 2017 11:14:48 +0000 (13:14 +0200)
committerJohn Stultz <john.stultz@linaro.org>
Mon, 30 Oct 2017 22:17:19 +0000 (15:17 -0700)
commitdfe35628a5e8d7d1a88b4baf9fb272b2eedf200e
treeff43ddc35d3a039dcc683018ff5b0c4e1f746b37
parentde915863de8b5db92dbebd3d51295c6818e7266f
time: Move time_t conversion helpers to time32.h

On 64-bit architectures, the timespec64 based helpers in linux/time.h
are defined as macros pointing to their timespec based counterparts.
This made sense when they were first introduced, but as we are migrating
away from timespec in general, it's much less intuitive now.

This changes the macros to work in the exact opposite way: we always
provide the timespec64 based helpers and define the old interfaces as
macros for them. Now we can move those macros into linux/time32.h, which
already contains the respective helpers for 32-bit architectures.

Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Miroslav Lichvar <mlichvar@redhat.com>
Cc: Richard Cochran <richardcochran@gmail.com>
Cc: Prarit Bhargava <prarit@redhat.com>
Cc: Stephen Boyd <stephen.boyd@linaro.org>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: John Stultz <john.stultz@linaro.org>
include/linux/time32.h
include/linux/time64.h
kernel/time/time.c