]> sourceware.org Git - lvm2.git/commitdiff
Correct enum type
authorZdenek Kabelac <zkabelac@redhat.com>
Thu, 1 Mar 2012 21:14:43 +0000 (21:14 +0000)
committerZdenek Kabelac <zkabelac@redhat.com>
Thu, 1 Mar 2012 21:14:43 +0000 (21:14 +0000)
Using debug_t and some forgetten alloc_policy_t, force_t from past commit.

daemons/clvmd/clvmd-command.c
daemons/clvmd/clvmd.c
tools/lvconvert.c
tools/toollib.c

index 540622ba3bf14286df1416bb513538d2a6d4cb09..64008fdca41deff43c48b3acf73245c984453557 100644 (file)
@@ -153,7 +153,7 @@ int do_command(struct local_client *client, struct clvm_header *msg, int msglen,
                break;
 
        case CLVMD_CMD_SET_DEBUG:
-               clvmd_set_debug(args[0]);
+               clvmd_set_debug((debug_t) args[0]);
                break;
 
        case CLVMD_CMD_RESTART:
index f6ce3fdc1ddfed5d89bdb765cd1e8e5cebb03f58..dc81fcbf122128f24cf1f67a5793bf582db2bf1f 100644 (file)
@@ -343,7 +343,7 @@ int main(int argc, char *argv[])
        int start_timeout = 0;
        if_type_t cluster_iface = IF_AUTO;
        sigset_t ss;
-       int debug_opt = 0;
+       debug_t debug_opt = DEBUG_OFF;
        debug_t debug_arg = DEBUG_OFF;
        int clusterwide_opt = 0;
        mode_t old_mask;
@@ -383,8 +383,8 @@ int main(int argc, char *argv[])
                        break;
 
                case 'd':
-                       debug_opt = 1;
-                       debug_arg = optarg ? atoi(optarg) : DEBUG_STDERR;
+                       debug_opt = DEBUG_STDERR;
+                       debug_arg = optarg ? (debug_t) atoi(optarg) : DEBUG_STDERR;
                        if (debug_arg == DEBUG_STDERR)
                                foreground_mode = 1;
                        break;
index a8d3554729e129752b1d8c31a2abf4537a1f9e27..654e1158cdd2c6176a6d750df20b9ea35c10e647 100644 (file)
@@ -203,7 +203,7 @@ static int _read_params(struct lvconvert_params *lp, struct cmd_context *cmd,
                lp->mirrors_sign = arg_sign_value(cmd, mirrors_ARG, SIGN_NONE);
        }
 
-       lp->alloc = arg_uint_value(cmd, alloc_ARG, ALLOC_INHERIT);
+       lp->alloc = (alloc_policy_t) arg_uint_value(cmd, alloc_ARG, ALLOC_INHERIT);
 
        /* There are three types of lvconvert. */
        if (lp->merge) {        /* Snapshot merge */
@@ -1236,7 +1236,7 @@ int mirror_remove_missing(struct cmd_context *cmd,
 
         if (force && _failed_mirrors_count(lv) == lv_mirror_count(lv)) {
                log_error("No usable images left in %s.", lv->name);
-               return lv_remove_with_dependencies(cmd, lv, 1, 0);
+               return lv_remove_with_dependencies(cmd, lv, DONT_PROMPT, 0);
         }
 
        /*
index f49512e9a927f3c634d1a1d19b3fbaa84bd15af5..bb4a810f81b2cb5e201f4f4179c4dfb67f407afb 100644 (file)
@@ -1245,7 +1245,7 @@ int vgcreate_params_set_from_args(struct cmd_context *cmd,
                                        vp_def->max_lv);
        vp_new->max_pv = arg_uint_value(cmd, maxphysicalvolumes_ARG,
                                        vp_def->max_pv);
-       vp_new->alloc = arg_uint_value(cmd, alloc_ARG, vp_def->alloc);
+       vp_new->alloc = (alloc_policy_t) arg_uint_value(cmd, alloc_ARG, vp_def->alloc);
 
        /* Units of 512-byte sectors */
        vp_new->extent_size =
@@ -1389,7 +1389,7 @@ int pvcreate_params_validate(struct cmd_context *cmd,
        }
 
        pp->yes = arg_count(cmd, yes_ARG);
-       pp->force = arg_count(cmd, force_ARG);
+       pp->force = (force_t) arg_count(cmd, force_ARG);
 
        if (arg_int_value(cmd, labelsector_ARG, 0) >= LABEL_SCAN_SECTORS) {
                log_error("labelsector must be less than %lu",
This page took 0.039058 seconds and 5 git commands to generate.