1*8269e767SBrooks Davis.\" Copyright (c) 1991, 1993 2*8269e767SBrooks Davis.\" The Regents of the University of California. All rights reserved. 3*8269e767SBrooks Davis.\" 4*8269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without 5*8269e767SBrooks Davis.\" modification, are permitted provided that the following conditions 6*8269e767SBrooks Davis.\" are met: 7*8269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright 8*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer. 9*8269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright 10*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer in the 11*8269e767SBrooks Davis.\" documentation and/or other materials provided with the distribution. 12*8269e767SBrooks Davis.\" 3. Neither the name of the University nor the names of its contributors 13*8269e767SBrooks Davis.\" may be used to endorse or promote products derived from this software 14*8269e767SBrooks Davis.\" without specific prior written permission. 15*8269e767SBrooks Davis.\" 16*8269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17*8269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18*8269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19*8269e767SBrooks Davis.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20*8269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21*8269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22*8269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23*8269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24*8269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25*8269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26*8269e767SBrooks Davis.\" SUCH DAMAGE. 27*8269e767SBrooks Davis.\" 28*8269e767SBrooks Davis.Dd March 30, 2020 29*8269e767SBrooks Davis.Dt POSIX_FADVISE 2 30*8269e767SBrooks Davis.Os 31*8269e767SBrooks Davis.Sh NAME 32*8269e767SBrooks Davis.Nm posix_fadvise 33*8269e767SBrooks Davis.Nd give advice about use of file data 34*8269e767SBrooks Davis.Sh LIBRARY 35*8269e767SBrooks Davis.Lb libc 36*8269e767SBrooks Davis.Sh SYNOPSIS 37*8269e767SBrooks Davis.In fcntl.h 38*8269e767SBrooks Davis.Ft int 39*8269e767SBrooks Davis.Fn posix_fadvise "int fd" "off_t offset" "off_t len" "int advice" 40*8269e767SBrooks Davis.Sh DESCRIPTION 41*8269e767SBrooks DavisThe 42*8269e767SBrooks Davis.Fn posix_fadvise 43*8269e767SBrooks Davissystem call 44*8269e767SBrooks Davisallows a process to describe to the system its data access behavior for an 45*8269e767SBrooks Davisopen file descriptor 46*8269e767SBrooks Davis.Fa fd . 47*8269e767SBrooks DavisThe advice covers the data starting at offset 48*8269e767SBrooks Davis.Fa offset 49*8269e767SBrooks Davisand continuing for 50*8269e767SBrooks Davis.Fa len 51*8269e767SBrooks Davisbytes. 52*8269e767SBrooks DavisIf 53*8269e767SBrooks Davis.Fa len 54*8269e767SBrooks Davisis zero, 55*8269e767SBrooks Davisall data from 56*8269e767SBrooks Davis.Fa offset 57*8269e767SBrooks Davisto the end of the file is covered. 58*8269e767SBrooks Davis.Pp 59*8269e767SBrooks DavisThe behavior is specified by the 60*8269e767SBrooks Davis.Fa advice 61*8269e767SBrooks Davisparameter and may be one of: 62*8269e767SBrooks Davis.Bl -tag -width POSIX_FADV_SEQUENTIAL 63*8269e767SBrooks Davis.It Dv POSIX_FADV_NORMAL 64*8269e767SBrooks DavisTells the system to revert to the default data access behavior. 65*8269e767SBrooks Davis.It Dv POSIX_FADV_RANDOM 66*8269e767SBrooks DavisIs a hint that file data will be accessed randomly, 67*8269e767SBrooks Davisand prefetching is likely not advantageous. 68*8269e767SBrooks Davis.It Dv POSIX_FADV_SEQUENTIAL 69*8269e767SBrooks DavisTells the system that file data will be accessed sequentially. 70*8269e767SBrooks DavisThis currently does nothing as the default behavior uses heuristics to 71*8269e767SBrooks Davisdetect sequential behavior. 72*8269e767SBrooks Davis.It Dv POSIX_FADV_WILLNEED 73*8269e767SBrooks DavisTells the system that the specified data will be accessed in the near future. 74*8269e767SBrooks DavisThe system may initiate an asynchronous read of the data if it is not already 75*8269e767SBrooks Davispresent in memory. 76*8269e767SBrooks Davis.It Dv POSIX_FADV_DONTNEED 77*8269e767SBrooks DavisTells the system that the specified data will not be accessed in the near 78*8269e767SBrooks Davisfuture. 79*8269e767SBrooks DavisThe system may decrease the in-memory priority of clean data within the 80*8269e767SBrooks Davisspecified range and future access to this data may require a read operation. 81*8269e767SBrooks Davis.It Dv POSIX_FADV_NOREUSE 82*8269e767SBrooks DavisTells the system that the specified data will only be accessed once and 83*8269e767SBrooks Davisthen not reused. 84*8269e767SBrooks DavisThe system may decrease the in-memory priority of data once it has been 85*8269e767SBrooks Davisread or written. 86*8269e767SBrooks DavisFuture access to this data may require a read operation. 87*8269e767SBrooks Davis.El 88*8269e767SBrooks Davis.Sh RETURN VALUES 89*8269e767SBrooks DavisIf successful, 90*8269e767SBrooks Davis.Fn posix_fadvise 91*8269e767SBrooks Davisreturns zero. 92*8269e767SBrooks DavisIt returns an error on failure, without setting 93*8269e767SBrooks Davis.Va errno . 94*8269e767SBrooks Davis.Sh ERRORS 95*8269e767SBrooks DavisPossible failure conditions: 96*8269e767SBrooks Davis.Bl -tag -width Er 97*8269e767SBrooks Davis.It Bq Er EBADF 98*8269e767SBrooks DavisThe 99*8269e767SBrooks Davis.Fa fd 100*8269e767SBrooks Davisargument is not a valid file descriptor. 101*8269e767SBrooks Davis.It Bq Er EINVAL 102*8269e767SBrooks DavisThe 103*8269e767SBrooks Davis.Fa advice 104*8269e767SBrooks Davisargument is not valid. 105*8269e767SBrooks Davis.It Bq Er EINVAL 106*8269e767SBrooks DavisThe 107*8269e767SBrooks Davis.Fa offset 108*8269e767SBrooks Davisor 109*8269e767SBrooks Davis.Fa len 110*8269e767SBrooks Davisarguments are negative, 111*8269e767SBrooks Davisor 112*8269e767SBrooks Davis.Fa offset 113*8269e767SBrooks Davis+ 114*8269e767SBrooks Davis.Fa len 115*8269e767SBrooks Davisis greater than the maximum file size. 116*8269e767SBrooks Davis.It Bq Er ENODEV 117*8269e767SBrooks DavisThe 118*8269e767SBrooks Davis.Fa fd 119*8269e767SBrooks Davisargument does not refer to a regular file. 120*8269e767SBrooks Davis.It Bq Er ESPIPE 121*8269e767SBrooks DavisThe 122*8269e767SBrooks Davis.Fa fd 123*8269e767SBrooks Davisargument is associated with a pipe or FIFO. 124*8269e767SBrooks Davis.It Bq Er EIO 125*8269e767SBrooks DavisAn I/O error occurred while reading from or writing to a file system. 126*8269e767SBrooks Davis.It Bq Er EINTEGRITY 127*8269e767SBrooks DavisCorrupted data was detected while reading from the file system. 128*8269e767SBrooks Davis.El 129*8269e767SBrooks Davis.Sh SEE ALSO 130*8269e767SBrooks Davis.Xr madvise 2 131*8269e767SBrooks Davis.Sh STANDARDS 132*8269e767SBrooks DavisThe 133*8269e767SBrooks Davis.Fn posix_fadvise 134*8269e767SBrooks Davisinterface conforms to 135*8269e767SBrooks Davis.St -p1003.1-2001 . 136*8269e767SBrooks Davis.Sh HISTORY 137*8269e767SBrooks DavisThe 138*8269e767SBrooks Davis.Fn posix_fadvise 139*8269e767SBrooks Davissystem call first appeared in 140*8269e767SBrooks Davis.Fx 9.1 . 141