diff mbox

[1/2] dax: some small updates to dax.txt documentation

Message ID 20160714214049.20075-1-ross.zwisler@linux.intel.com (mailing list archive)
State New, archived
Headers show

Commit Message

Ross Zwisler July 14, 2016, 9:40 p.m. UTC
These are originally from Matthew Wilcox and were part of his huge
"mm,fs,dax: Change ->pmd_fault to ->huge_fault" patch that was part of PUD
support.

I'm breaking these small changes out as they stand on their own and add
useful information to Documentation/filesystems/dax.txt.

Signed-off-by: Ross Zwisler <ross.zwisler@linux.intel.com>
---
 Documentation/filesystems/dax.txt | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

Comments

Jonathan Corbet July 20, 2016, 11:13 p.m. UTC | #1
On Thu, 14 Jul 2016 15:40:48 -0600
Ross Zwisler <ross.zwisler@linux.intel.com> wrote:

> These are originally from Matthew Wilcox and were part of his huge
> "mm,fs,dax: Change ->pmd_fault to ->huge_fault" patch that was part of PUD
> support.
> 
> I'm breaking these small changes out as they stand on their own and add
> useful information to Documentation/filesystems/dax.txt.

So how were you thinking of routing these?  I can take the docs fix, of
course, but part 2 is a bit out of my turf.  If you want to route them
together via another tree that's fine, just let me know.

Thanks,

jon
Andrew Morton July 20, 2016, 11:18 p.m. UTC | #2
On Wed, 20 Jul 2016 17:13:02 -0600 Jonathan Corbet <corbet@lwn.net> wrote:

> On Thu, 14 Jul 2016 15:40:48 -0600
> Ross Zwisler <ross.zwisler@linux.intel.com> wrote:
> 
> > These are originally from Matthew Wilcox and were part of his huge
> > "mm,fs,dax: Change ->pmd_fault to ->huge_fault" patch that was part of PUD
> > support.
> > 
> > I'm breaking these small changes out as they stand on their own and add
> > useful information to Documentation/filesystems/dax.txt.
> 
> So how were you thinking of routing these?  I can take the docs fix, of
> course, but part 2 is a bit out of my turf.  If you want to route them
> together via another tree that's fine, just let me know.

I have them queued.  You were cc'ed on the commit!
Jonathan Corbet July 20, 2016, 11:24 p.m. UTC | #3
On Wed, 20 Jul 2016 16:18:57 -0700
Andrew Morton <akpm@linux-foundation.org> wrote:

> > So how were you thinking of routing these?  I can take the docs fix, of
> > course, but part 2 is a bit out of my turf.  If you want to route them
> > together via another tree that's fine, just let me know.  
> 
> I have them queued.  You were cc'ed on the commit!

Interesting, I can't find that cc in my archive anywhere.  It seems it
went astray somewhere?

Thanks,

jon
diff mbox

Patch

diff --git a/Documentation/filesystems/dax.txt b/Documentation/filesystems/dax.txt
index ce4587d..0c16a22 100644
--- a/Documentation/filesystems/dax.txt
+++ b/Documentation/filesystems/dax.txt
@@ -49,6 +49,7 @@  These block devices may be used for inspiration:
 - axonram: Axon DDR2 device driver
 - brd: RAM backed block device driver
 - dcssblk: s390 dcss block device driver
+- pmem: NVDIMM persistent memory driver
 
 
 Implementation Tips for Filesystem Writers
@@ -75,8 +76,9 @@  calls to get_block() (for example by a page-fault racing with a read()
 or a write()) work correctly.
 
 These filesystems may be used for inspiration:
-- ext2: the second extended filesystem, see Documentation/filesystems/ext2.txt
-- ext4: the fourth extended filesystem, see Documentation/filesystems/ext4.txt
+- ext2: see Documentation/filesystems/ext2.txt
+- ext4: see Documentation/filesystems/ext4.txt
+- xfs:  see Documentation/filesystems/xfs.txt
 
 
 Handling Media Errors