about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2007-09-15 22:38:32 +0000
committerUlrich Drepper <drepper@redhat.com>2007-09-15 22:38:32 +0000
commit5e17d6b75b6c47e884fceda91078e8e988cbcf7d (patch)
tree07f65db05c4489be1e13adf3410ff99983312bbc /sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
parent3a50811c2fd1aff15552c0448fff66039488fee5 (diff)
downloadglibc-5e17d6b75b6c47e884fceda91078e8e988cbcf7d.tar.gz
glibc-5e17d6b75b6c47e884fceda91078e8e988cbcf7d.tar.xz
glibc-5e17d6b75b6c47e884fceda91078e8e988cbcf7d.zip
* sysdeps/unix/sysv/linux/i386/Makefile (sysdep_routines): Add
	call_fallocate in misc subdir.
	* sysdeps/unix/sysv/linux/i386/call_fallocate.S: New file.
	* sysdeps/unix/sysv/linux/i386/syscalls.list (fallocate64): Remove.
	* sysdeps/unix/sysv/linux/i386/posix_fallocate.c: Use __call_fallocate
	instead of __fallocate64.
	* sysdeps/unix/sysv/linux/i386/posix_fallocate64.c: Likewise.
Diffstat (limited to 'sysdeps/unix/sysv/linux/i386/posix_fallocate64.c')
-rw-r--r--sysdeps/unix/sysv/linux/i386/posix_fallocate64.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c b/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
index d5b4d597c1..f1ed7e315c 100644
--- a/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
+++ b/sysdeps/unix/sysv/linux/i386/posix_fallocate64.c
@@ -30,7 +30,7 @@ extern int __posix_fallocate64_l64 (int fd, __off64_t offset, __off64_t len);
 extern int __have_fallocate attribute_hidden;
 #endif
 
-extern int __fallocate64 (int fd, int mode, __off64_t offset, __off64_t len)
+extern int __call_fallocate (int fd, int mode, __off64_t offset, __off64_t len)
      attribute_hidden;
 
 /* Reserve storage for the data of the file associated with FD.  */
@@ -42,7 +42,7 @@ __posix_fallocate64_l64 (int fd, __off64_t offset, __off64_t len)
   if (__builtin_expect (__have_fallocate >= 0, 1))
 # endif
     {
-      int res = __fallocate64 (fd, 0, offset, len);
+      int res = __call_fallocate (fd, 0, offset, len);
 
       if (! res)
 	return 0;