]> sourceware.org Git - lvm2.git/commitdiff
Add a new 'thin_pool' output field to 'lvs.
authorAlasdair Kergon <agk@redhat.com>
Fri, 9 Sep 2011 00:54:49 +0000 (00:54 +0000)
committerAlasdair Kergon <agk@redhat.com>
Fri, 9 Sep 2011 00:54:49 +0000 (00:54 +0000)
A gentle reminder that anyone relying on the output of reporting commands
like lvs in scripts must use -o to guarantee they get the fields they expect.

The default sequence of fields can change from release to release.
Equally, the 'attr' fields can have new values introduced and/or characters
appended to them.

lib/config/defaults.h
lib/metadata/lv.c
lib/metadata/lv.h
lib/report/columns.h
lib/report/properties.c
lib/report/report.c
man/lvs.8.in

index 8b8e09b9b2d853051ece0ce6408bbf921e4299e2..a5179432d81ad62ac28f3829fe88c5623592874c 100644 (file)
 #define DEFAULT_REP_QUOTED 1
 #define DEFAULT_REP_SEPARATOR " "
 
-#define DEFAULT_LVS_COLS "lv_name,vg_name,lv_attr,lv_size,origin,snap_percent,move_pv,mirror_log,copy_percent,convert_lv"
+#define DEFAULT_LVS_COLS "lv_name,vg_name,lv_attr,lv_size,thin_pool,origin,snap_percent,move_pv,mirror_log,copy_percent,convert_lv"
 #define DEFAULT_VGS_COLS "vg_name,pv_count,lv_count,snap_count,vg_attr,vg_size,vg_free"
 #define DEFAULT_PVS_COLS "pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free"
 #define DEFAULT_SEGS_COLS "lv_name,vg_name,lv_attr,stripes,segtype,seg_size"
 #define DEFAULT_PVSEGS_COLS "pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,pvseg_start,pvseg_size"
 
-#define DEFAULT_LVS_COLS_VERB "lv_name,vg_name,seg_count,lv_attr,lv_size,lv_major,lv_minor,lv_kernel_major,lv_kernel_minor,origin,snap_percent,move_pv,copy_percent,mirror_log,convert_lv,lv_uuid"
+#define DEFAULT_LVS_COLS_VERB "lv_name,vg_name,seg_count,lv_attr,lv_size,lv_major,lv_minor,lv_kernel_major,lv_kernel_minor,thin_pool,origin,snap_percent,move_pv,copy_percent,mirror_log,convert_lv,lv_uuid"
 #define DEFAULT_VGS_COLS_VERB "vg_name,vg_attr,vg_extent_size,pv_count,lv_count,snap_count,vg_size,vg_free,vg_uuid"
 #define DEFAULT_PVS_COLS_VERB "pv_name,vg_name,pv_fmt,pv_attr,pv_size,pv_free,dev_size,pv_uuid"
 #define DEFAULT_SEGS_COLS_VERB "lv_name,vg_name,lv_attr,seg_start,seg_size,stripes,segtype,stripesize,chunksize"
index cfcae48d31ee39493505593ec18602237d939069..322727ebf97a55459125de5f09f545395211a6e7 100644 (file)
@@ -185,6 +185,18 @@ char *lv_mirror_log_dup(struct dm_pool *mem, const struct logical_volume *lv)
        return NULL;
 }
 
