/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ #ifndef FADVISE_H_INCLUDED #define FADVISE_H_INCLUDED #define POSIX_FADV_NORMAL … #define POSIX_FADV_RANDOM … #define POSIX_FADV_SEQUENTIAL … #define POSIX_FADV_WILLNEED … /* * The advise values for POSIX_FADV_DONTNEED and POSIX_ADV_NOREUSE * for s390-64 differ from the values for the rest of the world. */ #if defined(__s390x__) #define POSIX_FADV_DONTNEED … #define POSIX_FADV_NOREUSE … #else #define POSIX_FADV_DONTNEED … #define POSIX_FADV_NOREUSE … #endif #endif /* FADVISE_H_INCLUDED */