Tagged Questions

4
votes
2answers
143 views

Is rename() without fsync() safe?

Is it safe to call rename(tmppath, path) without calling fsync(tmppath_fd) first? I want the path to always point to a complete file. I care mainly about Ext4. Is the rename() promised to be safe in ...
3
votes
3answers
77 views

Writing and reading the same fd without fsync in Linux

Suppose I write a block to a file descriptor without doing fsync and then read the same block from the same descriptor some time later. Is it guaranteed that I will receive the same information? The ...
3
votes
6answers
4k views

SD card write performance

I am writing a little application, which is writing jpeg images at a constant rate on a SD card. I choose an EXT3 filesystem, but the same behaviour was observed with an EXT2 filesystem. My writing ...
0
votes
2answers
92 views

Does msync sync all files on the filesystem to the disk like fsync on ext3?

as far as I know, on most ext3 system with log mode "data=ordered", fsync will not only sync the file specified with the fd, but will sync all files on the filesystem, and this problem has not been ...
0
votes
2answers
298 views

Possible to implement journaling with a single fsync per commit?

Let's say you're building a journaling/write-ahead-logging storage system. Can you simply implement this by (for each transaction) appending the data (with write(2)), appending a commit marker, and ...