Tagged Questions

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
101 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 ...