2001-10-29 21:23:35 +03:00
/*
2004-03-30 23:35:44 +04:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
* Copyright ( C ) 2004 Red Hat , Inc . All rights reserved .
2001-10-29 21:23:35 +03:00
*
2004-03-30 23:35:44 +04:00
* This file is part of LVM2 .
2001-10-29 21:23:35 +03:00
*
2004-03-30 23:35:44 +04: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 21:23:35 +03:00
*
* You should have received a copy of the GNU General Public License
2004-03-30 23:35:44 +04: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 21:23:35 +03:00
*/
# include "tools.h"
2002-11-18 17:04:08 +03:00
static int lvscan_single ( struct cmd_context * cmd , struct logical_volume * lv ,
void * handle )
2001-10-29 21:23:35 +03:00
{
2003-01-09 01:44:07 +03:00
struct lvinfo info ;
2001-10-29 21:23:35 +03:00
int lv_total = 0 ;
2003-04-15 17:24:42 +04:00
uint64_t lv_capacity_total = 0 ;
2001-10-29 21:23:35 +03:00
const char * active_str , * snapshot_str ;
2002-12-20 02:25:55 +03:00
/* FIXME Add -D arg to skip this! */
2002-03-11 22:02:28 +03:00
if ( lv_info ( lv , & info ) & & info . exists )
2001-11-14 21:38:07 +03:00
active_str = " ACTIVE " ;
2002-03-11 22:02:28 +03:00
else
2001-11-14 21:38:07 +03:00
active_str = " inactive " ;
2001-10-29 21:23:35 +03:00
2002-02-20 22:04:55 +03:00
if ( lv_is_origin ( lv ) )
2001-11-14 21:38:07 +03:00
snapshot_str = " Original " ;
2002-02-20 22:04:55 +03:00
else if ( lv_is_cow ( lv ) )
2001-11-14 21:38:07 +03:00
snapshot_str = " Snapshot " ;
else
snapshot_str = " " ;
2001-10-29 21:23:35 +03:00
2002-11-18 17:04:08 +03:00
log_print ( " %s%s '%s%s/%s' [%s] %s " , active_str , snapshot_str ,
2002-12-12 23:55:49 +03:00
cmd - > dev_dir , lv - > vg - > name , lv - > name ,
2004-06-07 19:22:43 +04:00
display_size ( cmd , lv - > size , SIZE_SHORT ) ,
2002-07-11 18:21:49 +04:00
get_alloc_string ( lv - > alloc ) ) ;
2001-10-29 21:23:35 +03:00
2001-11-14 21:38:07 +03:00
lv_total + + ;
2001-10-29 21:23:35 +03:00
2001-11-14 21:38:07 +03:00
lv_capacity_total + = lv - > size ;
2001-10-29 21:23:35 +03:00
2003-10-22 02:06:07 +04:00
return ECMD_PROCESSED ;
2001-10-29 21:23:35 +03:00
}
2002-11-18 17:04:08 +03: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 ) ;
}