Skip to content

Commit

Permalink
Change misleading names of parameters of sync_file_range.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Nov 18, 2009
1 parent 8ad81b3 commit 424bea6
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 7 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
2009-11-17 Ulrich Drepper <drepper@redhat.com>

* sysdeps/unix/sysv/linux/sh/bits/fcntl.h: Change misleading names
of parameters of sync_file_range.
* sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h: Likewise.
* sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h: Likewise.
* sysdeps/unix/sysv/linux/sparc/bits/fcntl.h: Likewise.
* sysdeps/unix/sysv/linux/ia64/bits/fcntl.h: Likewise.
* sysdeps/unix/sysv/linux/i386/bits/fcntl.h: Likewise.
* sysdeps/unix/sysv/linux/s390/bits/fcntl.h: Likewise.

2009-11-16 Jakub Jelinek <jakub@redhat.com>

* sysdeps/unix/sysv/linux/sync_file_range.c (sync_file_range):
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/i386/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,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);


Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/ia64/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,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);


Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/powerpc/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,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);


Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/s390/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,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);


Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/sh/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,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);


Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/sparc/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,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);


Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/x86_64/bits/fcntl.h
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,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);


Expand Down

0 comments on commit 424bea6

Please sign in to comment.