mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-03 05:18:29 +03:00
b3a348c03c
Recently the single 'status' code has been used for number of cache features. Extend the API a little bit to allow usage also for lv_attr_dup. As the function itself is used in lvm2api - add a new function: lv_attr_dup_with_info_and_seg_status() that is able to use grabbed info & status information. report_init() is now using directly passed lvdm struct pointer which holds the infomation whether lv_info() was correctly obtained or there was some error when trying to read it. Move 'healt' attribute to status. TODO convert raid function to use the already known status.
111 lines
4.8 KiB
C
111 lines
4.8 KiB
C
/*
|
|
* Copyright (C) 2001-2004 Sistina Software, Inc. All rights reserved.
|
|
* Copyright (C) 2004-2012 Red Hat, Inc. All rights reserved.
|
|
*
|
|
* This file is part of LVM2.
|
|
*
|
|
* This copyrighted material is made available to anyone wishing to use,
|
|
* modify, copy, or redistribute it subject to the terms and conditions
|
|
* of the GNU Lesser General Public License v.2.1.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
#ifndef _LVM_LV_H
|
|
#define _LVM_LV_H
|
|
|
|
#include "vg.h"
|
|
|
|
union lvid;
|
|
struct lv_segment;
|
|
struct replicator_device;
|
|
enum activation_change;
|
|
|
|
struct logical_volume {
|
|
union lvid lvid;
|
|
const char *name;
|
|
|
|
struct volume_group *vg;
|
|
|
|
uint64_t status;
|
|
alloc_policy_t alloc;
|
|
struct profile *profile;
|
|
uint32_t read_ahead;
|
|
int32_t major;
|
|
int32_t minor;
|
|
|
|
uint64_t size; /* Sectors */
|
|
uint32_t le_count;
|
|
|
|
uint32_t origin_count;
|
|
uint32_t external_count;
|
|
struct dm_list snapshot_segs;
|
|
struct lv_segment *snapshot;
|
|
|
|
struct replicator_device *rdevice;/* For replicator-devs, rimages, slogs - reference to rdevice */
|
|
struct dm_list rsites; /* For replicators - all sites */
|
|
|
|
struct dm_list segments;
|
|
struct dm_list tags;
|
|
struct dm_list segs_using_this_lv;
|
|
|
|
uint64_t timestamp;
|
|
const char *hostname;
|
|
};
|
|
|
|
struct lv_with_info_and_seg_status;
|
|
|
|
uint64_t lv_size(const struct logical_volume *lv);
|
|
uint64_t lv_metadata_size(const struct logical_volume *lv);
|
|
char *lv_attr_dup_with_info_and_seg_status(struct dm_pool *mem, const struct lv_with_info_and_seg_status *lvdm);
|
|
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);
|
|
char *lv_dmpath_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
uint64_t lv_origin_size(const struct logical_volume *lv);
|
|
char *lv_move_pv_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
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_data_lv_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
char *lv_metadata_lv_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_fullname_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
struct logical_volume *lv_parent(const struct logical_volume *lv);
|
|
char *lv_parent_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
char *lv_origin_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
uint32_t lv_kernel_read_ahead(const struct logical_volume *lv);
|
|
const char *lvseg_name(const struct lv_segment *seg);
|
|
uint64_t lvseg_start(const struct lv_segment *seg);
|
|
uint64_t lvseg_size(const struct lv_segment *seg);
|
|
uint64_t lvseg_chunksize(const struct lv_segment *seg);
|
|
char *lvseg_segtype_dup(struct dm_pool *mem, const struct lv_segment *seg);
|
|
char *lvseg_discards_dup(struct dm_pool *mem, const struct lv_segment *seg);
|
|
char *lvseg_cachemode_dup(struct dm_pool *mem, const struct lv_segment *seg);
|
|
char *lvseg_monitor_dup(struct dm_pool *mem, const struct lv_segment *seg);
|
|
char *lvseg_tags_dup(const struct lv_segment *seg);
|
|
char *lvseg_devices(struct dm_pool *mem, const struct lv_segment *seg);
|
|
char *lvseg_seg_pe_ranges(struct dm_pool *mem, const struct lv_segment *seg);
|
|
uint32_t lv_error_when_full(const struct logical_volume *lv);
|
|
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);
|
|
int lv_active_change(struct cmd_context *cmd, struct logical_volume *lv,
|
|
enum activation_change activate, int needs_exlusive);
|
|
char *lv_active_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
const struct logical_volume *lv_lock_holder(const struct logical_volume *lv);
|
|
const struct logical_volume *lv_ondisk(const struct logical_volume *lv);
|
|
struct profile *lv_config_profile(const struct logical_volume *lv);
|
|
char *lv_profile_dup(struct dm_pool *mem, const struct logical_volume *lv);
|
|
int lv_mirror_image_in_sync(const struct logical_volume *lv);
|
|
int lv_raid_image_in_sync(const struct logical_volume *lv);
|
|
int lv_raid_healthy(const struct logical_volume *lv);
|
|
#endif /* _LVM_LV_H */
|