]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - lib/libc/sys/posix_fallocate.2
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / lib / libc / sys / posix_fallocate.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)open.2      8.2 (Berkeley) 11/16/93
29 .\" $FreeBSD$
30 .\"
31 .Dd February 25, 2012
32 .Dt POSIX_FALLOCATE 2
33 .Os
34 .Sh NAME
35 .Nm posix_fallocate
36 .Nd pre-allocate storage for a range in a file
37 .Sh LIBRARY
38 .Lb libc
39 .Sh SYNOPSIS
40 .In fcntl.h
41 .Ft int
42 .Fn posix_fallocate "int fd" "off_t offset" "off_t len"
43 .Sh DESCRIPTION
44 Required storage for the range
45 .Fa offset
46 to
47 .Fa offset +
48 .Fa len
49 in the file referenced by
50 .Fa fd
51 is guaranteed to be allocated upon successful return.
52 That is, if
53 .Fn posix_fallocate
54 returns successfully, subsequent writes to the specified file data
55 will not fail due to lack of free space on the file system storage
56 media.
57 Any existing file data in the specified range is unmodified.
58 If
59 .Fa offset +
60 .Fa len
61 is beyond the current file size, then
62 .Fn posix_fallocate
63 will adjust the file size to
64 .Fa offset +
65 .Fa len .
66 Otherwise, the file size will not be changed.
67 .Pp
68 Space allocated by
69 .Fn posix_fallocate
70 will be freed by a successful call to
71 .Xr creat 2
72 or
73 .Xr open 2
74 that truncates the size of the file.
75 Space allocated via
76 .Fn posix_fallocate
77 may be freed by a successful call to
78 .Xr ftruncate 2
79 that reduces the file size to a size smaller than
80 .Fa offset +
81 .Fa len .
82 .Pp
83 .Sh RETURN VALUES
84 If successful,
85 .Fn posix_fallocate
86 returns zero.
87 It returns -1 on failure, and sets
88 .Va errno
89 to indicate the error.
90 .Sh ERRORS
91 Possible failure conditions:
92 .Bl -tag -width Er
93 .It Bq Er EBADF
94 The
95 .Fa fd
96 argument is not a valid file descriptor.
97 .It Bq Er EBADF
98 The
99 .Fa fd
100 argument references a file that was opened without write permission.
101 .It Bq Er EFBIG
102 The value of
103 .Fa offset +
104 .Fa len
105 is greater than the maximum file size.
106 .It Bq Er EINTR
107 A signal was caught during execution.
108 .It Bq Er EINVAL
109 The
110 .Fa len
111 argument was zero or the
112 .Fa offset
113 argument was less than zero.
114 .It Bq Er EIO
115 An I/O error occurred while reading from or writing to a file system.
116 .It Bq Er ENODEV
117 The
118 .Fa fd
119 argument does not refer to a regular file.
120 .It Bq Er ENOSPC
121 There is insufficient free space remaining on the file system storage
122 media.
123 .It Bq Er ESPIPE
124 The
125 .Fa fd
126 argument is associated with a pipe or FIFO.
127 .El
128 .Sh SEE ALSO
129 .Xr creat 2 ,
130 .Xr ftruncate 2 ,
131 .Xr open 2 ,
132 .Xr unlink 2
133 .Sh STANDARDS
134 The
135 .Fn posix_fallocate
136 system call conforms to
137 .St -p1003.1-2004 .
138 .Sh HISTORY
139 The
140 .Fn posix_fallocate
141 function appeared in
142 .Fx 9.0 .
143 .Sh AUTHORS
144 .Fn posix_fallocate
145 and this manual page were initially written by
146 .An Matthew Fleming Aq mdf@FreeBSD.org .