diff options
author | Joseph Myers <joseph@codesourcery.com> | 2016-03-17 12:15:51 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2016-03-17 12:15:51 +0000 |
commit | 4674df40bbe2adf301fa47c8088fcb777048798b (patch) | |
tree | 951f7993908725baa9365fbd5cf13bdd8ce66d64 /ChangeLog | |
parent | 86ed888255bcafa7cd3c4eb248815b1ba4eb3699 (diff) | |
download | glibc-4674df40bbe2adf301fa47c8088fcb777048798b.tar.gz glibc-4674df40bbe2adf301fa47c8088fcb777048798b.tar.xz glibc-4674df40bbe2adf301fa47c8088fcb777048798b.zip |
Remove __ASSUME_FALLOCATE.
Given current Linux kernel version requirements, we can always assume the fallocate syscall to be available. This patch removes __ASSUME_FALLOCATE and a test for whether __NR_fallocate is defined. Tested for x86_64 and x86 that installed stripped shared libraries are unchanged by the patch. * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FALLOCATE): Remove macro. * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: Do not include <kernel-features.h>. [!__ASSUME_FALLOCATE]: Remove conditional code. (posix_fallocate) [__NR_fallocate]: Make code unconditional.
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 1eb8bd868a..9b321ec51f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2016-03-17 Joseph Myers <joseph@codesourcery.com> + + * sysdeps/unix/sysv/linux/kernel-features.h (__ASSUME_FALLOCATE): + Remove macro. + * sysdeps/unix/sysv/linux/wordsize-64/posix_fallocate.c: Do not + include <kernel-features.h>. + [!__ASSUME_FALLOCATE]: Remove conditional code. + (posix_fallocate) [__NR_fallocate]: Make code unconditional. + 2016-03-16 H.J. Lu <hongjiu.lu@intel.com> * sysdeps/x86_64/fpu/multiarch/svml_d_cos2_core_sse4.S |