]> git.ipfire.org Git - thirdparty/glibc.git/commit
Add statx conditionals for wordsize-32 *xstat.c
authorMao Han <han_mao@c-sky.com>
Mon, 26 Nov 2018 03:13:32 +0000 (11:13 +0800)
committerMao Han <han_mao@c-sky.com>
Mon, 17 Dec 2018 01:20:02 +0000 (09:20 +0800)
commit6bbfc5c09fc5b5e3d4a0cddbbd4e2e457767dae7
tree955a159fecbcbd37e3d54de624326618f036cac4
parentef202e530c2384d6a47951ed1c6b63ed945e462f
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.
14 files changed:
ChangeLog
sysdeps/unix/sysv/linux/Makefile
sysdeps/unix/sysv/linux/fxstat64.c
sysdeps/unix/sysv/linux/fxstatat64.c
sysdeps/unix/sysv/linux/generic/wordsize-32/fxstat.c
sysdeps/unix/sysv/linux/generic/wordsize-32/fxstatat.c
sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat.c
sysdeps/unix/sysv/linux/generic/wordsize-32/lxstat64.c
sysdeps/unix/sysv/linux/generic/wordsize-32/xstat.c
sysdeps/unix/sysv/linux/generic/wordsize-32/xstat64.c
sysdeps/unix/sysv/linux/mips/mips64/statx_cp.c [new file with mode: 0644]
sysdeps/unix/sysv/linux/statx_cp.c [new file with mode: 0644]
sysdeps/unix/sysv/linux/statx_cp.h [new file with mode: 0644]
sysdeps/unix/sysv/linux/wordsize-64/statx_cp.c [new file with mode: 0644]