summaryrefslogtreecommitdiff
path: root/fs/nfs/proc.c
diff options
context:
space:
mode:
authorFrank Filz <ffilzlnx@us.ibm.com>2006-10-17 17:24:38 (GMT)
committerTrond Myklebust <Trond.Myklebust@netapp.com>2006-12-06 15:46:31 (GMT)
commitcae823c4c089d2c7c2a90f39f20376ccd85f9893 (patch)
tree9bf9f70d3ddefe049818fd4cc1a604c749bb85b2 /fs/nfs/proc.c
parenta99b71c9c43499bf2312c64f5c1d367aaf559dc4 (diff)
downloadlinux-fsl-qoriq-cae823c4c089d2c7c2a90f39f20376ccd85f9893.tar.xz
NFS: Remove use of the Big Kernel Lock around calls to rpc_call_sync
Remove use of the Big Kernel Lock around calls to rpc_call_sync. Signed-off-by: Frank Filz <ffilz@us.ibm.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/proc.c')
-rw-r--r--fs/nfs/proc.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/nfs/proc.c b/fs/nfs/proc.c
index 4529cc4..7a9013d 100644
--- a/fs/nfs/proc.c
+++ b/fs/nfs/proc.c
@@ -545,13 +545,10 @@ nfs_proc_readdir(struct dentry *dentry, struct rpc_cred *cred,
};
int status;
- lock_kernel();
-
dprintk("NFS call readdir %d\n", (unsigned int)cookie);
status = rpc_call_sync(NFS_CLIENT(dir), &msg, 0);
dprintk("NFS reply readdir: %d\n", status);
- unlock_kernel();
return status;
}