diff --git a/linux/blkdev.c b/linux/blkdev.c index 805d55db..45b03fba 100644 --- a/linux/blkdev.c +++ b/linux/blkdev.c @@ -192,7 +192,7 @@ struct block_device *blkdev_get_by_path(const char *path, fmode_t mode, if (buffered_fd < 0) return ERR_PTR(-errno); - fd = open(path, flags); + fd = open(path, flags|O_DIRECT); if (fd < 0) fd = dup(buffered_fd); if (fd < 0) { @@ -200,7 +200,7 @@ struct block_device *blkdev_get_by_path(const char *path, fmode_t mode, return ERR_PTR(-errno); } - sync_fd = open(path, flags|O_SYNC); + sync_fd = open(path, flags|O_DIRECT|O_SYNC); if (sync_fd < 0) sync_fd = open(path, flags|O_SYNC); if (sync_fd < 0) {