diff options
author | J. Bruce Fields <bfields@redhat.com> | 2013-10-23 16:09:16 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2013-11-09 00:16:34 -0500 |
commit | 13a2c3be03973d61b6cb89ff870e758c86327bb7 (patch) | |
tree | 4794f280c095ec2b2c04605005d99db3252ce878 /fs/namei.c | |
parent | f80de2cde10350b8d146e375ff8b634e72e6a827 (diff) | |
download | linux-13a2c3be03973d61b6cb89ff870e758c86327bb7.tar.bz2 |
dcache: fix outdated DCACHE_NEED_LOOKUP comment
The DCACHE_NEED_LOOKUP case referred to here was removed with
39e3c9553f34381a1b664c27b0c696a266a5735e "vfs: remove
DCACHE_NEED_LOOKUP".
There are only four real_lookup() callers and all of them pass in an
unhashed dentry just returned from d_alloc.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/namei.c')
-rw-r--r-- | fs/namei.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/namei.c b/fs/namei.c index e1fa43346c61..2a5a7aa9f43f 100644 --- a/fs/namei.c +++ b/fs/namei.c @@ -1298,8 +1298,8 @@ static struct dentry *lookup_dcache(struct qstr *name, struct dentry *dir, } /* - * Call i_op->lookup on the dentry. The dentry must be negative but may be - * hashed if it was pouplated with DCACHE_NEED_LOOKUP. + * Call i_op->lookup on the dentry. The dentry must be negative and + * unhashed. * * dir->d_inode->i_mutex must be held */ |