Commit acda97ac authored by Igor Matheus Andrade Torrente's avatar Igor Matheus Andrade Torrente Committed by Jonathan Corbet

docs: convert dax.txt to rst

Change the file extension and add the rst constructs to integrate this
doc to the documentation infrastructure and take advantage of rst
features.
Signed-off-by: default avatarIgor Matheus Andrade Torrente <igormtorrente@gmail.com>
Link: https://lore.kernel.org/r/20210531130515.10309-1-igormtorrente@gmail.comSigned-off-by: default avatarJonathan Corbet <corbet@lwn.net>
parent fb7b26a8
=======================
Direct Access for files Direct Access for files
----------------------- =======================
Motivation Motivation
---------- ----------
...@@ -9,7 +10,7 @@ It is also used to provide the pages which are mapped into userspace ...@@ -9,7 +10,7 @@ It is also used to provide the pages which are mapped into userspace
by a call to mmap. by a call to mmap.
For block devices that are memory-like, the page cache pages would be For block devices that are memory-like, the page cache pages would be
unnecessary copies of the original storage. The DAX code removes the unnecessary copies of the original storage. The `DAX` code removes the
extra copy by performing reads and writes directly to the storage device. extra copy by performing reads and writes directly to the storage device.
For file mappings, the storage device is mapped directly into userspace. For file mappings, the storage device is mapped directly into userspace.
...@@ -17,20 +18,20 @@ For file mappings, the storage device is mapped directly into userspace. ...@@ -17,20 +18,20 @@ For file mappings, the storage device is mapped directly into userspace.
Usage Usage
----- -----
If you have a block device which supports DAX, you can make a filesystem If you have a block device which supports `DAX`, you can make a filesystem
on it as usual. The DAX code currently only supports files with a block on it as usual. The `DAX` code currently only supports files with a block
size equal to your kernel's PAGE_SIZE, so you may need to specify a block size equal to your kernel's `PAGE_SIZE`, so you may need to specify a block
size when creating the filesystem. size when creating the filesystem.
Currently 3 filesystems support DAX: ext2, ext4 and xfs. Enabling DAX on them Currently 3 filesystems support `DAX`: ext2, ext4 and xfs. Enabling `DAX` on them
is different. is different.
Enabling DAX on ext2 Enabling DAX on ext2
----------------------------- --------------------
When mounting the filesystem, use the "-o dax" option on the command line or When mounting the filesystem, use the ``-o dax`` option on the command line or
add 'dax' to the options in /etc/fstab. This works to enable DAX on all files add 'dax' to the options in ``/etc/fstab``. This works to enable `DAX` on all files
within the filesystem. It is equivalent to the '-o dax=always' behavior below. within the filesystem. It is equivalent to the ``-o dax=always`` behavior below.
Enabling DAX on xfs and ext4 Enabling DAX on xfs and ext4
...@@ -39,51 +40,56 @@ Enabling DAX on xfs and ext4 ...@@ -39,51 +40,56 @@ Enabling DAX on xfs and ext4
Summary Summary
------- -------
1. There exists an in-kernel file access mode flag S_DAX that corresponds to 1. There exists an in-kernel file access mode flag `S_DAX` that corresponds to
the statx flag STATX_ATTR_DAX. See the manpage for statx(2) for details the statx flag `STATX_ATTR_DAX`. See the manpage for statx(2) for details
about this access mode. about this access mode.
2. There exists a persistent flag FS_XFLAG_DAX that can be applied to regular 2. There exists a persistent flag `FS_XFLAG_DAX` that can be applied to regular
files and directories. This advisory flag can be set or cleared at any files and directories. This advisory flag can be set or cleared at any
time, but doing so does not immediately affect the S_DAX state. time, but doing so does not immediately affect the `S_DAX` state.
3. If the persistent FS_XFLAG_DAX flag is set on a directory, this flag will 3. If the persistent `FS_XFLAG_DAX` flag is set on a directory, this flag will
be inherited by all regular files and subdirectories that are subsequently be inherited by all regular files and subdirectories that are subsequently
created in this directory. Files and subdirectories that exist at the time created in this directory. Files and subdirectories that exist at the time
this flag is set or cleared on the parent directory are not modified by this flag is set or cleared on the parent directory are not modified by
this modification of the parent directory. this modification of the parent directory.
4. There exist dax mount options which can override FS_XFLAG_DAX in the 4. There exist dax mount options which can override `FS_XFLAG_DAX` in the
setting of the S_DAX flag. Given underlying storage which supports DAX the setting of the `S_DAX` flag. Given underlying storage which supports `DAX` the
following hold: following hold:
"-o dax=inode" means "follow FS_XFLAG_DAX" and is the default. ``-o dax=inode`` means "follow `FS_XFLAG_DAX`" and is the default.
"-o dax=never" means "never set S_DAX, ignore FS_XFLAG_DAX." ``-o dax=never`` means "never set `S_DAX`, ignore `FS_XFLAG_DAX`."
"-o dax=always" means "always set S_DAX ignore FS_XFLAG_DAX." ``-o dax=always`` means "always set `S_DAX` ignore `FS_XFLAG_DAX`."
"-o dax" is a legacy option which is an alias for "dax=always". ``-o dax`` is a legacy option which is an alias for ``dax=always``.
This may be removed in the future so "-o dax=always" is
the preferred method for specifying this behavior.
NOTE: Modifications to and the inheritance behavior of FS_XFLAG_DAX remain .. warning::
the same even when the filesystem is mounted with a dax option. However,
in-core inode state (S_DAX) will be overridden until the filesystem is
remounted with dax=inode and the inode is evicted from kernel memory.
5. The S_DAX policy can be changed via: The option ``-o dax`` may be removed in the future so ``-o dax=always`` is
the preferred method for specifying this behavior.
a) Setting the parent directory FS_XFLAG_DAX as needed before files are .. note::
Modifications to and the inheritance behavior of `FS_XFLAG_DAX` remain
the same even when the filesystem is mounted with a dax option. However,
in-core inode state (`S_DAX`) will be overridden until the filesystem is
remounted with dax=inode and the inode is evicted from kernel memory.
5. The `S_DAX` policy can be changed via:
a) Setting the parent directory `FS_XFLAG_DAX` as needed before files are
created created
b) Setting the appropriate dax="foo" mount option b) Setting the appropriate dax="foo" mount option
c) Changing the FS_XFLAG_DAX flag on existing regular files and c) Changing the `FS_XFLAG_DAX` flag on existing regular files and
directories. This has runtime constraints and limitations that are directories. This has runtime constraints and limitations that are
described in 6) below. described in 6) below.
6. When changing the S_DAX policy via toggling the persistent FS_XFLAG_DAX 6. When changing the `S_DAX` policy via toggling the persistent `FS_XFLAG_DAX`
flag, the change to existing regular files won't take effect until the flag, the change to existing regular files won't take effect until the
files are closed by all processes. files are closed by all processes.
...@@ -91,16 +97,16 @@ Summary ...@@ -91,16 +97,16 @@ Summary
Details Details
------- -------
There are 2 per-file dax flags. One is a persistent inode setting (FS_XFLAG_DAX) There are 2 per-file dax flags. One is a persistent inode setting (`FS_XFLAG_DAX`)
and the other is a volatile flag indicating the active state of the feature and the other is a volatile flag indicating the active state of the feature
(S_DAX). (`S_DAX`).
FS_XFLAG_DAX is preserved within the filesystem. This persistent config `FS_XFLAG_DAX` is preserved within the filesystem. This persistent config
setting can be set, cleared and/or queried using the FS_IOC_FS[GS]ETXATTR ioctl setting can be set, cleared and/or queried using the `FS_IOC_FS`[`GS`]`ETXATTR` ioctl
(see ioctl_xfs_fsgetxattr(2)) or an utility such as 'xfs_io'. (see ioctl_xfs_fsgetxattr(2)) or an utility such as 'xfs_io'.
New files and directories automatically inherit FS_XFLAG_DAX from New files and directories automatically inherit `FS_XFLAG_DAX` from
their parent directory _when_ _created_. Therefore, setting FS_XFLAG_DAX at their parent directory **when created**. Therefore, setting `FS_XFLAG_DAX` at
directory creation time can be used to set a default behavior for an entire directory creation time can be used to set a default behavior for an entire
sub-tree. sub-tree.
...@@ -108,51 +114,64 @@ To clarify inheritance, here are 3 examples: ...@@ -108,51 +114,64 @@ To clarify inheritance, here are 3 examples:
Example A: Example A:
mkdir -p a/b/c .. code-block:: shell
xfs_io -c 'chattr +x' a
mkdir a/b/c/d
mkdir a/e
dax: a,e mkdir -p a/b/c
no dax: b,c,d xfs_io -c 'chattr +x' a
mkdir a/b/c/d
mkdir a/e
------[outcome]------
dax: a,e
no dax: b,c,d
Example B: Example B:
mkdir a .. code-block:: shell
xfs_io -c 'chattr +x' a
mkdir -p a/b/c/d mkdir a
xfs_io -c 'chattr +x' a
mkdir -p a/b/c/d
dax: a,b,c,d ------[outcome]------
no dax:
dax: a,b,c,d
no dax:
Example C: Example C:
mkdir -p a/b/c .. code-block:: shell
xfs_io -c 'chattr +x' c
mkdir a/b/c/d mkdir -p a/b/c
xfs_io -c 'chattr +x' c
mkdir a/b/c/d
dax: c,d ------[outcome]------
no dax: a,b
dax: c,d
no dax: a,b
The current enabled state (S_DAX) is set when a file inode is instantiated in The current enabled state (`S_DAX`) is set when a file inode is instantiated in
memory by the kernel. It is set based on the underlying media support, the memory by the kernel. It is set based on the underlying media support, the
value of FS_XFLAG_DAX and the filesystem's dax mount option. value of `FS_XFLAG_DAX` and the filesystem's dax mount option.
statx can be used to query `S_DAX`.
statx can be used to query S_DAX. NOTE that only regular files will ever have .. note::
S_DAX set and therefore statx will never indicate that S_DAX is set on
directories.
Setting the FS_XFLAG_DAX flag (specifically or through inheritance) occurs even That only regular files will ever have `S_DAX` set and therefore statx
will never indicate that `S_DAX` is set on directories.
Setting the `FS_XFLAG_DAX` flag (specifically or through inheritance) occurs even
if the underlying media does not support dax and/or the filesystem is if the underlying media does not support dax and/or the filesystem is
overridden with a mount option. overridden with a mount option.
Implementation Tips for Block Driver Writers Implementation Tips for Block Driver Writers
-------------------------------------------- --------------------------------------------
To support DAX in your block driver, implement the 'direct_access' To support `DAX` in your block driver, implement the 'direct_access'
block device operation. It is used to translate the sector number block device operation. It is used to translate the sector number
(expressed in units of 512-byte sectors) to a page frame number (pfn) (expressed in units of 512-byte sectors) to a page frame number (pfn)
that identifies the physical page for the memory. It also returns a that identifies the physical page for the memory. It also returns a
...@@ -179,19 +198,20 @@ These block devices may be used for inspiration: ...@@ -179,19 +198,20 @@ These block devices may be used for inspiration:
Implementation Tips for Filesystem Writers Implementation Tips for Filesystem Writers
------------------------------------------ ------------------------------------------
Filesystem support consists of Filesystem support consists of:
- adding support to mark inodes as being DAX by setting the S_DAX flag in
* Adding support to mark inodes as being `DAX` by setting the `S_DAX` flag in
i_flags i_flags
- implementing ->read_iter and ->write_iter operations which use dax_iomap_rw() * Implementing ->read_iter and ->write_iter operations which use
when inode has S_DAX flag set :c:func:`dax_iomap_rw()` when inode has `S_DAX` flag set
- implementing an mmap file operation for DAX files which sets the * Implementing an mmap file operation for `DAX` files which sets the
VM_MIXEDMAP and VM_HUGEPAGE flags on the VMA, and setting the vm_ops to `VM_MIXEDMAP` and `VM_HUGEPAGE` flags on the `VMA`, and setting the vm_ops to
include handlers for fault, pmd_fault, page_mkwrite, pfn_mkwrite. These include handlers for fault, pmd_fault, page_mkwrite, pfn_mkwrite. These
handlers should probably call dax_iomap_fault() passing the appropriate handlers should probably call :c:func:`dax_iomap_fault()` passing the
fault size and iomap operations. appropriate fault size and iomap operations.
- calling iomap_zero_range() passing appropriate iomap operations instead of * Calling :c:func:`iomap_zero_range()` passing appropriate iomap operations
block_truncate_page() for DAX files instead of :c:func:`block_truncate_page()` for `DAX` files
- ensuring that there is sufficient locking between reads, writes, * Ensuring that there is sufficient locking between reads, writes,
truncates and page faults truncates and page faults
The iomap handlers for allocating blocks must make sure that allocated blocks The iomap handlers for allocating blocks must make sure that allocated blocks
...@@ -199,9 +219,18 @@ are zeroed out and converted to written extents before being returned to avoid ...@@ -199,9 +219,18 @@ are zeroed out and converted to written extents before being returned to avoid
exposure of uninitialized data through mmap. exposure of uninitialized data through mmap.
These filesystems may be used for inspiration: These filesystems may be used for inspiration:
- ext2: see Documentation/filesystems/ext2.rst
- ext4: see Documentation/filesystems/ext4/ .. seealso::
- xfs: see Documentation/admin-guide/xfs.rst
ext2: see Documentation/filesystems/ext2.rst
.. seealso::
xfs: see Documentation/admin-guide/xfs.rst
.. seealso::
ext4: see Documentation/filesystems/ext4/
Handling Media Errors Handling Media Errors
...@@ -210,12 +239,12 @@ Handling Media Errors ...@@ -210,12 +239,12 @@ Handling Media Errors
The libnvdimm subsystem stores a record of known media error locations for The libnvdimm subsystem stores a record of known media error locations for
each pmem block device (in gendisk->badblocks). If we fault at such location, each pmem block device (in gendisk->badblocks). If we fault at such location,
or one with a latent error not yet discovered, the application can expect or one with a latent error not yet discovered, the application can expect
to receive a SIGBUS. Libnvdimm also allows clearing of these errors by simply to receive a `SIGBUS`. Libnvdimm also allows clearing of these errors by simply
writing the affected sectors (through the pmem driver, and if the underlying writing the affected sectors (through the pmem driver, and if the underlying
NVDIMM supports the clear_poison DSM defined by ACPI). NVDIMM supports the clear_poison DSM defined by ACPI).
Since DAX IO normally doesn't go through the driver/bio path, applications or Since `DAX` IO normally doesn't go through the ``driver/bio`` path, applications or
sysadmins have an option to restore the lost data from a prior backup/inbuilt sysadmins have an option to restore the lost data from a prior ``backup/inbuilt``
redundancy in the following ways: redundancy in the following ways:
1. Delete the affected file, and restore from a backup (sysadmin route): 1. Delete the affected file, and restore from a backup (sysadmin route):
...@@ -227,7 +256,7 @@ redundancy in the following ways: ...@@ -227,7 +256,7 @@ redundancy in the following ways:
an entire aligned sector has to be hole-punched, but not necessarily an an entire aligned sector has to be hole-punched, but not necessarily an
entire filesystem block). entire filesystem block).
These are the two basic paths that allow DAX filesystems to continue operating These are the two basic paths that allow `DAX` filesystems to continue operating
in the presence of media errors. More robust error recovery mechanisms can be in the presence of media errors. More robust error recovery mechanisms can be
built on top of this in the future, for example, involving redundancy/mirroring built on top of this in the future, for example, involving redundancy/mirroring
provided at the block layer through DM, or additionally, at the filesystem provided at the block layer through DM, or additionally, at the filesystem
...@@ -240,18 +269,23 @@ Shortcomings ...@@ -240,18 +269,23 @@ Shortcomings
------------ ------------
Even if the kernel or its modules are stored on a filesystem that supports Even if the kernel or its modules are stored on a filesystem that supports
DAX on a block device that supports DAX, they will still be copied into RAM. `DAX` on a block device that supports `DAX`, they will still be copied into RAM.
The DAX code does not work correctly on architectures which have virtually The DAX code does not work correctly on architectures which have virtually
mapped caches such as ARM, MIPS and SPARC. mapped caches such as ARM, MIPS and SPARC.
Calling get_user_pages() on a range of user memory that has been mmaped Calling :c:func:`get_user_pages()` on a range of user memory that has been
from a DAX file will fail when there are no 'struct page' to describe mmaped from a `DAX` file will fail when there are no 'struct page' to describe
those pages. This problem has been addressed in some device drivers those pages. This problem has been addressed in some device drivers
by adding optional struct page support for pages under the control of by adding optional struct page support for pages under the control of
the driver (see CONFIG_NVDIMM_PFN in drivers/nvdimm for an example of the driver (see `CONFIG_NVDIMM_PFN` in ``drivers/nvdimm`` for an example of
how to do this). In the non struct page cases O_DIRECT reads/writes to how to do this). In the non struct page cases `O_DIRECT` reads/writes to
those memory ranges from a non-DAX file will fail (note that O_DIRECT those memory ranges from a non-`DAX` file will fail
reads/writes _of a DAX file_ do work, it is the memory that is being
accessed that is key here). Other things that will not work in the
non struct page case include RDMA, sendfile() and splice(). .. note::
`O_DIRECT` reads/writes _of a `DAX` file do work, it is the memory that
is being accessed that is key here). Other things that will not work in
the non struct page case include RDMA, :c:func:`sendfile()` and
:c:func:`splice()`.
...@@ -77,6 +77,7 @@ Documentation for filesystem implementations. ...@@ -77,6 +77,7 @@ Documentation for filesystem implementations.
coda coda
configfs configfs
cramfs cramfs
dax
debugfs debugfs
dlmfs dlmfs
ecryptfs ecryptfs
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment