ioctl: add fallback for new time64 SIOCGSTAMP[NS]
authorRich Felker <dalias@aerifal.cx>
Wed, 31 Jul 2019 03:48:25 +0000 (23:48 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 1 Aug 2019 00:21:04 +0000 (20:21 -0400)
commit2e554617e5a6a41bf3f6c6306c753cd53abf728c
tree9f87293ec82b2ab72551371e8620d2908e22329e
parent51fd67fcbfa598e2fe1885b517451b84c0bfe3b7
ioctl: add fallback for new time64 SIOCGSTAMP[NS]

without this, the SIOCGSTAMP and SIOCGSTAMPNS ioctl commands, for
obtaining timestamps, would stop working on pre-5.1 kernels after
time_t is switched to 64-bit and their values are changed to the new
time64 versions.

new code is written such that it's statically unreachable on 64-bit
archs, and on existing 32-bit archs until the macro values are changed
to activate 64-bit time_t.
arch/sh/syscall_arch.h
src/internal/syscall.h
src/misc/ioctl.c