]> sourceware.org Git - lvm2.git/commitdiff
Use a common message for a used PV
authorDavid Teigland <teigland@redhat.com>
Thu, 25 Feb 2016 20:12:08 +0000 (14:12 -0600)
committerDavid Teigland <teigland@redhat.com>
Thu, 25 Feb 2016 20:23:41 +0000 (14:23 -0600)
Change some inconsistent messages and adopt
the new wording "PV %s is used by" in place
of "PV %s is marked as belonging to"
or "PV %s belongs to".

lib/metadata/metadata.c
lib/metadata/pv_manip.c
test/shell/pv-ext-flags.sh
test/shell/pvremove-usage.sh
tools/pvchange.c
tools/toollib.c

index acdfdecae5ec17cd1606b329147af2ae8a8f1ddf..6ec0a0e2a61578deae5133f5fa2d24455aad949a 100644 (file)
@@ -201,8 +201,7 @@ static int add_pv_to_vg(struct volume_group *vg, const char *pv_name,
                        return_0;
 
                if (used) {
-                       log_error("Physical volume '%s' is marked as belonging to a VG "
-                                 "but its metadata is missing.", pv_name);
+                       log_error("PV %s is used by a VG but its metadata is missing.", pv_name);
                        return 0;
                }
        }
@@ -1585,7 +1584,7 @@ static int _pvcreate_check(struct cmd_context *cmd, const char *name,
                        goto_out;
 
                if (used && pp->force != DONT_PROMPT_OVERRIDE) {
-                       log_error("PV '%s' is marked as belonging to a VG but its metadata is missing.", name);
+                       log_error("PV %s is used by a VG but its metadata is missing.", name);
                        log_error("Can't initialize PV '%s' without -ff.", name);
                        goto out;
                }
index f54111c396bd0d790afec2098228c27fc31c8fb0..48706d106578228ae3eabcdc6bf413d732992740 100644 (file)
@@ -733,8 +733,7 @@ static int pvremove_check(struct cmd_context *cmd, const char *name,
                        goto_out;
 
                if (used) {
-                       log_warn("WARNING: PV '%s' is marked as belonging to a VG "
-                                "but its metadata is missing.", name);
+                       log_warn("WARNING: PV %s is used by a VG but its metadata is missing.", name);
 
                        if (force_count < 2)
                                goto_bad;
@@ -745,8 +744,7 @@ static int pvremove_check(struct cmd_context *cmd, const char *name,
                                goto_bad;
                }
        } else {
-               log_warn("WARNING: PV %s belongs to Volume Group %s "
-                        "(consider using vgreduce).", name, pv_vg_name(pv));
+               log_warn("WARNING: PV %s is used by VG %s (consider using vgreduce).", name, pv_vg_name(pv));
 
                if (force_count < 2)
                        goto_bad;
index cf2a8a1c81bf889436d74d0ab9da01b7fcb63cb9..d46549785f359b9f985629fea4cdcb73e9bee213 100644 (file)
@@ -17,7 +17,7 @@ SKIP_WITH_LVMPOLLD=1
 aux prepare_devs 2
 
 # PV_EXT_USED flag
-MARKED_AS_USED_MSG="marked as belonging to a VG but its metadata is missing"
+MARKED_AS_USED_MSG="is used by a VG but its metadata is missing"
 
 ######################################
 ### CHECK PV WITH 0 METADATA AREAS ###
index 4fd26d1e1d8de460a6cc430aa2bf8657f178ef54..e0f51bf1c042dcd8fdf2e67aa41822728aad7ca4 100644 (file)
@@ -56,16 +56,16 @@ for mdacp in 0 1 2; do
 
     # pvremove -f fails when pv in a vg (---metadatacopies $mdacp)
     not pvremove -f "$dev1" 2>&1 | tee out
-    grep "belongs" out
+    grep "is used" out
     pvs "$dev1"
 
     # pvremove -ff fails without confirmation when pv in a vg (---metadatacopies $mdacp)
     not pvremove -ff "$dev1" 2>&1 | tee out
-    grep "belongs" out
+    grep "is used" out
 
     # pvremove -ff succeds with confirmation when pv in a vg (---metadatacopies $mdacp)
     pvremove -ffy "$dev1" 2>&1 | tee out
-    grep "belongs" out
+    grep "is used" out
     not pvs "$dev1"
 
     vgreduce --removemissing $vg
index 3c12c142af685a821602d8b4b5551df7b03b0291..86c4ac4f00e774b7da7ae679f3b93d77f164fea7 100644 (file)
@@ -60,7 +60,7 @@ static int _pvchange_single(struct cmd_context *cmd, struct volume_group *vg,
                        goto_bad;
 
                if (used && (arg_count(cmd, force_ARG) != DONT_PROMPT_OVERRIDE)) {
-                       log_error("PV '%s' is marked as belonging to a VG but its metadata is missing.", pv_name);
+                       log_error("PV %s is used by a VG but its metadata is missing.", pv_name);
                        log_error("Can't change PV '%s' without -ff.", pv_name);
                        goto bad;
                }
index 3e48139aaa2cbb5b872068e387c0d4d5aabc45c7..80290302d8cd072a8327444ffca9fb7b81399b3b 100644 (file)
@@ -2962,7 +2962,7 @@ static int _process_pvs_in_vg(struct cmd_context *cmd,
                pv_name = pv_dev_name(pv);
 
                if (cmd->system_id && is_orphan(pv) && is_used_pv(pv)) {
-                       log_verbose("PV %s is marked as belonging to a VG but its metadata is missing.", pv_name);
+                       log_verbose("PV %s is used by a VG but its metadata is missing.", pv_name);
                        log_verbose("Skipping PV %s because it's not possible to decide whether it matches system id.", pv_name);
                        continue;
                }
@@ -3601,7 +3601,7 @@ static void _check_pvcreate_prompt(struct cmd_context *cmd,
                        prompt->answer = PROMPT_ANSWER_NO;
 
                        if (prompt->vg_name_unknown) {
-                               log_error("PV '%s' is marked as belonging to a VG but its metadata is missing.", pvname);
+                               log_error("PV %s is used by a VG but its metadata is missing.", pvname);
                                log_error("Can't initialize PV '%s' without -ff.", pvname);
                        } else if (!strcmp(command_name(cmd), "pvcreate")) {
                                log_error("Can't initialize physical volume \"%s\" of volume group \"%s\" without -ff", pvname, vgname);
@@ -3626,15 +3626,15 @@ static void _check_pvcreate_prompt(struct cmd_context *cmd,
                        prompt->answer = PROMPT_ANSWER_NO;
 
                        if (prompt->vg_name_unknown)
-                               log_error("PV %s belongs to a VG but its metadata is missing.", pvname);
+                               log_error("PV %s is used by a VG but its metadata is missing.", pvname);
                        else
-                               log_error("PV %s belongs to Volume Group %s so please use vgreduce first.", pvname, vgname);
+                               log_error("PV %s is used by VG %s so please use vgreduce first.", pvname, vgname);
                        log_error("(If you are certain you need pvremove, then confirm by using --force twice.)");
                } else if (pp->yes) {
-                       log_warn("WARNING: PV %s belongs to Volume Group %s", pvname, vgname);
+                       log_warn("WARNING: PV %s is used by VG %s", pvname, vgname);
                        prompt->answer = PROMPT_ANSWER_YES;
                } else if (ask) {
-                       log_warn("WARNING: PV %s belongs to Volume Group %s", pvname, vgname);
+                       log_warn("WARNING: PV %s is used by VG %s", pvname, vgname);
                        if (yes_no_prompt("Really WIPE LABELS from physical volume \"%s\" of volume group \"%s\" [y/n]? ", pvname, vgname) == 'n') {
                                prompt->answer = PROMPT_ANSWER_NO;
                                log_error("%s: physical volume label not removed", pvname);
This page took 0.052936 seconds and 5 git commands to generate.