diff options
author | Chuck Lever <cel@citi.umich.edu> | 2005-08-11 16:25:35 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2005-09-23 12:38:19 -0400 |
commit | 5dc07727f86b25851e95193a0c484ea21b531c47 (patch) | |
tree | 813a8cb359fef51172ff67d9da8efdfc5fee4a83 /net/sunrpc/xprt.c | |
parent | 4a0f8c04f2ece949d54a0c4fd7490259cf23a58a (diff) |
[PATCH] RPC: Rename xprt_lock
Clean-up: Replace the xprt_lock with something more aptly named. This lock
single-threads the XID and request slot reservation process.
Test-plan:
Compile kernel with CONFIG_NFS enabled.
Version: Thu, 11 Aug 2005 16:05:26 -0400
Signed-off-by: Chuck Lever <cel@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/xprt.c')
-rw-r--r-- | net/sunrpc/xprt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c index 1f0da8c1a3b0..9c45c522e3ef 100644 --- a/net/sunrpc/xprt.c +++ b/net/sunrpc/xprt.c | |||
@@ -643,9 +643,9 @@ void xprt_reserve(struct rpc_task *task) | |||
643 | 643 | ||
644 | task->tk_status = -EIO; | 644 | task->tk_status = -EIO; |
645 | if (!xprt->shutdown) { | 645 | if (!xprt->shutdown) { |
646 | spin_lock(&xprt->xprt_lock); | 646 | spin_lock(&xprt->reserve_lock); |
647 | do_xprt_reserve(task); | 647 | do_xprt_reserve(task); |
648 | spin_unlock(&xprt->xprt_lock); | 648 | spin_unlock(&xprt->reserve_lock); |
649 | } | 649 | } |
650 | } | 650 | } |
651 | 651 | ||
@@ -698,10 +698,10 @@ void xprt_release(struct rpc_task *task) | |||
698 | 698 | ||
699 | dprintk("RPC: %4d release request %p\n", task->tk_pid, req); | 699 | dprintk("RPC: %4d release request %p\n", task->tk_pid, req); |
700 | 700 | ||
701 | spin_lock(&xprt->xprt_lock); | 701 | spin_lock(&xprt->reserve_lock); |
702 | list_add(&req->rq_list, &xprt->free); | 702 | list_add(&req->rq_list, &xprt->free); |
703 | xprt_clear_backlog(xprt); | 703 | xprt_clear_backlog(xprt); |
704 | spin_unlock(&xprt->xprt_lock); | 704 | spin_unlock(&xprt->reserve_lock); |
705 | } | 705 | } |
706 | 706 | ||
707 | /** | 707 | /** |
@@ -751,7 +751,7 @@ static struct rpc_xprt *xprt_setup(int proto, struct sockaddr_in *ap, struct rpc | |||
751 | } | 751 | } |
752 | 752 | ||
753 | spin_lock_init(&xprt->transport_lock); | 753 | spin_lock_init(&xprt->transport_lock); |
754 | spin_lock_init(&xprt->xprt_lock); | 754 | spin_lock_init(&xprt->reserve_lock); |
755 | init_waitqueue_head(&xprt->cong_wait); | 755 | init_waitqueue_head(&xprt->cong_wait); |
756 | 756 | ||
757 | INIT_LIST_HEAD(&xprt->free); | 757 | INIT_LIST_HEAD(&xprt->free); |