diff options
Diffstat (limited to 'Documentation/filesystems/Locking')
-rw-r--r-- | Documentation/filesystems/Locking | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index 28bfea75bcf2..59c14159cc47 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking | |||
@@ -15,6 +15,7 @@ prototypes: | |||
15 | int (*d_delete)(struct dentry *); | 15 | int (*d_delete)(struct dentry *); |
16 | void (*d_release)(struct dentry *); | 16 | void (*d_release)(struct dentry *); |
17 | void (*d_iput)(struct dentry *, struct inode *); | 17 | void (*d_iput)(struct dentry *, struct inode *); |
18 | char *(*d_dname)((struct dentry *dentry, char *buffer, int buflen); | ||
18 | 19 | ||
19 | locking rules: | 20 | locking rules: |
20 | none have BKL | 21 | none have BKL |
@@ -25,6 +26,7 @@ d_compare: no yes no no | |||
25 | d_delete: yes no yes no | 26 | d_delete: yes no yes no |
26 | d_release: no no no yes | 27 | d_release: no no no yes |
27 | d_iput: no no no yes | 28 | d_iput: no no no yes |
29 | d_dname: no no no no | ||
28 | 30 | ||
29 | --------------------------- inode_operations --------------------------- | 31 | --------------------------- inode_operations --------------------------- |
30 | prototypes: | 32 | prototypes: |