]> sourceware.org Git - lvm2.git/commitdiff
remove unused backgroundfork option
authorDavid Teigland <teigland@redhat.com>
Wed, 14 Nov 2018 15:34:49 +0000 (09:34 -0600)
committerDavid Teigland <teigland@redhat.com>
Wed, 14 Nov 2018 15:34:49 +0000 (09:34 -0600)
tools/args.h
tools/lvmcmdline.c

index 3e737f88b2ff3c6362340776a6fc2bdae6d18252..1ceba990e371f72ddbe4684d7d806a62e6916221 100644 (file)
@@ -932,16 +932,11 @@ arg(activevolumegroups_ARG, 'A', "activevolumegroups", 0, 0, 0,
     "Only select active VGs. The VG is considered active\n"
     "if at least one of its LVs is active.\n")
 
-/* FIXME: remove background option from pvscan, it's not used */
-
 arg(background_ARG, 'b', "background", 0, 0, 0,
     "If the operation requires polling, this option causes the command to\n"
     "return before the operation is complete, and polling is done in the\n"
     "background.\n")
 
-/* Not used */
-arg(backgroundfork_ARG, 'b', "background", 0, 0, 0, NULL)
-
 arg(basevgname_ARG, 'n', "basevgname", string_VAL, 0, 0,
     "By default the snapshot VG will be renamed to the original name plus a\n"
     "numeric suffix to avoid duplicate naming (e.g. 'test_vg' would be renamed\n"
index f49843df413736dcf2fbe0a8d93a90104065e10b..9c0476e713835bdcabce752312e8213dee112dc9 100644 (file)
@@ -2825,14 +2825,6 @@ int lvm_run_command(struct cmd_context *cmd, int argc, char **argv)
 
        set_cmd_name(cmd->name);
 
-       if (arg_is_set(cmd, backgroundfork_ARG)) {
-               if (!become_daemon(cmd, 1)) {
-                       /* parent - quit immediately */
-                       ret = ECMD_PROCESSED;
-                       goto out;
-               }
-       }
-
        if (arg_is_set(cmd, config_ARG))
                if (!override_config_tree_from_string(cmd, arg_str_value(cmd, config_ARG, ""))) {
                        ret = EINVALID_CMD_LINE;
This page took 0.037147 seconds and 5 git commands to generate.