]> sourceware.org Git - glibc.git/commit
Remove __ASSUME_GETDENTS64_SYSCALL.
authorJoseph Myers <joseph@codesourcery.com>
Tue, 22 Mar 2016 00:32:20 +0000 (00:32 +0000)
committerJoseph Myers <joseph@codesourcery.com>
Tue, 22 Mar 2016 00:32:20 +0000 (00:32 +0000)
commit37ad347359c0bb9c85a5ce4a6ca8dc430db4dfd9
tree054c85f77179dd3a638b6d31ea8b0d3466e60768
parent238d60ac9b0fb8262b18a44a23d14de4b59f2f23
Remove __ASSUME_GETDENTS64_SYSCALL.

This patch removes the __ASSUME_GETDENTS64_SYSCALL macro, as its
definition is constant given the new kernel version requirements (and
was constant anyway before those requirements except for MIPS n32).

Note that the "#ifdef __NR_getdents64" conditional *is* still needed,
because MIPS n64 only has the getdents syscall (being a 64-bit ABI,
that syscall is 64-bit; the difference between the two on 64-bit
architectures is where d_type goes).  If MIPS n64 were to gain the
getdents64 syscall and we wanted to use it conditionally on the kernel
version at runtime we'd have to revert this patch, but I think that's
unlikely (and in any case, we could follow the simpler approach of
undefining __NR_getdents64 if the syscall can't be assumed, just like
we do for accept4 / recvmmsg / sendmmsg syscalls on architectures
where socketcall support came first).

Most of the getdents.c changes are reindentation.

Tested for x86_64 and x86 that installed stripped shared libraries are
unchanged by the patch.

* sysdeps/unix/sysv/linux/kernel-features.h
(__ASSUME_GETDENTS64_SYSCALL): Remove macro.
* sysdeps/unix/sysv/linux/getdents.c
[!__ASSUME_GETDENTS64_SYSCALL]: Remove conditional code.
[!have_no_getdents64_defined]: Likewise.
(__GETDENTS): Remove __have_no_getdents64 conditional.
ChangeLog
sysdeps/unix/sysv/linux/getdents.c
sysdeps/unix/sysv/linux/kernel-features.h
This page took 0.041895 seconds and 5 git commands to generate.