mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
4a624ca055
is active in the device-mapper. o Many operations can be carried out regardless of whether the VG is active or not. o vgscan does not activate anything - use vgchange. o Change lvrename to support renaming of active LVs. o Remove '//' appearing in some pathnames. o Dummy lv_check_segments() for compilation.
24 lines
468 B
C
24 lines
468 B
C
/*
|
|
* Copyright (C) 2001 Sistina Software (UK) Limited.
|
|
*
|
|
* This file is released under the LGPL.
|
|
*/
|
|
|
|
#ifndef _LVM_FS_H
|
|
#define _LVM_FS_H
|
|
|
|
#include "metadata.h"
|
|
|
|
/*
|
|
* These calls, private to the activate unit, set
|
|
* up the volume group directory in /dev and the
|
|
* symbolic links to the dm device.
|
|
*/
|
|
|
|
int fs_add_lv(struct logical_volume *lv);
|
|
int fs_del_lv(struct logical_volume *lv);
|
|
int fs_rename_lv(const char *old_name, struct logical_volume *lv);
|
|
|
|
|
|
#endif
|