On Fri, Jun 24, 2016 at 05:13:18PM +1000, Dave Chinner wrote:
This is a POSIX compliant fsync() implementation:
int fsync(int fd)
{
return 0;
}
Depends on what you mean with "Posix". Modern Posix which includex
XPG has the _POSIX_SYNCHRONIZED_IO option, which Linux implements. For
that Posix says about fsync:
[SIO] [Option Start] If _POSIX_SYNCHRONIZED_IO is defined, the fsync()
function shall force all currently queued I/O operations associated with
the file indicated by file descriptor fildes to the synchronized I/O
completion state. All I/O operations shall be completed as defined for
synchronized I/O file integrity completion. [Option End]
Whereas synchronized I/O file integrity completion is defined as:
3.378 Synchronized I/O Data Integrity Completion
For read, when the operation has been completed or diagnosed if
unsuccessful. The read is complete only when an image of the data has been
successfully transferred to the requesting process. If there were any
pending write requests affecting the data to be read at the time that the
synchronized read operation was requested, these write requests are
successfully transferred prior to reading the data.
For write, when the operation has been completed or diagnosed if
unsuccessful. The write is complete only when the data specified in the
write request is successfully transferred and all file system information
required to retrieve the data is successfully transferred.
File attributes that are not necessary for data retrieval (access time,
modification time, status change time) need not be successfully
transferred prior to returning to the calling process.
3.379 Synchronized I/O File Integrity Completion
Identical to a synchronized I/O data integrity completion with the
addition that all file attributes relative to the I/O operation (including
access time, modification time, status change time) are successfully
transferred prior to returning to the calling process.
So in this case Posix very much requires data to be on a stable
medium.
The POSIX exclusive write requirement is a different case. No linux
filesystem except XFS has ever met that requirement (in 20 something
years), yet I don't see applications falling over with corrupt data
from non-exclusive writes all the time, nor do I see application
developers shouting at us to provide it. i.e. reality tells us this
isn't a POSIX behaviour that applications rely on because everyone
implements it differently.
Every file system exludes writes from other writes.