* [PATCH] Add dax mount option to man xfs(5)
@ 2021-03-15 15:02 Carlos Maiolino
2021-04-01 10:40 ` Carlos Maiolino
2021-04-01 15:33 ` Darrick J. Wong
0 siblings, 2 replies; 4+ messages in thread
From: Carlos Maiolino @ 2021-03-15 15:02 UTC (permalink / raw)
To: linux-xfs
Details are already in kernel's documentation, but make dax mount option
information accessible through xfs(5) manpage.
Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com>
---
man/man5/xfs.5 | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/man/man5/xfs.5 b/man/man5/xfs.5
index 7642662f..46b0558a 100644
--- a/man/man5/xfs.5
+++ b/man/man5/xfs.5
@@ -133,6 +133,24 @@ by the filesystem.
CRC enabled filesystems always use the attr2 format, and so
will reject the noattr2 mount option if it is set.
.TP
+.BR dax=value
+Set DAX behavior for the current filesystem. This mount option accepts the
+following values:
+
+"dax=inode" DAX will be enabled only on files with FS_XFLAG_DAX applied.
+
+"dax=never" DAX will be disabled by the whole filesystem including files with
+FS_XFLAG_DAX applied"
+
+"dax=always" DAX will be enabled to every file in the filesystem inclduing files
+without FS_XFLAG_DAX applied"
+
+If no option is used when mounting a pmem device, dax=inode will be used as
+default.
+
+For details regarding DAX behavior in kernel, please refer to kernel's
+documentation at filesystems/dax.txt
+.TP
.BR discard | nodiscard
Enable/disable the issuing of commands to let the block
device reclaim space freed by the filesystem. This is
--
2.29.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Add dax mount option to man xfs(5)
2021-03-15 15:02 [PATCH] Add dax mount option to man xfs(5) Carlos Maiolino
@ 2021-04-01 10:40 ` Carlos Maiolino
2021-04-01 15:33 ` Darrick J. Wong
1 sibling, 0 replies; 4+ messages in thread
From: Carlos Maiolino @ 2021-04-01 10:40 UTC (permalink / raw)
To: linux-xfs
On Mon, Mar 15, 2021 at 04:02:50PM +0100, Carlos Maiolino wrote:
> Details are already in kernel's documentation, but make dax mount option
> information accessible through xfs(5) manpage.
>
> Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com>
> ---
Polite ping :)
> man/man5/xfs.5 | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/man/man5/xfs.5 b/man/man5/xfs.5
> index 7642662f..46b0558a 100644
> --- a/man/man5/xfs.5
> +++ b/man/man5/xfs.5
> @@ -133,6 +133,24 @@ by the filesystem.
> CRC enabled filesystems always use the attr2 format, and so
> will reject the noattr2 mount option if it is set.
> .TP
> +.BR dax=value
> +Set DAX behavior for the current filesystem. This mount option accepts the
> +following values:
> +
> +"dax=inode" DAX will be enabled only on files with FS_XFLAG_DAX applied.
> +
> +"dax=never" DAX will be disabled by the whole filesystem including files with
> +FS_XFLAG_DAX applied"
> +
> +"dax=always" DAX will be enabled to every file in the filesystem inclduing files
> +without FS_XFLAG_DAX applied"
> +
> +If no option is used when mounting a pmem device, dax=inode will be used as
> +default.
> +
> +For details regarding DAX behavior in kernel, please refer to kernel's
> +documentation at filesystems/dax.txt
> +.TP
> .BR discard | nodiscard
> Enable/disable the issuing of commands to let the block
> device reclaim space freed by the filesystem. This is
> --
> 2.29.2
>
--
Carlos
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Add dax mount option to man xfs(5)
2021-03-15 15:02 [PATCH] Add dax mount option to man xfs(5) Carlos Maiolino
2021-04-01 10:40 ` Carlos Maiolino
@ 2021-04-01 15:33 ` Darrick J. Wong
2021-04-06 11:44 ` Carlos Maiolino
1 sibling, 1 reply; 4+ messages in thread
From: Darrick J. Wong @ 2021-04-01 15:33 UTC (permalink / raw)
To: Carlos Maiolino; +Cc: linux-xfs
On Mon, Mar 15, 2021 at 04:02:50PM +0100, Carlos Maiolino wrote:
> Details are already in kernel's documentation, but make dax mount option
> information accessible through xfs(5) manpage.
>
> Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com>
> ---
> man/man5/xfs.5 | 18 ++++++++++++++++++
> 1 file changed, 18 insertions(+)
>
> diff --git a/man/man5/xfs.5 b/man/man5/xfs.5
> index 7642662f..46b0558a 100644
> --- a/man/man5/xfs.5
> +++ b/man/man5/xfs.5
> @@ -133,6 +133,24 @@ by the filesystem.
> CRC enabled filesystems always use the attr2 format, and so
> will reject the noattr2 mount option if it is set.
> .TP
> +.BR dax=value
> +Set DAX behavior for the current filesystem. This mount option accepts the
It might be worth defining what DAX (the acronym) is...
"Set CPU direct access (DAX) behavior for regular files in the
filesystem."
> +following values:
> +
> +"dax=inode" DAX will be enabled only on files with FS_XFLAG_DAX applied.
"...enabled on regular files..."
> +
> +"dax=never" DAX will be disabled by the whole filesystem including files with
> +FS_XFLAG_DAX applied"
"DAX will not be enabled for any files. FS_XFLAG_DAX will be ignored."
> +
> +"dax=always" DAX will be enabled to every file in the filesystem inclduing files
"DAX will be enabled for all regular files, regardless of the
FS_XFLAG_DAX state."
> +without FS_XFLAG_DAX applied"
> +
> +If no option is used when mounting a pmem device, dax=inode will be used as
"If no option is used when mounting a filesystem stored on a device
capable of DAX access modes, dax=inode...."
(DAX is a possibility with more than just persistent memory now...)
--D
> +default.
> +
> +For details regarding DAX behavior in kernel, please refer to kernel's
> +documentation at filesystems/dax.txt
> +.TP
> .BR discard | nodiscard
> Enable/disable the issuing of commands to let the block
> device reclaim space freed by the filesystem. This is
> --
> 2.29.2
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Add dax mount option to man xfs(5)
2021-04-01 15:33 ` Darrick J. Wong
@ 2021-04-06 11:44 ` Carlos Maiolino
0 siblings, 0 replies; 4+ messages in thread
From: Carlos Maiolino @ 2021-04-06 11:44 UTC (permalink / raw)
To: Darrick J. Wong; +Cc: linux-xfs
On Thu, Apr 01, 2021 at 08:33:33AM -0700, Darrick J. Wong wrote:
> On Mon, Mar 15, 2021 at 04:02:50PM +0100, Carlos Maiolino wrote:
> > Details are already in kernel's documentation, but make dax mount option
> > information accessible through xfs(5) manpage.
> >
> > Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com>
> > ---
> > man/man5/xfs.5 | 18 ++++++++++++++++++
> > 1 file changed, 18 insertions(+)
> >
> > diff --git a/man/man5/xfs.5 b/man/man5/xfs.5
> > index 7642662f..46b0558a 100644
> > --- a/man/man5/xfs.5
> > +++ b/man/man5/xfs.5
> > @@ -133,6 +133,24 @@ by the filesystem.
> > CRC enabled filesystems always use the attr2 format, and so
> > will reject the noattr2 mount option if it is set.
> > .TP
> > +.BR dax=value
> > +Set DAX behavior for the current filesystem. This mount option accepts the
>
> It might be worth defining what DAX (the acronym) is...
>
> "Set CPU direct access (DAX) behavior for regular files in the
> filesystem."
>
> > +following values:
> > +
> > +"dax=inode" DAX will be enabled only on files with FS_XFLAG_DAX applied.
>
> "...enabled on regular files..."
>
> > +
> > +"dax=never" DAX will be disabled by the whole filesystem including files with
> > +FS_XFLAG_DAX applied"
>
> "DAX will not be enabled for any files. FS_XFLAG_DAX will be ignored."
>
> > +
> > +"dax=always" DAX will be enabled to every file in the filesystem inclduing files
>
> "DAX will be enabled for all regular files, regardless of the
> FS_XFLAG_DAX state."
>
> > +without FS_XFLAG_DAX applied"
> > +
> > +If no option is used when mounting a pmem device, dax=inode will be used as
>
> "If no option is used when mounting a filesystem stored on a device
> capable of DAX access modes, dax=inode...."
>
> (DAX is a possibility with more than just persistent memory now...)
>
Thanks for the review Darrick. All the changes make sense to me, I'll apply them
and send a V2.
Cheers.
--
Carlos
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-04-06 11:44 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-03-15 15:02 [PATCH] Add dax mount option to man xfs(5) Carlos Maiolino
2021-04-01 10:40 ` Carlos Maiolino
2021-04-01 15:33 ` Darrick J. Wong
2021-04-06 11:44 ` Carlos Maiolino
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox