sunrpc/svc.c: Remove unused line 'rqstp->rq_server = serv;' in svc_process
There is no need to set rqstp->rq_server to serv, while serv is initialized as rqstp->rq_server at previous line. And between these two lines, there is no change to rqstp->rq_server. Signed-off-by: ideawu <ideawu@163.com> Reviewed-by: Tom Tucker <tom@opengridcomputing.com> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
This commit is contained in:
parent
2795e53b4e
commit
abd91ee979
1 changed files with 0 additions and 1 deletions
|
@ -1093,7 +1093,6 @@ svc_process(struct svc_rqst *rqstp)
|
|||
procp = versp->vs_proc + proc;
|
||||
if (proc >= versp->vs_nproc || !procp->pc_func)
|
||||
goto err_bad_proc;
|
||||
rqstp->rq_server = serv;
|
||||
rqstp->rq_procinfo = procp;
|
||||
|
||||
/* Syntactic check complete */
|
||||
|
|
Loading…
Reference in a new issue