mirror of https://gitee.com/openkylin/linux.git
ceph: fix leak of mon authorizer
Fix leak of a struct ceph_buffer on umount. Signed-off-by: Sage Weil <sage@newdream.net>
This commit is contained in:
parent
ed98adad3d
commit
22b1de06c9
|
@ -613,6 +613,9 @@ static void ceph_x_destroy(struct ceph_auth_client *ac)
|
|||
remove_ticket_handler(ac, th);
|
||||
}
|
||||
|
||||
if (xi->auth_authorizer.buf)
|
||||
ceph_buffer_put(xi->auth_authorizer.buf);
|
||||
|
||||
kfree(ac->private);
|
||||
ac->private = NULL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue