diff options
author | Namhyung Kim <namhyung@gmail.com> | 2011-01-22 15:31:32 +0900 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-02-17 16:41:32 +0100 |
commit | b0a4bb830e099a31bec79452268639a7d8c2c1e4 (patch) | |
tree | ef6a4e8215f0eb236d78b9d25c1ed48546312648 /fs/dcache.c | |
parent | 5629f8a7fa391e40e61d528d4f5d7850dbfdf7ae (diff) | |
download | linux-3.10-b0a4bb830e099a31bec79452268639a7d8c2c1e4.tar.gz linux-3.10-b0a4bb830e099a31bec79452268639a7d8c2c1e4.tar.bz2 linux-3.10-b0a4bb830e099a31bec79452268639a7d8c2c1e4.zip |
fs: update comments to point correct document
dcache-locking.txt is not exist any more, and the path was not
correct anyway. Fix it.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'fs/dcache.c')
-rw-r--r-- | fs/dcache.c | 4 |
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, * false-negative result. d_lookup() protects against concurrent * renames using rename_lock seqlock. * - * See Documentation/vfs/dcache-locking.txt for more details. + * See Documentation/filesystems/path-lookup.txt for more details. */ hlist_bl_for_each_entry_rcu(dentry, node, &b->head, d_hash) { struct inode *i; @@ -1901,7 +1901,7 @@ struct dentry *__d_lookup(struct dentry *parent, struct qstr *name) * false-negative result. d_lookup() protects against concurrent * renames using rename_lock seqlock. * - * See Documentation/vfs/dcache-locking.txt for more details. + * See Documentation/filesystems/path-lookup.txt for more details. */ rcu_read_lock(); |