1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-10-28 03:27:58 +03:00
lvm2/tools/lvscan.c

70 lines
1.7 KiB
C
Raw Normal View History

2001-10-29 21:23:35 +03:00
/*
* Copyright (C) 2001 Sistina Software
*
* LVM is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2, or (at your option)
* any later version.
*
* LVM is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with LVM; see the file COPYING. If not, write to
* the Free Software Foundation, 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*
*/
#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
{
2002-03-11 22:02:28 +03:00
struct dm_info info;
2001-10-29 21:23:35 +03:00
int lv_total = 0;
ulong lv_capacity_total = 0;
char *dummy;
const char *active_str, *snapshot_str;
2002-03-11 22:02:28 +03:00
if (lv_info(lv, &info) && info.exists)
active_str = "ACTIVE ";
2002-03-11 22:02:28 +03:00
else
active_str = "inactive ";
2001-10-29 21:23:35 +03:00
if (lv_is_origin(lv))
snapshot_str = "Original";
else if (lv_is_cow(lv))
snapshot_str = "Snapshot";
else
snapshot_str = " ";
2001-10-29 21:23:35 +03:00
dummy = display_size(lv->size / 2, SIZE_SHORT);
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,
cmd->dev_dir, lv->vg->name, lv->name, dummy,
get_alloc_string(lv->alloc));
2001-10-29 21:23:35 +03:00
dbg_free(dummy);
2001-10-29 21:23:35 +03:00
lv_total++;
2001-10-29 21:23:35 +03:00
lv_capacity_total += lv->size;
2001-10-29 21:23:35 +03:00
return 0;
}
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);
}