aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/write.c
diff options
context:
space:
mode:
authorFrank Filz <ffilzlnx@us.ibm.com>2006-10-17 13:24:36 -0400
committerTrond Myklebust <Trond.Myklebust@netapp.com>2006-12-06 10:46:30 -0500
commita99b71c9c43499bf2312c64f5c1d367aaf559dc4 (patch)
treea9fa03a8dcee03c6f05bd286be368396176b13db /fs/nfs/write.c
parent6d5fcb5a52bfd00eab3ba2c7ca890823388436ae (diff)
NFS: Remove use of the Big Kernel Lock around calls to rpc_execute.
Remove use of the Big Kernel Lock around calls to rpc_execute. Signed-off-by: Frank Filz <ffilz@us.ibm.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'fs/nfs/write.c')
-rw-r--r--fs/nfs/write.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/nfs/write.c b/fs/nfs/write.c
index 9b8eb9373ad4..4948dc1fbd74 100644
--- a/fs/nfs/write.c
+++ b/fs/nfs/write.c
@@ -991,9 +991,7 @@ static void nfs_execute_write(struct nfs_write_data *data)
991 sigset_t oldset; 991 sigset_t oldset;
992 992
993 rpc_clnt_sigmask(clnt, &oldset); 993 rpc_clnt_sigmask(clnt, &oldset);
994 lock_kernel();
995 rpc_execute(&data->task); 994 rpc_execute(&data->task);
996 unlock_kernel();
997 rpc_clnt_sigunmask(clnt, &oldset); 995 rpc_clnt_sigunmask(clnt, &oldset);
998} 996}
999 997