decouple struct stat from kernel type
authorRich Felker <dalias@aerifal.cx>
Thu, 18 Jul 2019 23:38:12 +0000 (19:38 -0400)
committerRich Felker <dalias@aerifal.cx>
Thu, 18 Jul 2019 23:38:12 +0000 (19:38 -0400)
commit01ae3fc6d48f4a45535189b7a6db286535af08ca
tree5777ee3da734eb3b6a15dedc984bcd9934bf6fde
parent9493892021eac4edf1776d945bcdd3f7a96f6978
decouple struct stat from kernel type

presently, all archs/ABIs have struct stat matching the kernel
stat[64] type, except mips/mipsn32/mips64 which do conversion hacks in
syscall_arch.h to work around bugs in the kernel type. this patch
completely decouples them and adds a translation step to the success
path of fstatat. at present, this is just a gratuitous copying, but it
opens up multiple possibilities for future support for 64-bit time_t
on 32-bit archs and for cleaned-up/unified ABIs.

for clarity, the mips hacks are not yet removed in this commit, so the
mips kstat structs still correspond to the output of the hacks in
their syscall_arch.h files, not the raw kernel type. a subsequent
commit will fix this.
17 files changed:
arch/aarch64/kstat.h [new file with mode: 0644]
arch/arm/kstat.h [new file with mode: 0644]
arch/i386/kstat.h [new file with mode: 0644]
arch/m68k/kstat.h [new file with mode: 0644]
arch/microblaze/kstat.h [new file with mode: 0644]
arch/mips/kstat.h [new file with mode: 0644]
arch/mips64/kstat.h [new file with mode: 0644]
arch/mipsn32/kstat.h [new file with mode: 0644]
arch/or1k/kstat.h [new file with mode: 0644]
arch/powerpc/kstat.h [new file with mode: 0644]
arch/powerpc64/kstat.h [new file with mode: 0644]
arch/riscv64/kstat.h [new file with mode: 0644]
arch/s390x/kstat.h [new file with mode: 0644]
arch/sh/kstat.h [new file with mode: 0644]
arch/x32/kstat.h [new file with mode: 0644]
arch/x86_64/kstat.h [new file with mode: 0644]
src/stat/fstatat.c