Linux上的直接I / O.

前端之家收集整理的这篇文章主要介绍了Linux上的直接I / O.前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在 Linux Mint 13上启用/ opt(/ dev / sda6,ext4)上的直接I / O.我正在尝试的是:
mount -o dio,rw /dev/sda6 /opt

作为根.

系统响应:

mount: wrong fs type,bad option,bad superblock on /dev/hda2

dmesg报道:

EXT4-fs (sda6): Unrecognized mount option "dio" or missing value.

我无法确定要设置哪个参数来启用直接I / O(即使可以为ext4安装直接I / O).除此之外,如果ext4不支持直接I / O,有人可以指出一个在Linux上使用的文件系统吗?

解决方法

ext4没有dio mount选项(我相信AIX和Solaris都有),但它确实有dioread_lock和dioread_nolock挂载选项.从mount(8)手册页:

dioread_lock/dioread_nolock

Controls whether or not ext4 should use
the dio read locking. If the dioread_nolock option is specified ext4
will allocate uninitialized extent before buffer write and convert the
extent to initialized after IO completes.

This approach allows ext4 code to avoid using inode mutex,which
improves scalability on high speed storages. However this does not
work with data journaling and dioread_nolock option will be ignored
with kernel warning. Note that dioread_nolock code path is only used
for extent-based files. Because of the restrictions this options
comprises it is off by default (e.g. dioread_lock).

也就是说,正如其他人所提到的,直接I / O通常是通过在open(2)系统调用中设置O_DIRECT标志来启用的 – 即,它由应用程序控制,而不是挂载选项.除非您使用data = journal mount选项(参见ext4 documentationthis commit),否则ext4支持O_DIRECT.

对于InnoDB,我知道innodb_flush_method参数可用于启用O_DIRECT,但我不知道MyISAM的类似设置?

原文链接:https://www.f2er.com/linux/397004.html

猜你在找的Linux相关文章