2001-11-09 11:48:22 +03:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2007 Red Hat , Inc . All rights reserved .
2001-11-09 11:48:22 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
*
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2004-03-30 23:35:44 +04:00
*
2007-08-21 00:55:30 +04:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 23:35:44 +04:00
* along with this program ; if not , write to the Free Software Foundation ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2001-11-09 11:48:22 +03:00
*/
# ifndef _LVM_FS_H
# define _LVM_FS_H
2018-05-14 12:30:20 +03:00
# include "lib/metadata/metadata.h"
2001-11-09 11:48:22 +03:00
2001-11-21 12:21:31 +03:00
/*
* These calls , private to the activate unit , set
* up the volume group directory in / dev and the
* symbolic links to the dm device .
*/
2003-11-12 22:16:48 +03:00
int fs_add_lv ( const struct logical_volume * lv , const char * dev ) ;
int fs_del_lv ( const struct logical_volume * lv ) ;
2010-01-07 22:54:21 +03:00
int fs_del_lv_byname ( const char * dev_dir , const char * vg_name ,
const char * lv_name , int check_udev ) ;
2014-09-22 17:50:07 +04:00
int fs_rename_lv ( const struct logical_volume * lv , const char * dev ,
2010-01-07 22:54:21 +03:00
const char * old_vgname , const char * old_lvname ) ;
2011-01-10 17:02:30 +03:00
/* void fs_unlock(void); moved to activate.h */
2011-01-10 16:44:39 +03:00
uint32_t fs_get_cookie ( void ) ;
void fs_set_cookie ( uint32_t cookie ) ;
2011-10-14 17:23:47 +04:00
void fs_set_create ( void ) ;
2011-02-03 04:16:35 +03:00
int fs_has_non_delete_ops ( void ) ;
2002-01-11 02:21:07 +03:00
2001-11-09 11:48:22 +03:00
# endif