Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs
authorLinus Torvalds <torvalds@linux-foundation.org>
Sun, 21 Jul 2019 17:09:43 +0000 (10:09 -0700)
committerLinus Torvalds <torvalds@linux-foundation.org>
Sun, 21 Jul 2019 17:09:43 +0000 (10:09 -0700)
Pull vfs documentation typo fix from Al Viro.

* 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
  typo fix: it's d_make_root, not d_make_inode...

1  2 
Documentation/filesystems/porting

index 209672010fb465c282ca597e694ad0bb635bca81,d16e2ef7ae0b1265752103c6c0ae674639ec9a03..6b7a41cfcaed05f9847553afb169181419599a85
@@@ -330,14 -330,14 +330,14 @@@ unreferenced dentries, and is now only 
  [mandatory]
  
        .d_compare() calling convention and locking rules are significantly
 -changed. Read updated documentation in Documentation/filesystems/vfs.txt (and
 +changed. Read updated documentation in Documentation/filesystems/vfs.rst (and
  look at examples of other filesystems) for guidance.
  
  ---
  [mandatory]
  
        .d_hash() calling convention and locking rules are significantly
 -changed. Read updated documentation in Documentation/filesystems/vfs.txt (and
 +changed. Read updated documentation in Documentation/filesystems/vfs.rst (and
  look at examples of other filesystems) for guidance.
  
  ---
@@@ -377,12 -377,12 +377,12 @@@ where possible
  the filesystem provides it), which requires dropping out of rcu-walk mode. This
  may now be called in rcu-walk mode (nd->flags & LOOKUP_RCU). -ECHILD should be
  returned if the filesystem cannot handle rcu-walk. See
 -Documentation/filesystems/vfs.txt for more details.
 +Documentation/filesystems/vfs.rst for more details.
  
        permission is an inode permission check that is called on many or all
  directory inodes on the way down a path walk (to check for exec permission). It
  must now be rcu-walk aware (mask & MAY_NOT_BLOCK).  See
 -Documentation/filesystems/vfs.txt for more details.
 +Documentation/filesystems/vfs.rst for more details.
   
  --
  [mandatory]
@@@ -436,7 -436,7 +436,7 @@@ for the inode.  If d_make_root(inode) i
  and also requires no further error handling. Typical usage is:
  
        inode = foofs_new_inode(....);
-       s->s_root = d_make_inode(inode);
+       s->s_root = d_make_root(inode);
        if (!s->s_root)
                /* Nothing needed for the inode cleanup */
                return -ENOMEM;
@@@ -636,7 -636,7 +636,7 @@@ in your dentry operations instead
  --
  [mandatory]
        ->clone_file_range() and ->dedupe_file_range have been replaced with
 -      ->remap_file_range().  See Documentation/filesystems/vfs.txt for more
 +      ->remap_file_range().  See Documentation/filesystems/vfs.rst for more
        information.
  --
  [recommended]