posix_fadvise.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /* Copyright (C) 2003-2019 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3. The GNU C Library is free software; you can redistribute it and/or
  4. modify it under the terms of the GNU Lesser General Public
  5. License as published by the Free Software Foundation; either
  6. version 2.1 of the License, or (at your option) any later version.
  7. The GNU C Library is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  10. Lesser General Public License for more details.
  11. You should have received a copy of the GNU Lesser General Public
  12. License along with the GNU C Library; if not, see
  13. <http://www.gnu.org/licenses/>. */
  14. #include <errno.h>
  15. #include <fcntl.h>
  16. #include <sysdep.h>
  17. /* Advice the system about the expected behaviour of the application with
  18. respect to the file associated with FD. */
  19. #ifndef __OFF_T_MATCHES_OFF64_T
  20. /* Default implementation will use __NR_fadvise64 with expected argument
  21. positions (for instance i386 and powerpc32 that uses __ALIGNMENT_ARG).
  22. Second option will be used by arm which define __NR_arm_fadvise64_64
  23. (redefined to __NR_fadvise64_64 in kernel-features.h) that behaves as
  24. __NR_fadvise64_64 (without the aligment argument required for the ABI).
  25. Third option will be used by mips o32. Mips will use a 7 argument
  26. syscall with __NR_fadvise64.
  27. s390 implements fadvice64_64 using a specific struct with arguments
  28. packed inside. This is the only implementation handled in arch-specific
  29. code. */
  30. int
  31. posix_fadvise (int fd, off_t offset, off_t len, int advise)
  32. {
  33. INTERNAL_SYSCALL_DECL (err);
  34. # if defined (__NR_fadvise64) && !defined (__ASSUME_FADVISE64_AS_64_64)
  35. int ret = INTERNAL_SYSCALL_CALL (fadvise64, err, fd,
  36. __ALIGNMENT_ARG SYSCALL_LL (offset),
  37. len, advise);
  38. # else
  39. # ifdef __ASSUME_FADVISE64_64_6ARG
  40. int ret = INTERNAL_SYSCALL_CALL (fadvise64_64, err, fd, advise,
  41. SYSCALL_LL (offset), SYSCALL_LL (len));
  42. # else
  43. # ifndef __NR_fadvise64_64
  44. # define __NR_fadvise64_64 __NR_fadvise64
  45. # endif
  46. int ret = INTERNAL_SYSCALL_CALL (fadvise64_64, err, fd,
  47. __ALIGNMENT_ARG SYSCALL_LL (offset),
  48. SYSCALL_LL (len), advise);
  49. # endif
  50. # endif
  51. if (INTERNAL_SYSCALL_ERROR_P (ret, err))
  52. return INTERNAL_SYSCALL_ERRNO (ret, err);
  53. return 0;
  54. }
  55. #endif /* __OFF_T_MATCHES_OFF64_T */