diff options
author | Krishnan Parthasarathi <kparthas@redhat.com> | 2013-12-16 10:29:19 +0530 |
---|---|---|
committer | Vijay Bellur <vbellur@redhat.com> | 2013-12-20 01:17:50 -0800 |
commit | 6fcc8df5956501bbb3687331ea518b231611856a (patch) | |
tree | 7ebfd0dcdb4939e300d9dfc253a77669cfc296ff /xlators/mgmt/glusterd/src/glusterd-store.c | |
parent | 79d5a31279825bdc61ad036b30fbe7e41b76fe5e (diff) |
glusterd: make volinfo a refcnt'ed object.
Add glusterd_volinfo_remove(..) which removes @volinfo from the list
of volumes in the cluster and performs an unref on @volinfo
Change-Id: I5f546ca58f61bc334ab1bab4c51c4a21e1f66161
BUG: 1038051
Signed-off-by: Krishnan Parthasarathi <kparthas@redhat.com>
Reviewed-on: http://review.gluster.org/6521
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Kaushal M <kaushal@redhat.com>
Reviewed-by: Vijay Bellur <vbellur@redhat.com>
Diffstat (limited to 'xlators/mgmt/glusterd/src/glusterd-store.c')
-rw-r--r-- | xlators/mgmt/glusterd/src/glusterd-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/mgmt/glusterd/src/glusterd-store.c b/xlators/mgmt/glusterd/src/glusterd-store.c index 2ba2548d20d..3a4b090096b 100644 --- a/xlators/mgmt/glusterd/src/glusterd-store.c +++ b/xlators/mgmt/glusterd/src/glusterd-store.c @@ -166,7 +166,7 @@ out: if (brickinfo) glusterd_brickinfo_delete (brickinfo); if (volinfo) - glusterd_volinfo_delete (volinfo); + glusterd_volinfo_unref (volinfo); return ret; } |