int pv_set_property(struct physical_volume *pv, struct lvm_property_type *prop) { return prop_set_property(_properties, pv, prop, PVS | LABEL); }
int lv_set_property(struct logical_volume *lv, struct lvm_property_type *prop) { return prop_set_property(_properties, lv, prop, LVS | LVSINFO | LVSSTATUS | LVSINFOSTATUS); }
int vg_set_property(struct volume_group *vg, struct lvm_property_type *prop) { return prop_set_property(_properties, vg, prop, VGS); }
int lv_create_param_set_property(struct lvcreate_params *lvcp, struct lvm_property_type *prop) { return prop_set_property(_lib_properties, lvcp, prop, LV_CREATE_PARAMS); }