diff options
Diffstat (limited to 'fs/dcache.c')
| -rw-r--r-- | fs/dcache.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/dcache.c b/fs/dcache.c index 8086636bf79..0364af2311f 100644 --- a/fs/dcache.c +++ b/fs/dcache.c @@ -389,7 +389,7 @@ static struct dentry *d_kill(struct dentry *dentry, struct dentry *parent)  	 * Inform try_to_ascend() that we are no longer attached to the  	 * dentry tree  	 */ -	dentry->d_flags |= DCACHE_DISCONNECTED; +	dentry->d_flags |= DCACHE_DENTRY_KILLED;  	if (parent)  		spin_unlock(&parent->d_lock);  	dentry_iput(dentry); @@ -1048,7 +1048,7 @@ static struct dentry *try_to_ascend(struct dentry *old, int locked, unsigned seq  	 * or deletion  	 */  	if (new != old->d_parent || -		 (old->d_flags & DCACHE_DISCONNECTED) || +		 (old->d_flags & DCACHE_DENTRY_KILLED) ||  		 (!locked && read_seqretry(&rename_lock, seq))) {  		spin_unlock(&new->d_lock);  		new = NULL; @@ -1141,7 +1141,7 @@ rename_retry:  EXPORT_SYMBOL(have_submounts);  /* - * Search the dentry child list for the specified parent, + * Search the dentry child list of the specified parent,   * and move any unused dentries to the end of the unused   * list for prune_dcache(). We descend to the next level   * whenever the d_subdirs list is non-empty and continue  |