1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-26 03:22:12 +03:00
lvm2/tools/pvdisplay.c

101 lines
2.4 KiB
C
Raw Normal View History

2001-09-25 16:49:28 +04: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
void pvdisplay_single(struct cmd_context *cmd, struct physical_volume *pv,
void *handle)
2001-09-25 16:49:28 +04:00
{
2001-10-18 20:55:19 +04:00
char *sz;
uint64_t size;
2001-09-25 16:49:28 +04:00
const char *pv_name = dev_name(pv->dev);
2001-09-25 16:49:28 +04:00
2001-10-18 20:55:19 +04:00
if (!*pv->vg_name)
size = pv->size;
else
size = (pv->pe_count - pv->pe_alloc_count) * pv->pe_size;
2001-09-25 16:49:28 +04:00
if (arg_count(cmd, short_ARG)) {
2001-09-25 16:49:28 +04:00
sz = display_size(size / 2, SIZE_SHORT);
2002-01-30 18:04:48 +03:00
log_print("Device \"%s\" has a capacity of %s", pv_name, sz);
2001-09-25 16:49:28 +04:00
dbg_free(sz);
return;
}
if (pv->status & EXPORTED_VG)
log_print("Physical volume \"%s\" of volume group \"%s\" "
"is exported", pv_name, pv->vg_name);
2001-09-25 16:49:28 +04:00
2001-10-18 20:55:19 +04:00
if (!pv->vg_name) {
log_print("\"%s\" is a new physical volume of \"%s\"",
pv_name, (sz = display_size(size / 2, SIZE_SHORT)));
2001-10-18 20:55:19 +04:00
dbg_free(sz);
}
2001-09-25 16:49:28 +04:00
if (arg_count(cmd, colon_ARG)) {
2001-10-18 20:55:19 +04:00
pvdisplay_colons(pv);
return;
2001-09-25 16:49:28 +04:00
}
2002-11-18 17:04:08 +03:00
pvdisplay_full(pv, handle);
2001-09-25 16:49:28 +04:00
if (!arg_count(cmd, maps_ARG))
2001-10-18 20:55:19 +04:00
return;
2001-09-25 16:49:28 +04:00
2002-11-18 17:04:08 +03:00
return;
}
int pvdisplay(struct cmd_context *cmd, int argc, char **argv)
{
int opt = 0;
struct list *pvh, *pvs;
struct physical_volume *pv;
if (arg_count(cmd, colon_ARG) && arg_count(cmd, maps_ARG)) {
log_error("Option -v not allowed with option -c");
return EINVALID_CMD_LINE;
}
if (argc) {
log_very_verbose("Using physical volume(s) on command line");
for (; opt < argc; opt++) {
if (!(pv = pv_read(cmd, argv[opt], NULL, NULL))) {
log_error("Failed to read physical "
"volume \"%s\"", argv[opt]);
continue;
}
pvdisplay_single(cmd, pv, NULL);
2001-09-25 16:49:28 +04:00
}
2002-11-18 17:04:08 +03:00
} else {
log_verbose("Scanning for physical volume names");
if (!(pvs = get_pvs(cmd)))
return ECMD_FAILED;
2001-09-25 16:49:28 +04:00
2002-11-18 17:04:08 +03:00
list_iterate(pvh, pvs)
pvdisplay_single(cmd, list_item(pvh, struct pv_list)->pv,
NULL);
}
return 0;
2001-09-25 16:49:28 +04:00
}