Skip to content

Commit

Permalink
* sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ulrich Drepper committed Apr 15, 2009
1 parent 6a3d03f commit e775ec1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@

* sysdeps/unix/sysv/linux/fallocate.c: Handle old kernel headers.
* sysdeps/unix/sysv/linux/fallocate64.c: Likewise.
* sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.

2009-03-25 Andrew Stubbs <ams@codesourcery.com>

Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/fallocate.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
int
fallocate (int fd, int mode, __off_t offset, __off_t len)
{
#ifndef __NR_fallocate
#ifdef __NR_fallocate
return INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR (offset >> 31, offset),
__LONG_LONG_PAIR (len >> 31, len));
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/unix/sysv/linux/fallocate64.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
int
__fallocate64_l64 (int fd, int mode, __off64_t offset, __off64_t len)
{
#ifndef __NR_fallocate
#ifdef __NR_fallocate
return INLINE_SYSCALL (fallocate, 6, fd, mode,
__LONG_LONG_PAIR ((long int) (offset >> 32),
(long int) offset),
Expand Down
5 changes: 5 additions & 0 deletions sysdeps/unix/sysv/linux/wordsize-64/fallocate.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@
int
fallocate (int fd, int mode, __off_t offset, __off_t len)
{
#ifdef __NR_fallocate
return INLINE_SYSCALL (fallocate, 4, fd, mode, offset, len);
#else
__set_errno (ENOSYS);
return -1;
#endif
}
strong_alias (fallocate, fallocate64)

0 comments on commit e775ec1

Please sign in to comment.