2001-10-29 18:23:35 +00:00
/*
2004-03-30 19:35:44 +00:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2005-12-08 17:49:34 +00:00
* Copyright ( C ) 2004 - 2005 Red Hat , Inc . All rights reserved .
2001-10-29 18:23:35 +00:00
*
2004-03-30 19:35:44 +00:00
* This file is part of LVM2 .
2001-10-29 18:23:35 +00:00
*
2004-03-30 19:35:44 +00:00
* This copyrighted material is made available to anyone wishing to use ,
* modify , copy , or redistribute it subject to the terms and conditions
* of the GNU General Public License v .2 .
2001-10-29 18:23:35 +00:00
*
* You should have received a copy of the GNU General Public License
2004-03-30 19:35:44 +00:00
* along with this program ; if not , write to the Free Software Foundation ,
* Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
2001-10-29 18:23:35 +00:00
*/
# include "tools.h"
2002-11-18 14:04:08 +00:00
static int lvscan_single ( struct cmd_context * cmd , struct logical_volume * lv ,
void * handle )
2001-10-29 18:23:35 +00:00
{
2003-01-08 22:44:07 +00:00
struct lvinfo info ;
2001-10-29 18:23:35 +00:00
int lv_total = 0 ;
2003-04-15 13:24:42 +00:00
uint64_t lv_capacity_total = 0 ;
2005-12-08 17:49:34 +00:00
int inkernel , snap_active = 1 ;
struct lv_segment * snap_seg = NULL ;
float snap_percent ; /* fused, fsize; */
2001-10-29 18:23:35 +00:00
const char * active_str , * snapshot_str ;
2005-10-17 16:41:38 +00:00
/* FIXME Avoid snapshot special-case */
if ( ! arg_count ( cmd , all_ARG ) & & ! ( lv - > status & VISIBLE_LV ) & &
! ( lv_is_cow ( lv ) ) )
return ECMD_PROCESSED ;
2005-12-08 17:49:34 +00:00
inkernel = lv_info ( cmd , lv , & info , 1 ) & & info . exists ;
if ( lv_is_origin ( lv ) ) {
list_iterate_items_gen ( snap_seg , & lv - > snapshot_segs ,
origin_list ) {
if ( inkernel & &
( snap_active = lv_snapshot_percent ( snap_seg - > cow ,
& snap_percent ) ) )
if ( snap_percent < 0 | | snap_percent > = 100 )
snap_active = 0 ;
}
snap_seg = NULL ;
} else if ( ( snap_seg = find_cow ( lv ) ) ) {
if ( inkernel & &
( snap_active = lv_snapshot_percent ( snap_seg - > cow ,
& snap_percent ) ) )
if ( snap_percent < 0 | | snap_percent > = 100 )
snap_active = 0 ;
}
2002-12-19 23:25:55 +00:00
/* FIXME Add -D arg to skip this! */
2005-12-08 17:49:34 +00:00
if ( inkernel & & snap_active )
2001-11-14 18:38:07 +00:00
active_str = " ACTIVE " ;
2002-03-11 19:02:28 +00:00
else
2001-11-14 18:38:07 +00:00
active_str = " inactive " ;
2001-10-29 18:23:35 +00:00
2002-02-20 19:04:55 +00:00
if ( lv_is_origin ( lv ) )
2001-11-14 18:38:07 +00:00
snapshot_str = " Original " ;
2002-02-20 19:04:55 +00:00
else if ( lv_is_cow ( lv ) )
2001-11-14 18:38:07 +00:00
snapshot_str = " Snapshot " ;
else
snapshot_str = " " ;
2001-10-29 18:23:35 +00:00
2002-11-18 14:04:08 +00:00
log_print ( " %s%s '%s%s/%s' [%s] %s " , active_str , snapshot_str ,
2002-12-12 20:55:49 +00:00
cmd - > dev_dir , lv - > vg - > name , lv - > name ,
2004-06-07 15:22:43 +00:00
display_size ( cmd , lv - > size , SIZE_SHORT ) ,
2002-07-11 14:21:49 +00:00
get_alloc_string ( lv - > alloc ) ) ;
2001-10-29 18:23:35 +00:00
2001-11-14 18:38:07 +00:00
lv_total + + ;
2001-10-29 18:23:35 +00:00
2001-11-14 18:38:07 +00:00
lv_capacity_total + = lv - > size ;
2001-10-29 18:23:35 +00:00
2003-10-21 22:06:07 +00:00
return ECMD_PROCESSED ;
2001-10-29 18:23:35 +00:00
}
2002-11-18 14:04:08 +00:00
int lvscan ( struct cmd_context * cmd , int argc , char * * argv )
{
if ( argc ) {
log_error ( " No additional command line arguments allowed " ) ;
return EINVALID_CMD_LINE ;
}
return process_each_lv ( cmd , argc , argv , LCK_VG_READ , NULL ,
& lvscan_single ) ;
}