sunrpc: fix some typos
Signed-off-by: Weng Meiling <wengmeiling.weng@huawei.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
2d8498dbf8
commit
28303ca309
|
@ -368,7 +368,7 @@ struct svc_program {
|
||||||
struct svc_program * pg_next; /* other programs (same xprt) */
|
struct svc_program * pg_next; /* other programs (same xprt) */
|
||||||
u32 pg_prog; /* program number */
|
u32 pg_prog; /* program number */
|
||||||
unsigned int pg_lovers; /* lowest version */
|
unsigned int pg_lovers; /* lowest version */
|
||||||
unsigned int pg_hivers; /* lowest version */
|
unsigned int pg_hivers; /* highest version */
|
||||||
unsigned int pg_nvers; /* number of versions */
|
unsigned int pg_nvers; /* number of versions */
|
||||||
struct svc_version ** pg_vers; /* version array */
|
struct svc_version ** pg_vers; /* version array */
|
||||||
char * pg_name; /* service name */
|
char * pg_name; /* service name */
|
||||||
|
|
|
@ -2932,10 +2932,9 @@ static struct rpc_xprt *xs_setup_bc_tcp(struct xprt_create *args)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Once we've associated a backchannel xprt with a connection,
|
* Once we've associated a backchannel xprt with a connection,
|
||||||
* we want to keep it around as long as long as the connection
|
* we want to keep it around as long as the connection lasts,
|
||||||
* lasts, in case we need to start using it for a backchannel
|
* in case we need to start using it for a backchannel again;
|
||||||
* again; this reference won't be dropped until bc_xprt is
|
* this reference won't be dropped until bc_xprt is destroyed.
|
||||||
* destroyed.
|
|
||||||
*/
|
*/
|
||||||
xprt_get(xprt);
|
xprt_get(xprt);
|
||||||
args->bc_xprt->xpt_bc_xprt = xprt;
|
args->bc_xprt->xpt_bc_xprt = xprt;
|
||||||
|
|
Loading…
Reference in New Issue