fallocate.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * fallocate() for uClibc - Based off of posix_fallocate() by Erik Andersen
  4. * http://www.opengroup.org/onlinepubs/9699919799/functions/posix_fallocate.html
  5. *
  6. * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
  7. *
  8. * Licensed under the LGPL v2.1 or later, see the file COPYING.LIB in this tarball.
  9. */
  10. #include <sys/syscall.h>
  11. #include <fcntl.h>
  12. #include <bits/kernel-features.h>
  13. #include <stdint.h>
  14. #include <errno.h>
  15. #if defined __NR_fallocate
  16. extern __typeof(fallocate) __libc_fallocate attribute_hidden;
  17. int attribute_hidden __libc_fallocate(int fd, int mode, __off_t offset, __off_t len)
  18. {
  19. int ret;
  20. # if __WORDSIZE == 32
  21. uint32_t off_low = offset;
  22. uint32_t len_low = len;
  23. /* may assert that these >>31 are 0 */
  24. uint32_t zero = 0;
  25. INTERNAL_SYSCALL_DECL(err);
  26. ret = (int) (INTERNAL_SYSCALL(fallocate, err, 6, fd, mode,
  27. __LONG_LONG_PAIR (zero, off_low),
  28. __LONG_LONG_PAIR (zero, len_low)));
  29. # elif __WORDSIZE == 64
  30. INTERNAL_SYSCALL_DECL(err);
  31. ret = (int) (INTERNAL_SYSCALL(fallocate, err, 4, fd, mode, offset, len));
  32. # else
  33. # error your machine is neither 32 bit or 64 bit ... it must be magical
  34. # endif
  35. if (unlikely(INTERNAL_SYSCALL_ERROR_P (ret, err))) {
  36. __set_errno(INTERNAL_SYSCALL_ERRNO (ret, err));
  37. ret = -1;
  38. }
  39. return ret;
  40. }
  41. # if defined __UCLIBC_LINUX_SPECIFIC__ && defined __USE_GNU
  42. strong_alias(__libc_fallocate,fallocate)
  43. # if __WORDSIZE == 64
  44. strong_alias(__libc_fallocate,fallocate64)
  45. # endif
  46. # endif
  47. #endif