mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
de6c918392
o rewrote activate.c to use dev-manager, I'm sure these two will merge at some point. o Rename is broken ATM o dev-manager puts the calls through to fs.c for layers that have the 'visible' flag set.
24 lines
504 B
C
24 lines
504 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, const char *dev);
|
|
int fs_del_lv(struct logical_volume *lv);
|
|
int fs_rename_lv(struct logical_volume *lv,
|
|
const char *dev, const char *old_name);
|
|
|
|
|
|
#endif
|