2001-10-29 18:23:35 +00:00
/*
2008-01-30 14:00:02 +00:00
* Copyright ( C ) 2001 - 2004 Sistina Software , Inc . All rights reserved .
2007-08-20 20:55:30 +00:00
* Copyright ( C ) 2004 - 2006 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
2007-08-20 20:55:30 +00:00
* of the GNU Lesser General Public License v .2 .1 .
2001-10-29 18:23:35 +00:00
*
2007-08-20 20:55:30 +00:00
* You should have received a copy of the GNU Lesser General Public License
2004-03-30 19:35:44 +00:00
* along with this program ; if not , write to the Free Software Foundation ,
2016-01-21 11:49:46 +01:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2001-10-29 18:23:35 +00:00
*/
# include "tools.h"
2017-10-18 15:57:46 +01:00
static int _lvscan_single ( struct cmd_context * cmd , struct logical_volume * lv ,
struct processing_handle * handle __attribute__ ( ( unused ) ) )
2001-10-29 18:23:35 +00:00
{
2003-01-08 22:44:07 +00:00
struct lvinfo info ;
2005-12-08 17:49:34 +00:00
int inkernel , snap_active = 1 ;
2014-06-09 12:08:27 +02:00
dm_percent_t snap_percent ; /* fused, fsize; */
2001-10-29 18:23:35 +00:00
const char * active_str , * snapshot_str ;
2016-06-21 22:24:52 +01:00
if ( ! arg_is_set ( cmd , all_ARG ) & & ! lv_is_visible ( lv ) )
2005-10-17 16:41:38 +00:00
return ECMD_PROCESSED ;
2011-02-03 01:24:46 +00:00
inkernel = lv_info ( cmd , lv , 0 , & info , 0 , 0 ) & & info . exists ;
2014-04-28 11:58:26 +02:00
if ( lv_is_cow ( lv ) ) {
2005-12-08 17:49:34 +00:00
if ( inkernel & &
2010-11-30 11:53:31 +00:00
( snap_active = lv_snapshot_percent ( lv , & snap_percent ) ) )
2014-06-09 12:08:27 +02:00
if ( snap_percent = = DM_PERCENT_INVALID )
2005-12-08 17:49:34 +00:00
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
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 20:35:48 +01: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 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 )
{
2018-07-10 13:39:29 -05:00
if ( arg_is_set ( cmd , cache_long_ARG ) ) {
log_warn ( " Ignoring lvscan --cache because lvmetad is no longer used. " ) ;
return ECMD_PROCESSED ;
2016-01-28 16:40:26 -06:00
}
2017-10-18 15:57:46 +01:00
return process_each_lv ( cmd , argc , argv , NULL , NULL , 0 , NULL , NULL , & _lvscan_single ) ;
2002-11-18 14:04:08 +00:00
}