summaryrefslogtreecommitdiff
path: root/tools/vgck.c
diff options
context:
space:
mode:
authorPeter Rajnoha <prajnoha@redhat.com>2016-05-03 11:46:28 +0200
committerPeter Rajnoha <prajnoha@redhat.com>2016-06-20 11:33:42 +0200
commit8cfc385491484e71d66e5991e09c3d0a47570a13 (patch)
treedcdfe6d9c87669289a8ac2f334eaf566353018bf /tools/vgck.c
parent31aaa3be71597ec53262177bea76365605e9199f (diff)
downloadlvm2-8cfc385491484e71d66e5991e09c3d0a47570a13.tar.gz
toollib: make it possible to also process internal VGs, add 'include_internal' switch to process_each_vg fn
The lvm fullreport works per VG and as such, the vg, lv, pv, seg and pvseg subreport is done for each VG. However, if the PV is not part of any VG yet, we still want to display pv and pvseg subreports for these "orphan" PVs - so enable this for lvm fullreport's process_each_vg call.
Diffstat (limited to 'tools/vgck.c')
-rw-r--r--tools/vgck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/vgck.c b/tools/vgck.c
index 27a1d003e..54bc9d649 100644
--- a/tools/vgck.c
+++ b/tools/vgck.c
@@ -38,6 +38,6 @@ static int vgck_single(struct cmd_context *cmd __attribute__((unused)),
int vgck(struct cmd_context *cmd, int argc, char **argv)
{
lvmetad_make_unused(cmd);
- return process_each_vg(cmd, argc, argv, NULL, NULL, 0, NULL,
+ return process_each_vg(cmd, argc, argv, NULL, NULL, 0, 0, NULL,
&vgck_single);
}