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 ,
2016-01-21 13:49:46 +03:00
* Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2001-10-29 21:23:35 +03:00
*/
# include "tools.h"
2017-10-18 17:57:46 +03:00
static int _lvscan_single ( struct cmd_context * cmd , struct logical_volume * lv ,
struct processing_handle * 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 ;
2014-06-09 14:08:27 +04:00
dm_percent_t snap_percent ; /* fused, fsize; */
2001-10-29 21:23:35 +03:00
const char * active_str , * snapshot_str ;
2016-06-22 00:24:52 +03:00
if ( ! arg_is_set ( 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 ;
2014-04-28 13:58:26 +04:00
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 ) ) )
2014-06-09 14:08:27 +04:00
if ( snap_percent = = DM_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 )
{
2018-07-10 21:39:29 +03:00
if ( arg_is_set ( cmd , cache_long_ARG ) ) {
2023-07-15 11:57:37 +03:00
log_warn ( " WARNING: Ignoring lvscan --cache because lvmetad is no longer used. " ) ;
2018-07-10 21:39:29 +03:00
return ECMD_PROCESSED ;
2016-01-29 01:40:26 +03:00
}
2017-10-18 17:57:46 +03:00
return process_each_lv ( cmd , argc , argv , NULL , NULL , 0 , NULL , NULL , & _lvscan_single ) ;
2002-11-18 17:04:08 +03:00
}