aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2009-11-23 14:47:54 -0500
committerJoseph Myers <joseph@codesourcery.com>2009-12-06 18:24:00 +0000
commit015a3d04853815fd891ddb3f936a2c6b313a8dbd (patch)
treea83770007ba163aab87fd79f6225265b4c51e1e9
parent4dc21b9db13ab863dcff04ff54ae97c4e1e9b4b6 (diff)
downloadglibc-015a3d04853815fd891ddb3f936a2c6b313a8dbd.tar.xz
glibc-015a3d04853815fd891ddb3f936a2c6b313a8dbd.zip
Fix sync_file_range parameter names
Signed-off-by: Matt Turner <mattst88@gmail.com>
-rw-r--r--ChangeLog.alpha5
-rw-r--r--sysdeps/unix/sysv/linux/alpha/bits/fcntl.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog.alpha b/ChangeLog.alpha
index 7f543736ea..a21c8b4bc5 100644
--- a/ChangeLog.alpha
+++ b/ChangeLog.alpha
@@ -1,5 +1,10 @@
2009-11-23 Matt Turner <mattst88@gmail.com>
+ * sysdeps/unix/sysv/linux/alpha/bits/fcntl.h: Change misleading
+ names of parameters of sync_file_range.
+
+2009-11-23 Matt Turner <mattst88@gmail.com>
+
[BZ #10972]
* sysdeps/unix/sysv/linux/alpha/bits/mman.h: Add new MADV_*
constants from recent kernels.
diff --git a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
index 710bace21f..1e716438db 100644
--- a/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
+++ b/sysdeps/unix/sysv/linux/alpha/bits/fcntl.h
@@ -210,7 +210,7 @@ extern ssize_t readahead (int __fd, __off64_t __offset, size_t __count)
/* Selective file content synch'ing. */
-extern int sync_file_range (int __fd, __off64_t __from, __off64_t __to,
+extern int sync_file_range (int __fd, __off64_t __offset, __off64_t __count,
unsigned int __flags);