diff options
Diffstat (limited to 'fs/nfs')
| -rw-r--r-- | fs/nfs/dir.c | 3 | ||||
| -rw-r--r-- | fs/nfs/getroot.c | 2 | ||||
| -rw-r--r-- | fs/nfs/namespace.c | 3 | 
3 files changed, 0 insertions, 8 deletions
diff --git a/fs/nfs/dir.c b/fs/nfs/dir.c index 12de824edb5..eb77471b882 100644 --- a/fs/nfs/dir.c +++ b/fs/nfs/dir.c @@ -1718,11 +1718,9 @@ static int nfs_unlink(struct inode *dir, struct dentry *dentry)  	dfprintk(VFS, "NFS: unlink(%s/%ld, %s)\n", dir->i_sb->s_id,  		dir->i_ino, dentry->d_name.name); -	spin_lock(&dcache_lock);  	spin_lock(&dentry->d_lock);  	if (dentry->d_count > 1) {  		spin_unlock(&dentry->d_lock); -		spin_unlock(&dcache_lock);  		/* Start asynchronous writeout of the inode */  		write_inode_now(dentry->d_inode, 0);  		error = nfs_sillyrename(dir, dentry); @@ -1733,7 +1731,6 @@ static int nfs_unlink(struct inode *dir, struct dentry *dentry)  		need_rehash = 1;  	}  	spin_unlock(&dentry->d_lock); -	spin_unlock(&dcache_lock);  	error = nfs_safe_remove(dentry);  	if (!error || error == -ENOENT) {  		nfs_set_verifier(dentry, nfs_save_change_attribute(dir)); diff --git a/fs/nfs/getroot.c b/fs/nfs/getroot.c index 850f67d5f0a..b3e36c3430d 100644 --- a/fs/nfs/getroot.c +++ b/fs/nfs/getroot.c @@ -63,13 +63,11 @@ static int nfs_superblock_set_dummy_root(struct super_block *sb, struct inode *i  		 * This again causes shrink_dcache_for_umount_subtree() to  		 * Oops, since the test for IS_ROOT() will fail.  		 */ -		spin_lock(&dcache_lock);  		spin_lock(&dcache_inode_lock);  		spin_lock(&sb->s_root->d_lock);  		list_del_init(&sb->s_root->d_alias);  		spin_unlock(&sb->s_root->d_lock);  		spin_unlock(&dcache_inode_lock); -		spin_unlock(&dcache_lock);  	}  	return 0;  } diff --git a/fs/nfs/namespace.c b/fs/nfs/namespace.c index 78c0ebb0b07..74aaf3963c1 100644 --- a/fs/nfs/namespace.c +++ b/fs/nfs/namespace.c @@ -60,7 +60,6 @@ rename_retry:  	seq = read_seqbegin(&rename_lock);  	rcu_read_lock(); -	spin_lock(&dcache_lock);  	while (!IS_ROOT(dentry) && dentry != droot) {  		namelen = dentry->d_name.len;  		buflen -= namelen + 1; @@ -71,7 +70,6 @@ rename_retry:  		*--end = '/';  		dentry = dentry->d_parent;  	} -	spin_unlock(&dcache_lock);  	rcu_read_unlock();  	if (read_seqretry(&rename_lock, seq))  		goto rename_retry; @@ -91,7 +89,6 @@ rename_retry:  	memcpy(end, base, namelen);  	return end;  Elong_unlock: -	spin_unlock(&dcache_lock);  	rcu_read_unlock();  	if (read_seqretry(&rename_lock, seq))  		goto rename_retry;  |