diff options
author | David Teigland <teigland@redhat.com> | 2018-12-07 14:35:22 -0600 |
---|---|---|
committer | David Teigland <teigland@redhat.com> | 2019-01-15 10:23:47 -0600 |
commit | 6620dc9475d55207bfcd5e666f0379bcdf11831a (patch) | |
tree | a0bc324a818ff3cd99f38de51ccac3df2c5a4cc0 /tools/vgextend.c | |
parent | 81b3b71dae7775c93adebdea60308e11057a4ee8 (diff) | |
download | lvm2-6620dc9475d55207bfcd5e666f0379bcdf11831a.tar.gz |
add device hints to reduce scanning
Save the list of PVs in /run/lvm/hints. These hints
are used to reduce scanning in a number of commands
to only the PVs on the system, or only the PVs in a
requested VG (rather than all devices on the system.)
Diffstat (limited to 'tools/vgextend.c')
-rw-r--r-- | tools/vgextend.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/vgextend.c b/tools/vgextend.c index 5287a364e..c727d75bb 100644 --- a/tools/vgextend.c +++ b/tools/vgextend.c @@ -166,6 +166,8 @@ int vgextend(struct cmd_context *cmd, int argc, char **argv) return_ECMD_FAILED; cmd->lockd_gl_disable = 1; + clear_hint_file(cmd); + if (!(handle = init_processing_handle(cmd, NULL))) { log_error("Failed to initialize processing handle."); return ECMD_FAILED; |