]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libc/sys/aio_fsync.2
OpenSSL: update to 3.0.12
[FreeBSD/FreeBSD.git] / lib / libc / sys / aio_fsync.2
1 .\" Copyright (c) 2013 Sergey Kandaurov
2 .\" 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 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .Dd January 6, 2021
26 .Dt AIO_FSYNC 2
27 .Os
28 .Sh NAME
29 .Nm aio_fsync
30 .Nd asynchronous file synchronization (REALTIME)
31 .Sh LIBRARY
32 .Lb libc
33 .Sh SYNOPSIS
34 .In aio.h
35 .Ft int
36 .Fn aio_fsync "int op" "struct aiocb *iocb"
37 .Sh DESCRIPTION
38 The
39 .Fn aio_fsync
40 system call allows the calling process to move all modified data
41 associated with the descriptor
42 .Fa iocb->aio_fildes
43 to a permanent storage device.
44 The call returns immediately after the synchronization request has been
45 enqueued to the descriptor; the synchronization may or may not have
46 completed at the time the call returns.
47 .Pp
48 The
49 .Fa op
50 argument can be set to
51 .Dv O_SYNC
52 to cause all currently queued I/O operations to be completed
53 as if by a call to
54 .Xr fsync 2 ,
55 or
56 .Dv O_DSYNC
57 for the behavior of
58 .Xr fdatasync 2 .
59 .Pp
60 If _POSIX_PRIORITIZED_IO is defined, and the descriptor supports it,
61 then the enqueued operation is submitted at a priority equal to that
62 of the calling process minus
63 .Fa iocb->aio_reqprio .
64 .Pp
65 The
66 .Fa iocb
67 pointer may be subsequently used as an argument to
68 .Fn aio_return
69 and
70 .Fn aio_error
71 in order to determine return or error status for the enqueued operation
72 while it is in progress.
73 .Pp
74 If the request could not be enqueued (generally due to invalid arguments),
75 the call returns without having enqueued the request.
76 .Pp
77 The
78 .Fa iocb->aio_sigevent
79 structure can be used to request notification of the operation's
80 completion as described in
81 .Xr aio 4 .
82 .Sh RESTRICTIONS
83 The Asynchronous I/O Control Block structure pointed to by
84 .Fa iocb
85 must remain valid until the
86 operation has completed.
87 .Pp
88 The asynchronous I/O control buffer
89 .Fa iocb
90 should be zeroed before the
91 .Fn aio_fsync
92 call to avoid passing bogus context information to the kernel.
93 .Pp
94 Modification of the Asynchronous I/O Control Block structure is not allowed
95 while the request is queued.
96 .Sh RETURN VALUES
97 .Rv -std aio_fsync
98 .Sh ERRORS
99 The
100 .Fn aio_fsync
101 system call will fail if:
102 .Bl -tag -width Er
103 .It Bq Er EAGAIN
104 The request was not queued because of system resource limitations.
105 .It Bq Er EINVAL
106 The asynchronous notification method in
107 .Fa iocb->aio_sigevent.sigev_notify
108 is invalid or not supported.
109 .It Bq Er EOPNOTSUPP
110 Asynchronous file synchronization operations on the file descriptor
111 .Fa iocb->aio_fildes
112 are unsafe and unsafe asynchronous I/O operations are disabled.
113 .It Bq Er EINVAL
114 A value of the
115 .Fa op
116 argument is not set to
117 .Dv O_SYNC
118 or
119 .Dv O_DSYNC .
120 .El
121 .Pp
122 The following conditions may be synchronously detected when the
123 .Fn aio_fsync
124 system call is made, or asynchronously, at any time thereafter.
125 If they are detected at call time,
126 .Fn aio_fsync
127 returns -1 and sets
128 .Va errno
129 appropriately; otherwise the
130 .Fn aio_return
131 system call must be called, and will return -1, and
132 .Fn aio_error
133 must be called to determine the actual value that would have been
134 returned in
135 .Va errno .
136 .Bl -tag -width Er
137 .It Bq Er EBADF
138 The
139 .Fa iocb->aio_fildes
140 argument
141 is not a valid descriptor.
142 .It Bq Er EINVAL
143 This implementation does not support synchronized I/O for this file.
144 .El
145 .Pp
146 If the request is successfully enqueued, but subsequently cancelled
147 or an error occurs, the value returned by the
148 .Fn aio_return
149 system call is per the
150 .Xr read 2
151 and
152 .Xr write 2
153 system calls, and the value returned by the
154 .Fn aio_error
155 system call is one of the error returns from the
156 .Xr read 2
157 or
158 .Xr write 2
159 system calls.
160 .Sh SEE ALSO
161 .Xr aio_cancel 2 ,
162 .Xr aio_error 2 ,
163 .Xr aio_read 2 ,
164 .Xr aio_return 2 ,
165 .Xr aio_suspend 2 ,
166 .Xr aio_waitcomplete 2 ,
167 .Xr aio_write 2 ,
168 .Xr fsync 2 ,
169 .Xr sigevent 3 ,
170 .Xr siginfo 3 ,
171 .Xr aio 4
172 .Sh STANDARDS
173 The
174 .Fn aio_fsync
175 system call is expected to conform to the
176 .St -p1003.1
177 standard.
178 .Sh HISTORY
179 The
180 .Fn aio_fsync
181 system call first appeared in
182 .Fx 7.0 .
183 The
184 .Dv O_DSYNC
185 option appeared in
186 .Fx 13.0 .