commit | 1bf883c1a9cf88a60234039356aac8f23479dce9 | [log] [tgz] |
---|---|---|
author | Arnd Bergmann <arnd@arndb.de> | Tue Nov 05 09:22:38 2019 +0100 |
committer | Arnd Bergmann <arnd@arndb.de> | Fri Nov 15 14:38:28 2019 +0100 |
tree | e31f003fff9bffee756093a9a19616073c3dfa40 | |
parent | caf5e32d4ea7253820f38dd7c429f8d4a8019c5f [diff] |
y2038: stat: avoid 'time_t' in 'struct stat' The time_t definition may differ between user space and kernel space, so replace time_t with an unambiguous 'long' for the mips and sparc. The same structures also contain 'off_t', which has the same problem, so replace that as well on those two architectures and powerpc. Signed-off-by: Arnd Bergmann <arnd@arndb.de>