diff options
| author | Nick Piggin <npiggin@kernel.dk> | 2011-01-07 17:49:38 +1100 | 
|---|---|---|
| committer | Nick Piggin <npiggin@kernel.dk> | 2011-01-07 17:50:23 +1100 | 
| commit | b5c84bf6f6fa3a7dfdcb556023a62953574b60ee (patch) | |
| tree | 7a2c299a180713e21d5cb653cb933121adf53c31 /fs/exportfs | |
| parent | 949854d02455080d20cd3e1db28a3a18daf7599d (diff) | |
| download | linux-b5c84bf6f6fa3a7dfdcb556023a62953574b60ee.tar.bz2 | |
fs: dcache remove dcache_lock
dcache_lock no longer protects anything. remove it.
Signed-off-by: Nick Piggin <npiggin@kernel.dk>
Diffstat (limited to 'fs/exportfs')
| -rw-r--r-- | fs/exportfs/expfs.c | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/fs/exportfs/expfs.c b/fs/exportfs/expfs.c index 84b8c460a781..53a5c08fb63c 100644 --- a/fs/exportfs/expfs.c +++ b/fs/exportfs/expfs.c @@ -47,24 +47,20 @@ find_acceptable_alias(struct dentry *result,  	if (acceptable(context, result))  		return result; -	spin_lock(&dcache_lock);  	spin_lock(&dcache_inode_lock);  	list_for_each_entry(dentry, &result->d_inode->i_dentry, d_alias) {  		dget_locked(dentry);  		spin_unlock(&dcache_inode_lock); -		spin_unlock(&dcache_lock);  		if (toput)  			dput(toput);  		if (dentry != result && acceptable(context, dentry)) {  			dput(result);  			return dentry;  		} -		spin_lock(&dcache_lock);  		spin_lock(&dcache_inode_lock);  		toput = dentry;  	}  	spin_unlock(&dcache_inode_lock); -	spin_unlock(&dcache_lock);  	if (toput)  		dput(toput); |