1
0
mirror of git://sourceware.org/git/lvm2.git synced 2025-01-02 01:18:26 +03:00

Remove extraneous messages for extent_size and alloc_policy upon vgcreate.

When converting to the new liblvm functions, the vgcreate code path
changed to create a new vg, then set values.  As a result of this
change, and the fact that we give a user a message if they try to
set the same value of a VG attribute (extent_size, alloc_policy, etc),
you'll see these 2 extraneous "is already" messages with vgcreate:
tools/lvm vgcreate vg2 /dev/loop2
  Physical extent size of VG vg2 is already 4.00 MB
  Volume group allocation policy is already normal
  Volume group "vg2" successfully created

Signed-off-by: Dave Wysochanski <dwysocha@redhat.com>


Author: Dave Wysochanski <dwysocha@redhat.com>
This commit is contained in:
Dave Wysochanski 2009-07-16 03:25:26 +00:00
parent a0b1b1872e
commit e0bd7c7645
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.50 - Version 2.02.50 -
================================ ================================
Remove unnecessary messages after vgcreate/vgsplit refactor (2.02.49).
Add log_errno to set a specific errno and replace log_error in due course. Add log_errno to set a specific errno and replace log_error in due course.
Add lvm_errno and lvm_errmsg to liblvm to obtain failure information. Add lvm_errno and lvm_errmsg to liblvm to obtain failure information.
Change create_toolcontext to still return an object if it fails part-way. Change create_toolcontext to still return an object if it fails part-way.

View File

@ -742,7 +742,7 @@ int vg_set_extent_size(vg_t *vg, uint32_t new_size)
} }
if (new_size == vg->extent_size) { if (new_size == vg->extent_size) {
log_error("Physical extent size of VG %s is already %s", log_verbose("Physical extent size of VG %s is already %s",
vg->name, display_size(vg->cmd, (uint64_t) new_size)); vg->name, display_size(vg->cmd, (uint64_t) new_size));
return 1; return 1;
} }
@ -933,7 +933,7 @@ int vg_set_alloc_policy(vg_t *vg, alloc_policy_t alloc)
} }
if (alloc == vg->alloc) { if (alloc == vg->alloc) {
log_print("Volume group allocation policy is already %s", log_verbose("Volume group allocation policy is already %s",
get_alloc_string(vg->alloc)); get_alloc_string(vg->alloc));
return 1; return 1;
} }