diff options
author | Tom Tucker <tom@opengridcomputing.com> | 2009-01-05 12:12:52 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2009-01-07 15:40:45 -0500 |
commit | 2779e3ae39645515cb6c1126634f47c28c9e7190 (patch) | |
tree | e7904837510ba41552a11ebd21caaaf336281462 /net/sunrpc/svcsock.c | |
parent | f05ef8db1abe68e3f6fc272efee51bc54ce528c5 (diff) |
svc: Move kfree of deferral record to common code
The rqstp structure has a pointer to a svc_deferred_req record
that is allocated when requests are deferred. This record is common
to all transports and can be freed in common code.
Move the kfree of the rq_deferred to the common svc_xprt_release
function.
This also fixes a memory leak in the RDMA transport which does not
kfree the dr structure in it's version of the xpo_release_rqst callback.
Signed-off-by: Tom Tucker <tom@opengridcomputing.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'net/sunrpc/svcsock.c')
-rw-r--r-- | net/sunrpc/svcsock.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index cccfa7deb9af..3c103404501d 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c | |||
@@ -103,7 +103,6 @@ static void svc_reclassify_socket(struct socket *sock) | |||
103 | static void svc_release_skb(struct svc_rqst *rqstp) | 103 | static void svc_release_skb(struct svc_rqst *rqstp) |
104 | { | 104 | { |
105 | struct sk_buff *skb = rqstp->rq_xprt_ctxt; | 105 | struct sk_buff *skb = rqstp->rq_xprt_ctxt; |
106 | struct svc_deferred_req *dr = rqstp->rq_deferred; | ||
107 | 106 | ||
108 | if (skb) { | 107 | if (skb) { |
109 | struct svc_sock *svsk = | 108 | struct svc_sock *svsk = |
@@ -113,10 +112,6 @@ static void svc_release_skb(struct svc_rqst *rqstp) | |||
113 | dprintk("svc: service %p, releasing skb %p\n", rqstp, skb); | 112 | dprintk("svc: service %p, releasing skb %p\n", rqstp, skb); |
114 | skb_free_datagram(svsk->sk_sk, skb); | 113 | skb_free_datagram(svsk->sk_sk, skb); |
115 | } | 114 | } |
116 | if (dr) { | ||
117 | rqstp->rq_deferred = NULL; | ||
118 | kfree(dr); | ||
119 | } | ||
120 | } | 115 | } |
121 | 116 | ||
122 | union svc_pktinfo_u { | 117 | union svc_pktinfo_u { |