+char *lv_pool_lv_dup(struct dm_pool *mem, const struct logical_volume *lv)
+{
+       struct lv_segment *seg;
+
+       dm_list_iterate_items(seg, &lv->segments) {
+               if (!seg_is_thin_volume(seg) || !seg->pool_lv)
+                       continue;
+               return dm_pool_strdup(mem, seg->pool_lv->name);
+       }
+       return NULL;
+}
+
 int lv_kernel_minor(const struct logical_volume *lv)
 {
        struct lvinfo info;
index 490658278c10becaa8a0e840c22c6f6703ea2eef..a54745f15dd217517825f434e94426fc62d8c760 100644 (file)
@@ -59,6 +59,7 @@ char *lv_convert_lv_dup(struct dm_pool *mem, const struct logical_volume *lv);
 int lv_kernel_major(const struct logical_volume *lv);
 int lv_kernel_minor(const struct logical_volume *lv);
 char *lv_mirror_log_dup(struct dm_pool *mem, const struct logical_volume *lv);
+char *lv_pool_lv_dup(struct dm_pool *mem, const struct logical_volume *lv);
 char *lv_modules_dup(struct dm_pool *mem, const struct logical_volume *lv);
 char *lv_name_dup(struct dm_pool *mem, const struct logical_volume *lv);
 char *lv_origin_dup(struct dm_pool *mem, const struct logical_volume *lv);
index acc232f28b07c8505afc2f647357281bacbdec10..f7f22e2ca5ad88ebcb631eb2c4f605512f28d99d 100644 (file)
@@ -80,6 +80,7 @@ FIELD(LVS, lv, STR, "Move", lvid, 4, movepv, move_pv, "For pvmove, Source PV of
 FIELD(LVS, lv, STR, "Convert", lvid, 7, convertlv, convert_lv, "For lvconvert, Name of temporary LV created by lvconvert.", 0)
 FIELD(LVS, lv, STR, "LV Tags", tags, 7, tags, lv_tags, "Tags, if any.", 0)
 FIELD(LVS, lv, STR, "Log", lvid, 3, loglv, mirror_log, "For mirrors, the LV holding the synchronisation log.", 0)
+FIELD(LVS, lv, STR, "Pool", lvid, 3, poollv, thin_pool, "For thinly-provisioned devices, the pool LV holding the data.", 0)
 FIELD(LVS, lv, STR, "Modules", lvid, 7, modules, modules, "Kernel device-mapper modules required for this LV.", 0)
 
 FIELD(LABEL, pv, STR, "Fmt", id, 3, pvfmt, pv_fmt, "Type of metadata.", 0)
index 62c39d564ed6bf99f47f279343bad7bbeb2e73fd..8b93bd51df96048d6003c2953f998e8f7e2471a7 100644 (file)
@@ -175,6 +175,8 @@ GET_LV_STR_PROPERTY_FN(lv_tags, lv_tags_dup(lv))
 #define _lv_tags_set _not_implemented_set
 GET_LV_STR_PROPERTY_FN(mirror_log, lv_mirror_log_dup(lv->vg->vgmem, lv))
 #define _mirror_log_set _not_implemented_set
+GET_LV_STR_PROPERTY_FN(thin_pool, lv_pool_lv_dup(lv->vg->vgmem, lv))
+#define _thin_pool_set _not_implemented_set
 GET_LV_STR_PROPERTY_FN(modules, lv_modules_dup(lv->vg->vgmem, lv))
 #define _modules_set _not_implemented_set
 
index e572797a116787a2085cf27ac1ddcb46871c9312..4781f3a87c12a2b3c6f298d4eb1130a9324b193a 100644 (file)
@@ -240,6 +240,19 @@ static int _loglv_disp(struct dm_report *rh, struct dm_pool *mem __attribute__((
        return 1;
 }
 
+static int _poollv_disp(struct dm_report *rh, struct dm_pool *mem __attribute__((unused)),
+                       struct dm_report_field *field,
+                       const void *data, void *private __attribute__((unused)))
+{
+       const struct logical_volume *lv = (const struct logical_volume *) data;
+       const char *name;
+
+       if ((name = lv_pool_lv_dup(mem, lv)))
+               return dm_report_field_string(rh, field, &name);
+
+       dm_report_field_set_value(field, "", NULL);
+       return 1;
+}
 static int _lvname_disp(struct dm_report *rh, struct dm_pool *mem,
                        struct dm_report_field *field,
                        const void *data, void *private __attribute__((unused)))
index 70a874620c34df36850e250c4f195bdb51e2c1ef..7ed72703b2e59169a227745cd04f98b564de3b74 100644 (file)
@@ -57,7 +57,7 @@ Use \fb-o help\fP to view the full list of columns available.
 Column names include:
 lv_uuid, lv_name, lv_path, lv_attr, lv_major, lv_minor, lv_read_ahead, lv_kernel_major,
 lv_kernel_minor, lv_kernel_read_ahead, lv_size, seg_count, origin, origin_size,
-snap_percent, copy_percent, move_pv, convert_lv, lv_tags, mirror_log, modules,
+snap_percent, copy_percent, move_pv, convert_lv, lv_tags, mirror_log, thin_pool, modules,
 segtype, stripes, stripesize, regionsize, chunksize, seg_start, seg_start_pe,
 seg_size, seg_tags, seg_pe_ranges, devices.
 .IP
This page took 0.042648 seconds and 5 git commands to generate.