mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-21 13:34:40 +03:00
activate: add lv_layer function
Add function to return layer name for LV.
This commit is contained in:
parent
4f439707fd
commit
ca7abbce8a
@ -1,5 +1,6 @@
|
||||
Version 2.02.99 -
|
||||
===================================
|
||||
Add internal function lv_layer() to obtain layer name for LV.
|
||||
Report partial and in-sync RAID attribute based on kernel status
|
||||
Fix blkdeactivate to handle nested mountpoints and mangled mount paths.
|
||||
Set locales with LC_ALL instead of lower priority LANG variable.
|
||||
|
@ -604,7 +604,6 @@ int lv_info(struct cmd_context *cmd, const struct logical_volume *lv, int use_la
|
||||
struct lvinfo *info, int with_open_count, int with_read_ahead)
|
||||
{
|
||||
struct dm_info dminfo;
|
||||
const char *layer;
|
||||
|
||||
if (!activation())
|
||||
return 0;
|
||||
@ -621,15 +620,10 @@ int lv_info(struct cmd_context *cmd, const struct logical_volume *lv, int use_la
|
||||
fs_unlock(); /* For non clustered - wait if there are non-delete ops */
|
||||
}
|
||||
|
||||
if (use_layer && lv_is_thin_pool(lv))
|
||||
layer = "tpool";
|
||||
else if (use_layer && lv_is_origin(lv))
|
||||
layer = "real";
|
||||
else
|
||||
layer = NULL;
|
||||
|
||||
if (!dev_manager_info(lv->vg->cmd->mem, lv, layer, with_open_count,
|
||||
with_read_ahead, &dminfo, &info->read_ahead))
|
||||
if (!dev_manager_info(lv->vg->cmd->mem, lv,
|
||||
(use_layer) ? lv_layer(lv) : NULL,
|
||||
with_open_count, with_read_ahead,
|
||||
&dminfo, &info->read_ahead))
|
||||
return_0;
|
||||
|
||||
info->exists = dminfo.exists;
|
||||
|
@ -225,6 +225,16 @@ char *lv_metadata_lv_dup(struct dm_pool *mem, const struct logical_volume *lv)
|
||||
dm_pool_strdup(mem, first_seg(lv)->metadata_lv->name) : NULL;
|
||||
}
|
||||
|
||||
const char *lv_layer(const struct logical_volume *lv)
|
||||
{
|
||||
if (lv_is_thin_pool(lv))
|
||||
return "tpool";
|
||||
else if (lv_is_origin(lv))
|
||||
return "real";
|
||||
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int lv_kernel_minor(const struct logical_volume *lv)
|
||||
{
|
||||
struct lvinfo info;
|
||||
|
@ -82,4 +82,5 @@ char *lv_time_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
||||
char *lv_host_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
||||
int lv_set_creation(struct logical_volume *lv,
|
||||
const char *hostname, uint64_t timestamp);
|
||||
const char *lv_layer(const struct logical_volume *lv);
|
||||
#endif /* _LVM_LV_H */
|
||||
|
Loading…
Reference in New Issue
Block a user