diff options
author | Miklos Szeredi <mszeredi@redhat.com> | 2016-06-30 08:53:27 +0200 |
---|---|---|
committer | Miklos Szeredi <mszeredi@redhat.com> | 2016-06-30 08:53:27 +0200 |
commit | e698b8a43659f9ece192fcab215abcadac8f88d7 (patch) | |
tree | 73bcdb2ecc6a7fe314d380ac2373ff53d5f935ae /Documentation/filesystems/Locking | |
parent | vfs: merge .d_select_inode() into .d_real() (diff) | |
download | linux-e698b8a43659f9ece192fcab215abcadac8f88d7.tar.xz linux-e698b8a43659f9ece192fcab215abcadac8f88d7.zip |
vfs: document ->d_real()
Add missing documentation for the d_op->d_real() method and d_real()
helper.
Signed-off-by: Miklos Szeredi <mszeredi@redhat.com>
Diffstat (limited to 'Documentation/filesystems/Locking')
-rw-r--r-- | Documentation/filesystems/Locking | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index 75eea7ce3d7c..898d3cecd8a6 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking @@ -20,6 +20,8 @@ prototypes: char *(*d_dname)((struct dentry *dentry, char *buffer, int buflen); struct vfsmount *(*d_automount)(struct path *path); int (*d_manage)(struct dentry *, bool); + struct dentry *(*d_real)(struct dentry *, const struct inode *, + unsigned int); locking rules: rename_lock ->d_lock may block rcu-walk @@ -34,6 +36,7 @@ d_iput: no no yes no d_dname: no no no no d_automount: no no yes no d_manage: no no yes (ref-walk) maybe +d_real no no yes no --------------------------- inode_operations --------------------------- prototypes: |