Skip to content
Snippets Groups Projects
Commit 6bc40f4d authored by Roman Tsisyk's avatar Roman Tsisyk
Browse files

Add a workaround to fiob for filesystems without O_DIRECT support.

Fix #209
parent e3c46b7f
No related branches found
No related tags found
No related merge requests found
......@@ -305,6 +305,18 @@ fiob_open(const char *path, const char *mode)
f->bsize = bsize;
f->fd = open(path, flags, omode);
#ifdef O_DIRECT
if (f->fd < 0 && (flags & O_DIRECT) && errno == EINVAL) {
/*
* Some filesystems don't support O_DIRECT mode (e.g. tmpfs).
* With O_CREAT|O_DIRECT flags Linux normally creates inode
* in directory and then fails on trying to open it.
* Try to re-open created file without O_DIRECT|O_CREATE flags.
*/
flags &= ~(int) (O_DIRECT | O_CREAT);
f->fd = open(path, flags, omode);
}
#endif /* O_DIRECT */
if (f->fd < 0)
goto error;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment