diff options
author | Sage Weil <sage@newdream.net> | 2010-07-05 18:36:49 -0400 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-07-05 18:36:49 -0400 |
commit | 22b1de06c9fe128ca3de72560c3e8c2cabf2927a (patch) | |
tree | e8f711819f4430e8da584b3bbaba0bd6227d7edd /fs/ceph | |
parent | ed98adad3d87594c55347824e85137d1829c9e70 (diff) |
ceph: fix leak of mon authorizer
Fix leak of a struct ceph_buffer on umount.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/auth_x.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/ceph/auth_x.c b/fs/ceph/auth_x.c index 3fe49042d8ad..6d44053ecff1 100644 --- a/fs/ceph/auth_x.c +++ b/fs/ceph/auth_x.c | |||
@@ -613,6 +613,9 @@ static void ceph_x_destroy(struct ceph_auth_client *ac) | |||
613 | remove_ticket_handler(ac, th); | 613 | remove_ticket_handler(ac, th); |
614 | } | 614 | } |
615 | 615 | ||
616 | if (xi->auth_authorizer.buf) | ||
617 | ceph_buffer_put(xi->auth_authorizer.buf); | ||
618 | |||
616 | kfree(ac->private); | 619 | kfree(ac->private); |
617 | ac->private = NULL; | 620 | ac->private = NULL; |
618 | } | 621 | } |