diff options
author | Ulrich Drepper <drepper@redhat.com> | 2009-04-15 17:10:28 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-04-15 17:10:28 +0000 |
commit | e775ec11c449ab573ad4357b6e48a9aada983e0f (patch) | |
tree | 9f5c1d88323fc38dfbd812c7b66de815382f2327 | |
parent | 6a3d03ff58742430a252beac4a1917506512e319 (diff) | |
download | glibc-e775ec11c449ab573ad4357b6e48a9aada983e0f.zip glibc-e775ec11c449ab573ad4357b6e48a9aada983e0f.tar.gz glibc-e775ec11c449ab573ad4357b6e48a9aada983e0f.tar.bz2 |
* sysdeps/unix/sysv/linux/wordsize-64/fallocate.c: Likewise.cvs/fedora-glibc-20090416T0610
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/fallocate.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/fallocate64.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/wordsize-64/fallocate.c | 5 |
4 files changed, 8 insertions, 2 deletions
@@ -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> diff --git a/sysdeps/unix/sysv/linux/fallocate.c b/sysdeps/unix/sysv/linux/fallocate.c index 116f000..dc2b4e9 100644 --- a/sysdeps/unix/sysv/linux/fallocate.c +++ b/sysdeps/unix/sysv/linux/fallocate.c @@ -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)); diff --git a/sysdeps/unix/sysv/linux/fallocate64.c b/sysdeps/unix/sysv/linux/fallocate64.c index 2fbe988..ebcaf67 100644 --- a/sysdeps/unix/sysv/linux/fallocate64.c +++ b/sysdeps/unix/sysv/linux/fallocate64.c @@ -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), diff --git a/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c b/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c index 0eabab9..3e8954f 100644 --- a/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c +++ b/sysdeps/unix/sysv/linux/wordsize-64/fallocate.c @@ -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) |