Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1c34092a authored by Dan Carpenter's avatar Dan Carpenter Committed by Al Viro
Browse files

nfs: lock() vs unlock() typo



These should be spin_unlock() instead of spin_lock().  It's a typo.

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent a872d510
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -98,7 +98,7 @@ rename_retry:
		namelen--;
	buflen -= namelen;
	if (buflen < 0) {
		spin_lock(&dentry->d_lock);
		spin_unlock(&dentry->d_lock);
		rcu_read_unlock();
		goto Elong;
	}
@@ -108,7 +108,7 @@ rename_retry:
	rcu_read_unlock();
	return end;
Elong_unlock:
	spin_lock(&dentry->d_lock);
	spin_unlock(&dentry->d_lock);
	rcu_read_unlock();
	if (read_seqretry(&rename_lock, seq))
		goto rename_retry;