]> sourceware.org Git - lvm2.git/commitdiff
cleanup: use lv_is_pool
authorZdenek Kabelac <zkabelac@redhat.com>
Sun, 2 Nov 2014 18:43:35 +0000 (19:43 +0100)
committerZdenek Kabelac <zkabelac@redhat.com>
Mon, 3 Nov 2014 13:19:34 +0000 (14:19 +0100)
Use lv_is_pool() to detect both pool versions.

lib/report/report.c

index c74bbfa2883329b0697dd6bd5bed0f14db7433e7..4f505e7511222768d06ac164ad60a0c5f95beccf 100644 (file)
@@ -447,7 +447,7 @@ static int _datalv_disp(struct dm_report *rh, struct dm_pool *mem __attribute__(
                        const void *data, void *private __attribute__((unused)))
 {
        const struct logical_volume *lv = (const struct logical_volume *) data;
-       const struct lv_segment *seg = (lv_is_thin_pool(lv) || lv_is_cache_pool(lv)) ? first_seg(lv) : NULL;
+       const struct lv_segment *seg = (lv_is_pool(lv)) ? first_seg(lv) : NULL;
 
        if (seg)
                return _lvname_disp(rh, mem, field, seg_lv(seg, 0), private);
@@ -460,7 +460,7 @@ static int _metadatalv_disp(struct dm_report *rh, struct dm_pool *mem __attribut
                            const void *data, void *private __attribute__((unused)))
 {
        const struct logical_volume *lv = (const struct logical_volume *) data;
-       const struct lv_segment *seg = (lv_is_thin_pool(lv) || lv_is_cache_pool(lv)) ? first_seg(lv) : NULL;
+       const struct lv_segment *seg = (lv_is_pool(lv)) ? first_seg(lv) : NULL;
 
        if (seg)
                return _lvname_disp(rh, mem, field, seg->metadata_lv, private);
This page took 0.037527 seconds and 5 git commands to generate.