1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-28 11:55:55 +03:00
lvm2/lib/activate/activate.h

44 lines
923 B
C
Raw Normal View History

/*
* Copyright (C) 2001 Sistina Software (UK) Limited.
*
* This file is released under the GPL.
*/
2001-10-16 20:25:28 +04:00
#ifndef LVM_ACTIVATE_H
#define LVM_ACTIVATE_H
2001-10-16 20:25:28 +04:00
/* FIXME Snapshot handling? */
2001-11-08 19:15:58 +03:00
int lv_active(struct logical_volume *lv);
int lv_open_count(struct logical_volume *lv);
2001-11-07 18:02:07 +03:00
int lv_activate(struct logical_volume *lv);
2001-11-07 14:51:42 +03:00
int lv_reactivate(struct logical_volume *lv);
int lv_deactivate(struct logical_volume *lv);
2001-11-07 14:51:42 +03:00
/*
* Return number of LVs in the VG that are
2001-11-07 18:02:07 +03:00
* active.
2001-11-07 14:51:42 +03:00
*/
2001-10-16 20:25:28 +04:00
int lvs_in_vg_activated(struct volume_group *vg);
2001-11-07 18:02:07 +03:00
int lvs_in_vg_opened(struct volume_group *vg);
2001-10-16 20:25:28 +04:00
2001-11-07 14:51:42 +03:00
/*
* Test for (lv->status & LVM_WRITE)
*/
int lv_update_write_access(struct logical_volume *lv);
2001-11-07 14:51:42 +03:00
/*
* Activate all LVs in the VG. Ignore any that
* are already active. Return number
* activated.
*/
2001-10-16 20:25:28 +04:00
int activate_lvs_in_vg(struct volume_group *vg);
2001-11-07 14:51:42 +03:00
/*
* Deactivate all LVs in the VG
*/
2001-10-16 20:25:28 +04:00
int deactivate_lvs_in_vg(struct volume_group *vg);
#endif