1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-03 05:18:29 +03:00
lvm2/lib/activate/activate.h

29 lines
680 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-10-16 20:25:28 +04:00
int lv_activate(struct volume_group *vg,
2001-10-09 21:09:46 +04:00
struct logical_volume *lv);
2001-10-16 20:25:28 +04:00
int lv_deactivate(struct volume_group *vg,
struct logical_volume *lv);
2001-10-16 20:25:28 +04:00
/* Return number of LVs in the VG that are active */
int lvs_in_vg_activated(struct volume_group *vg);
/* Activate all LVs in the VG. Ignore any that are already active. */
/* Return number activated */
int activate_lvs_in_vg(struct volume_group *vg);
/* Deactivate all LVs in the VG */
int deactivate_lvs_in_vg(struct volume_group *vg);
#endif