Edit File by line
/home/barbar84/public_h.../wp-conte.../plugins/sujqvwi/ExeBy/smexe_ro.../usr/include/linux
File: fadvise.h
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
[0] Fix | Delete
#ifndef FADVISE_H_INCLUDED
[1] Fix | Delete
#define FADVISE_H_INCLUDED
[2] Fix | Delete
[3] Fix | Delete
#define POSIX_FADV_NORMAL 0 /* No further special treatment. */
[4] Fix | Delete
#define POSIX_FADV_RANDOM 1 /* Expect random page references. */
[5] Fix | Delete
#define POSIX_FADV_SEQUENTIAL 2 /* Expect sequential page references. */
[6] Fix | Delete
#define POSIX_FADV_WILLNEED 3 /* Will need these pages. */
[7] Fix | Delete
[8] Fix | Delete
/*
[9] Fix | Delete
* The advise values for POSIX_FADV_DONTNEED and POSIX_ADV_NOREUSE
[10] Fix | Delete
* for s390-64 differ from the values for the rest of the world.
[11] Fix | Delete
*/
[12] Fix | Delete
#if defined(__s390x__)
[13] Fix | Delete
#define POSIX_FADV_DONTNEED 6 /* Don't need these pages. */
[14] Fix | Delete
#define POSIX_FADV_NOREUSE 7 /* Data will be accessed once. */
[15] Fix | Delete
#else
[16] Fix | Delete
#define POSIX_FADV_DONTNEED 4 /* Don't need these pages. */
[17] Fix | Delete
#define POSIX_FADV_NOREUSE 5 /* Data will be accessed once. */
[18] Fix | Delete
#endif
[19] Fix | Delete
[20] Fix | Delete
#endif /* FADVISE_H_INCLUDED */
[21] Fix | Delete
[22] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function