2001-10-09 16:05:34 +00:00
/*
* Copyright ( C ) 2001 Sistina Software ( UK ) Limited .
*
* This file is released under the GPL .
*/
2001-10-16 16:25:28 +00:00
# ifndef LVM_ACTIVATE_H
# define LVM_ACTIVATE_H
2001-10-09 16:05:34 +00:00
2001-11-21 19:32:35 +00:00
# include <libdevmapper.h>
2001-10-16 16:25:28 +00:00
/* FIXME Snapshot handling? */
2001-10-09 16:44:30 +00:00
2002-01-17 16:39:24 +00:00
int driver_version ( char * version , size_t size ) ;
int library_version ( char * version , size_t size ) ;
2001-11-08 16:15:58 +00:00
int lv_active ( struct logical_volume * lv ) ;
2002-01-07 22:28:36 +00:00
int lv_suspended ( struct logical_volume * lv ) ;
2001-11-08 16:15:58 +00:00
int lv_open_count ( struct logical_volume * lv ) ;
2001-11-21 19:32:35 +00:00
int lv_info ( struct logical_volume * lv , struct dm_info * info ) ;
2002-01-10 23:21:07 +00:00
int lv_rename ( const char * old_name , struct logical_volume * lv ) ;
2001-11-07 15:02:07 +00:00
2001-10-31 17:59:52 +00:00
int lv_activate ( struct logical_volume * lv ) ;
2001-11-07 11:51:42 +00:00
int lv_reactivate ( struct logical_volume * lv ) ;
2001-10-31 17:59:52 +00:00
int lv_deactivate ( struct logical_volume * lv ) ;
2002-01-10 23:21:07 +00:00
int lv_suspend ( struct logical_volume * lv ) ;
2001-10-09 16:05:34 +00:00
2001-11-07 11:51:42 +00:00
/*
* Return number of LVs in the VG that are
2001-11-07 15:02:07 +00:00
* active .
2001-11-07 11:51:42 +00:00
*/
2001-10-16 16:25:28 +00:00
int lvs_in_vg_activated ( struct volume_group * vg ) ;
2001-11-07 15:02:07 +00:00
int lvs_in_vg_opened ( struct volume_group * vg ) ;
2001-10-16 16:25:28 +00:00
2001-11-07 11:51:42 +00:00
/*
* Test for ( lv - > status & LVM_WRITE )
*/
2001-10-31 17:59:52 +00:00
int lv_update_write_access ( struct logical_volume * lv ) ;
2001-11-07 11:51:42 +00:00
/*
* Activate all LVs in the VG . Ignore any that
* are already active . Return number
* activated .
*/
2001-10-16 16:25:28 +00:00
int activate_lvs_in_vg ( struct volume_group * vg ) ;
2001-11-07 11:51:42 +00:00
/*
* Deactivate all LVs in the VG
*/
2001-10-16 16:25:28 +00:00
int deactivate_lvs_in_vg ( struct volume_group * vg ) ;
2001-10-09 16:05:34 +00:00
# endif