NFSD: Free backchannel xprt in bc_destroy
Backchannel xprt isn't freed right now. Free it in bc_destroy, and put the reference of THIS_MODULE. Signed-off-by: Kinglong Mee <kinglongmee@gmail.com> Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
2336745e87
commit
47f72efa8f
1 changed files with 4 additions and 0 deletions
|
@ -2545,6 +2545,10 @@ static void bc_close(struct rpc_xprt *xprt)
|
|||
|
||||
static void bc_destroy(struct rpc_xprt *xprt)
|
||||
{
|
||||
dprintk("RPC: bc_destroy xprt %p\n", xprt);
|
||||
|
||||
xs_xprt_free(xprt);
|
||||
module_put(THIS_MODULE);
|
||||
}
|
||||
|
||||
static struct rpc_xprt_ops xs_local_ops = {
|
||||
|
|
Loading…
Add table
Reference in a new issue