aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/dcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index 2a6bd9a4ae9..79802bd790e 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -1781,7 +1781,7 @@ struct dentry *__d_lookup_rcu(struct dentry *parent, struct qstr *name,
1781 * false-negative result. d_lookup() protects against concurrent 1781 * false-negative result. d_lookup() protects against concurrent
1782 * renames using rename_lock seqlock. 1782 * renames using rename_lock seqlock.
1783 * 1783 *
1784 * See Documentation/vfs/dcache-locking.txt for more details. 1784 * See Documentation/filesystems/path-lookup.txt for more details.
1785 */ 1785 */
1786 hlist_bl_for_each_entry_rcu(dentry, node, &b->head, d_hash) { 1786 hlist_bl_for_each_entry_rcu(dentry, node, &b->head, d_hash) {
1787 struct inode *i; 1787 struct inode *i;
@@ -1901,7 +1901,7 @@ struct dentry *__d_lookup(struct dentry *parent, struct qstr *name)
1901 * false-negative result. d_lookup() protects against concurrent 1901 * false-negative result. d_lookup() protects against concurrent
1902 * renames using rename_lock seqlock. 1902 * renames using rename_lock seqlock.
1903 * 1903 *
1904 * See Documentation/vfs/dcache-locking.txt for more details. 1904 * See Documentation/filesystems/path-lookup.txt for more details.
1905 */ 1905 */
1906 rcu_read_lock(); 1906 rcu_read_lock();
1907 1907