|
@@ -316,7 +316,6 @@ static bool svc_xprt_has_something_to_do(struct svc_xprt *xprt)
|
|
|
*/
|
|
|
void svc_xprt_enqueue(struct svc_xprt *xprt)
|
|
|
{
|
|
|
- struct svc_serv *serv = xprt->xpt_server;
|
|
|
struct svc_pool *pool;
|
|
|
struct svc_rqst *rqstp;
|
|
|
int cpu;
|
|
@@ -362,8 +361,6 @@ void svc_xprt_enqueue(struct svc_xprt *xprt)
|
|
|
rqstp, rqstp->rq_xprt);
|
|
|
rqstp->rq_xprt = xprt;
|
|
|
svc_xprt_get(xprt);
|
|
|
- rqstp->rq_reserved = serv->sv_max_mesg;
|
|
|
- atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
|
|
|
pool->sp_stats.threads_woken++;
|
|
|
wake_up(&rqstp->rq_wait);
|
|
|
} else {
|
|
@@ -640,8 +637,6 @@ int svc_recv(struct svc_rqst *rqstp, long timeout)
|
|
|
if (xprt) {
|
|
|
rqstp->rq_xprt = xprt;
|
|
|
svc_xprt_get(xprt);
|
|
|
- rqstp->rq_reserved = serv->sv_max_mesg;
|
|
|
- atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
|
|
|
|
|
|
/* As there is a shortage of threads and this request
|
|
|
* had to be queued, don't allow the thread to wait so
|
|
@@ -738,6 +733,8 @@ int svc_recv(struct svc_rqst *rqstp, long timeout)
|
|
|
else
|
|
|
len = xprt->xpt_ops->xpo_recvfrom(rqstp);
|
|
|
dprintk("svc: got len=%d\n", len);
|
|
|
+ rqstp->rq_reserved = serv->sv_max_mesg;
|
|
|
+ atomic_add(rqstp->rq_reserved, &xprt->xpt_reserved);
|
|
|
}
|
|
|
svc_xprt_received(xprt);
|
|
|
|