2001-10-29 21:23:35 +03:00
/*
2008-01-30 17:00:02 +03:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-21 00:55:30 +04:00
* Copyright ( C ) 2004 - 2006 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
2007-08-21 00:55:30 +04:00
* of the GNU Lesser General Public License v .2 .1 .
2001-10-29 21:23:35 +03: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 ,
* 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 ,
2010-07-09 19:34:40 +04:00
void * handle __attribute__ ( ( unused ) ) )
2001-10-29 21:23:35 +03:00
{
2003-01-09 01:44:07 +03:00
struct lvinfo info ;
2005-12-08 20:49:34 +03:00
int inkernel , snap_active = 1 ;
struct lv_segment * snap_seg = NULL ;
2010-11-30 14:53:31 +03:00
percent_t snap_percent ; /* fused, fsize; */
2001-10-29 21:23:35 +03:00
const char * active_str , * snapshot_str ;
2009-05-14 01:27:43 +04:00
if ( ! arg_count ( cmd , all_ARG ) & & ! lv_is_visible ( lv ) )
2005-10-17 20:41:38 +04:00
return ECMD_PROCESSED ;
2011-02-03 04:24:46 +03:00
inkernel = lv_info ( cmd , lv , 0 , & info , 0 , 0 ) & & info . exists ;
2005-12-08 20:49:34 +03:00
if ( lv_is_origin ( lv ) ) {
2008-11-04 01:14:30 +03:00
dm_list_iterate_items_gen ( snap_seg , & lv - > snapshot_segs ,
2005-12-08 20:49:34 +03:00
origin_list ) {
if ( inkernel & &
( snap_active = lv_snapshot_percent ( snap_seg - > cow ,
2010-11-30 14:53:31 +03:00
& snap_percent ) ) )
if ( snap_percent = = PERCENT_INVALID )
2005-12-08 20:49:34 +03:00
snap_active = 0 ;
}
snap_seg = NULL ;
2006-04-06 17:39:16 +04:00
} else if ( lv_is_cow ( lv ) ) {
2005-12-08 20:49:34 +03:00
if ( inkernel & &
2010-11-30 14:53:31 +03:00
( snap_active = lv_snapshot_percent ( lv , & snap_percent ) ) )
if ( snap_percent = = PERCENT_INVALID )
2005-12-08 20:49:34 +03:00
snap_active = 0 ;
}
2002-12-20 02:25:55 +03:00
/* FIXME Add -D arg to skip this! */
2005-12-08 20:49:34 +03:00
if ( inkernel & & snap_active )
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
config: add silent mode
Accept -q as the short form of --quiet.
Suppress non-essential standard output if -q is given twice.
Treat log/silent in lvm.conf as equivalent to -qq.
Review all log_print messages and change some to
log_print_unless_silent.
When silent, the following commands still produce output:
dumpconfig, lvdisplay, lvmdiskscan, lvs, pvck, pvdisplay,
pvs, version, vgcfgrestore -l, vgdisplay, vgs.
[Needs checking.]
Non-essential messages are shifted from log level 4 to log level 5
for syslog and lvm2_log_fn purposes.
2012-08-25 23:35:48 +04:00
log_print_unless_silent ( " %s%s '%s%s/%s' [%s] %s " , active_str , snapshot_str ,
cmd - > dev_dir , lv - > vg - > name , lv - > name ,
display_size ( cmd , lv - > size ) ,
get_alloc_string ( lv - > alloc ) ) ;
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 ;
}
2009-07-01 21:00:50 +04:00
return process_each_lv ( cmd , argc , argv , 0 , NULL ,
2002-11-18 17:04:08 +03:00
& lvscan_single ) ;
}