[lvm-devel] [PATCH 22/30] Update lvcount_disp to call liblvm 'get' function.

Dave Wysochanski dwysocha at redhat.com
Mon May 11 13:01:35 UTC 2009


Should be no functional change.

Signed-off-by: Dave Wysochanski <dwysocha at redhat.com>
---
 lib/report/lvm_object_prop.c |    3 +--
 lib/report/report.c          |    2 +-
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/lib/report/lvm_object_prop.c b/lib/report/lvm_object_prop.c
index e04318e..69a32fa 100644
--- a/lib/report/lvm_object_prop.c
+++ b/lib/report/lvm_object_prop.c
@@ -756,8 +756,7 @@ int lvm_vg_set_pv_count(vg_t *vg, const uint64_t value)
  */
 uint64_t lvm_vg_get_lv_count(const vg_t *vg)
 {
-	/* FIXME: implement function body */
-	return 0;
+	return displayable_lvs_in_vg(vg);
 }
 int lvm_vg_set_lv_count(vg_t *vg, const uint64_t value)
 {
diff --git a/lib/report/report.c b/lib/report/report.c
index 2bd0886..447ab24 100644
--- a/lib/report/report.c
+++ b/lib/report/report.c
@@ -1068,7 +1068,7 @@ static int _lvcount_disp(struct dm_report *rh, struct dm_pool *mem,
 	const struct volume_group *vg = (const struct volume_group *) data;
 	uint32_t count;
 
-	count = displayable_lvs_in_vg(vg);	
+	count = lvm_vg_get_lv_count(vg);
 
 	return _uint32_disp(rh, mem, field, &count, private);
 }
-- 
1.6.0.6




More information about the lvm-devel mailing list