projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1e2eda
)
NFS: Remove the BKL from nfs_link()
author
Trond Myklebust
<Trond.Myklebust@netapp.com>
Wed, 11 Jun 2008 19:52:40 +0000
(15:52 -0400)
committer
Trond Myklebust
<Trond.Myklebust@netapp.com>
Tue, 15 Jul 2008 22:10:54 +0000
(18:10 -0400)
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
fs/nfs/dir.c
patch
|
blob
|
history
diff --git
a/fs/nfs/dir.c
b/fs/nfs/dir.c
index d40e91e5c94acc29c96eea11766da34c4d66c5f1..5ae8ee6b298f5e17f3dc0ff781863a0ff6cdc47f 100644
(file)
--- a/
fs/nfs/dir.c
+++ b/
fs/nfs/dir.c
@@
-1549,14
+1549,12
@@
nfs_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
old_dentry->d_parent->d_name.name, old_dentry->d_name.name,
dentry->d_parent->d_name.name, dentry->d_name.name);
- lock_kernel();
d_drop(dentry);
error = NFS_PROTO(dir)->link(inode, dir, &dentry->d_name);
if (error == 0) {
atomic_inc(&inode->i_count);
d_add(dentry, inode);
}
- unlock_kernel();
return error;
}