summaryrefslogtreecommitdiff
path: root/libdm/libdm-report.c
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2016-08-04 09:42:33 +0200
committerPeter Rajnoha <prajnoha@redhat.com>2016-08-09 18:24:45 +0200
commit9c2113928430e25a4cc7b68a94aca7d8388b3b60 (patch)
treeb348757dfe467a70c18a4ad061c2b7db581b1743 /libdm/libdm-report.c
parent5649834f7d62b9cba3b06c1b5d0dd425978f3ad2 (diff)
downloadlvm2-9c2113928430e25a4cc7b68a94aca7d8388b3b60.tar.gz
libdm: report: add dm_report_destroy_rows
Calling dm_report_destroy_rows makes it possible to destroy any report content we have but at the same time it doesn't destroy the report handle itself, thus it's possible to reuse that handle again for new report content. Functionally, this is the same as calling dm_report_output with the report handle but omitting the output iself. This functionality may be useful if we, for whatever reason, need to discard the report content and start a fresh new one but with the same report configuration and initialization and thus we can just reuse the existing handle.
Diffstat (limited to 'libdm/libdm-report.c')
-rw-r--r--libdm/libdm-report.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libdm/libdm-report.c b/libdm/libdm-report.c
index 02fead573..886d8a2aa 100644
--- a/libdm/libdm-report.c
+++ b/libdm/libdm-report.c
@@ -4790,6 +4790,11 @@ out:
return r;
}
+void dm_report_destroy_rows(struct dm_report *rh)
+{
+ _destroy_rows(rh);
+}
+
static int _report_group_create_single(struct dm_report_group *group)
{
return 1;