2010-08-20 12:44:58 +00:00
/*
2013-07-12 13:09:44 -04:00
* Copyright ( C ) 2010 - 2013 Red Hat , Inc . All rights reserved .
2010-08-20 12:44:58 +00:00
*
* 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 ,
2016-01-21 11:49:46 +01:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2010-08-20 12:44:58 +00:00
*/
# ifndef _LVM_PROPERTIES_H
# define _LVM_PROPERTIES_H
2018-06-08 12:31:45 +01:00
# include "device_mapper/all.h"
2018-05-14 10:30:20 +01:00
# include "lib/metadata/metadata.h"
# include "lib/report/report.h"
# include "lib/properties/prop_common.h"
2010-08-20 12:44:58 +00:00
2010-11-17 20:08:14 +00:00
int lvseg_get_property ( const struct lv_segment * lvseg ,
struct lvm_property_type * prop ) ;
2010-10-21 18:51:16 +00:00
int lv_get_property ( const struct logical_volume * lv ,
struct lvm_property_type * prop ) ;
2010-09-30 14:09:45 +00:00
int vg_get_property ( const struct volume_group * vg ,
struct lvm_property_type * prop ) ;
2010-11-17 20:11:27 +00:00
int pvseg_get_property ( const struct pv_segment * pvseg ,
struct lvm_property_type * prop ) ;
2010-09-30 14:09:45 +00:00
int pv_get_property ( const struct physical_volume * pv ,
struct lvm_property_type * prop ) ;
2010-11-17 19:15:10 +00:00
int lv_set_property ( struct logical_volume * lv ,
struct lvm_property_type * prop ) ;
int vg_set_property ( struct volume_group * vg ,
struct lvm_property_type * prop ) ;
int pv_set_property ( struct physical_volume * pv ,
struct lvm_property_type * prop ) ;
2010-08-20 12:44:58 +00:00
# endif