mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
16 lines
301 B
C
16 lines
301 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"
|
||
|
|
||
|
int fs_add_lv(struct io_space *ios, struct logical_volume *lv);
|
||
|
int fs_del_lv(struct io_space *ios, struct logical_volume *lv);
|
||
|
|
||
|
#endif
|