mirror of
git://sourceware.org/git/lvm2.git
synced 2025-03-10 16:58:47 +03:00
Refactor and add code for (lv) 'lv_path' get function.
This commit is contained in:
parent
a88a278698
commit
802e252b29
@ -16,6 +16,28 @@
|
||||
#include "lib.h"
|
||||
#include "metadata.h"
|
||||
#include "activate.h"
|
||||
#include "toolcontext.h"
|
||||
|
||||
char *lv_path_dup(struct dm_pool *mem, const struct logical_volume *lv)
|
||||
{
|
||||
char *repstr;
|
||||
size_t len;
|
||||
|
||||
len = strlen(lv->vg->cmd->dev_dir) + strlen(lv->vg->name) +
|
||||
strlen(lv->name) + 2;
|
||||
|
||||
if (!(repstr = dm_pool_zalloc(mem, len))) {
|
||||
log_error("dm_pool_alloc failed");
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (dm_snprintf(repstr, len, "%s%s/%s",
|
||||
lv->vg->cmd->dev_dir, lv->vg->name, lv->name) < 0) {
|
||||
log_error("lvpath snprintf failed");
|
||||
return 0;
|
||||
}
|
||||
return repstr;
|
||||
}
|
||||
|
||||
char *lv_uuid_dup(const struct logical_volume *lv)
|
||||
{
|
||||
|
@ -52,5 +52,6 @@ uint64_t lv_size(const struct logical_volume *lv);
|
||||
char *lv_attr_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
||||
char *lv_uuid_dup(const struct logical_volume *lv);
|
||||
char *lv_tags_dup(const struct logical_volume *lv);
|
||||
char *lv_path_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
||||
|
||||
#endif
|
||||
|
@ -101,7 +101,7 @@ GET_LV_STR_PROPERTY_FN(lv_uuid, lv_uuid_dup(lv))
|
||||
#define _lv_uuid_set _not_implemented_set
|
||||
#define _lv_name_get _not_implemented_get
|
||||
#define _lv_name_set _not_implemented_set
|
||||
#define _lv_path_get _not_implemented_get
|
||||
GET_LV_STR_PROPERTY_FN(lv_path, lv_path_dup(lv->vg->vgmem, lv))
|
||||
#define _lv_path_set _not_implemented_set
|
||||
GET_LV_STR_PROPERTY_FN(lv_attr, lv_attr_dup(lv->vg->vgmem, lv))
|
||||
#define _lv_attr_set _not_implemented_set
|
||||
|
@ -350,18 +350,9 @@ static int _lvpath_disp(struct dm_report *rh, struct dm_pool *mem,
|
||||
{
|
||||
const struct logical_volume *lv = (const struct logical_volume *) data;
|
||||
char *repstr;
|
||||
size_t len;
|
||||
|
||||
len = strlen(lv->vg->cmd->dev_dir) + strlen(lv->vg->name) + strlen(lv->name) + 2;
|
||||
if (!(repstr = dm_pool_zalloc(mem, len))) {
|
||||
log_error("dm_pool_alloc failed");
|
||||
if (!(repstr = lv_path_dup(mem, lv)))
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (dm_snprintf(repstr, len, "%s%s/%s", lv->vg->cmd->dev_dir, lv->vg->name, lv->name) < 0) {
|
||||
log_error("lvpath snprintf failed");
|
||||
return 0;
|
||||
}
|
||||
|
||||
dm_report_field_set_value(field, repstr, NULL);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user