Hello, here's a simple question I'm having trouble finding answers to that is probably trivial to answer for file system developers. Does a sequence of close()/re-open()/fsync() provide the same durability guarantees as fsync()/close()? http://pubs.opengroup.org/onlinepubs/009695399/functions/fsync.html specifies that "The fsync() function shall request that all data for the open file descriptor named by fildes is to be transferred to the storage device" which seems to restrict the statement to "for the open file descriptor", possibly suggesting that close()/open()/fsync() may not have the desired effect. Being able to link to an authorative answer would be very appreciated. Thanks, Niklas