From 6bbfc5c09fc5b5e3d4a0cddbbd4e2e457767dae7 Mon Sep 17 00:00:00 2001 From: Mao Han Date: Mon, 26 Nov 2018 11:13:32 +0800 Subject: Add statx conditionals for wordsize-32 *xstat.c Linux kernel have remove stat64 family from default syscall set, new implementations with statx is needed when __ARCH_WANT_STAT64 is not define. This patch add conditionals for relevant functions, using statx system call to get information and then copy to the return buf, ref to include/linux/fs.h from linux kernel. * sysdeps/unix/sysv/linux/Makefile: Add statx_cp.c. * sysdeps/unix/sysv/linux/fxstat64.c: Add conditionals for kernel without stat64 system call support. * sysdeps/unix/sysv/linux/fxstatat64.c: Likewise. * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c: Likewise. * sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c: Likewise. * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c: Likewise. * sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c: Likewise. * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c: Likewise. * sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c: Likewise. * sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c: New file. * sysdeps/unix/sysv/linux/statx_cp.c: Likewise. * sysdeps/unix/sysv/linux/statx_cp.h: Likewise. * sysdeps/unix/sysv/linux/wordsize-64/statx_cp.c: Likewise. --- sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c (limited to 'sysdeps/unix/sysv/linux/mips/mips64') diff --git a/sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c b/sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c new file mode 100644 index 0000000000..260cda987e --- /dev/null +++ b/sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c @@ -0,0 +1,3 @@ +/* Override the generic statx_cp.c which is only needed for new 32-bit arch + without stat64 family support. + */ -- cgit 1.4.1