aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/filesystems/Locking
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/filesystems/Locking')
-rw-r--r--Documentation/filesystems/Locking5
1 files changed, 3 insertions, 2 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking
index 9a76f8d8bf95..a15ee207b449 100644
--- a/Documentation/filesystems/Locking
+++ b/Documentation/filesystems/Locking
@@ -10,7 +10,8 @@ be able to use diff(1).
10--------------------------- dentry_operations -------------------------- 10--------------------------- dentry_operations --------------------------
11prototypes: 11prototypes:
12 int (*d_revalidate)(struct dentry *, int); 12 int (*d_revalidate)(struct dentry *, int);
13 int (*d_hash) (struct dentry *, struct qstr *); 13 int (*d_hash)(const struct dentry *, const struct inode *,
14 struct qstr *);
14 int (*d_compare)(const struct dentry *, const struct inode *, 15 int (*d_compare)(const struct dentry *, const struct inode *,
15 const struct dentry *, const struct inode *, 16 const struct dentry *, const struct inode *,
16 unsigned int, const char *, const struct qstr *); 17 unsigned int, const char *, const struct qstr *);
@@ -22,7 +23,7 @@ prototypes:
22locking rules: 23locking rules:
23 dcache_lock rename_lock ->d_lock may block 24 dcache_lock rename_lock ->d_lock may block
24d_revalidate: no no no yes 25d_revalidate: no no no yes
25d_hash no no no yes 26d_hash no no no no
26d_compare: no yes no no 27d_compare: no yes no no
27d_delete: yes no yes no 28d_delete: yes no yes no
28d_release: no no no yes 29d_release: no no no yes