1 .\" Copyright 1993 Rickard E. Faith (faith@cs.unc.edu) and
2 .\" and Copyright 2006 Michael Kerrisk <mtk.manpages@gmail.com>
4 .\" %%%LICENSE_START(VERBATIM)
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date. The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein. The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
26 .\" Modified 21 Aug 1994 by Michael Chastain <mec@shell.portal.com>:
27 .\" Removed note about old libc (pre-4.5.26) translating to 'sync'.
28 .\" Modified 15 Apr 1995 by Michael Chastain <mec@shell.portal.com>:
29 .\" Added `see also' section.
30 .\" Modified 13 Apr 1996 by Markus Kuhn <mskuhn@cip.informatik.uni-erlangen.de>
31 .\" Added remarks about fdatasync.
32 .\" Modified 31 Jan 1997 by Eric S. Raymond <esr@thyrsus.com>
33 .\" Modified 18 Apr 2001 by Andi Kleen
34 .\" Fix description to describe what it really does; add a few caveats.
35 .\" 2006-04-28, mtk, substantial rewrite of various parts.
36 .\" 2012-02-27 Various changes by Christoph Hellwig <hch@lst.de>
38 .TH FSYNC 2 2021-03-22 "Linux" "Linux Programmer's Manual"
40 fsync, fdatasync \- synchronize a file's in-core state with storage device
43 .B #include <unistd.h>
45 .BI "int fsync(int " fd );
47 .BI "int fdatasync(int " fd );
51 Feature Test Macro Requirements for glibc (see
52 .BR feature_test_macros (7)):
58 No feature test macros need be defined
59 Glibc up to and including 2.15:
60 _BSD_SOURCE || _XOPEN_SOURCE
61 || /* Since glibc 2.8: */ _POSIX_C_SOURCE >= 200112L
66 _POSIX_C_SOURCE >= 199309L || _XOPEN_SOURCE >= 500
70 transfers ("flushes") all modified in-core data of
71 (i.e., modified buffer cache pages for) the
72 file referred to by the file descriptor
74 to the disk device (or other permanent storage device) so that all
75 changed information can be retrieved even if the system crashes or
77 This includes writing through or flushing a disk cache if present.
78 The call blocks until the device reports that the transfer has completed.
80 As well as flushing the file data,
82 also flushes the metadata information associated with the file (see
87 does not necessarily ensure
88 that the entry in the directory containing the file has also reached disk.
91 on a file descriptor for the directory is also needed.
96 but does not flush modified metadata unless that metadata
97 is needed in order to allow a subsequent data retrieval to be
99 For example, changes to
103 (respectively, time of last access and
104 time of last modification; see
106 do not require flushing because they are not necessary for
107 a subsequent data read to be handled correctly.
108 On the other hand, a change to the file size
112 would require a metadata flush.
116 is to reduce disk activity for applications that do not
117 require all metadata to be synchronized with the disk.
119 On success, these system calls return zero.
120 On error, \-1 is returned, and
122 is set to indicate the error.
127 is not a valid open file descriptor.
130 An error occurred during synchronization.
131 This error may relate to data written to some other file descriptor
134 .\" commit 088737f44bbf6378745f5b57b035e57ee3dc4750
135 errors from write-back will be reported to
136 all file descriptors that might have written the data which triggered
138 Some filesystems (e.g., NFS) keep close track of which data
139 came through which file descriptor, and give more precise reporting.
140 Other filesystems (e.g., most local filesystems) will report errors to
141 all file descriptors that were open on the file when the error was recorded.
144 Disk space was exhausted while synchronizing.
146 .BR EROFS ", " EINVAL
148 is bound to a special file (e.g., a pipe, FIFO, or socket)
149 which does not support synchronization.
151 .BR ENOSPC ", " EDQUOT
153 is bound to a file on NFS or another filesystem which does not allocate
154 space at the time of a
156 system call, and some previous write failed due to insufficient
159 POSIX.1-2001, POSIX.1-2008, 4.3BSD.
161 On POSIX systems on which
164 .B _POSIX_SYNCHRONIZED_IO
167 to a value greater than 0.
170 .\" POSIX.1-2001: It shall be defined to -1 or 0 or 200112L.
171 .\" -1: unavailable, 0: ask using sysconf().
172 .\" glibc defines them to 1.
174 On some UNIX systems (but not Linux),
180 In Linux 2.2 and earlier,
184 and so has no performance advantage.
188 implementations in older kernels and lesser used filesystems
189 do not know how to flush disk caches.
190 In these cases disk caches need to be disabled using
194 to guarantee safe operation.
199 .BR posix_fadvise (2),
202 .BR sync_file_range (2),