mirror of https://github.com/xqemu/xqemu.git
Remove the deprecated -tdf option
It's been marked as deprecated since a very long time already, and the parameter is not doing anything useful anymore except for printing a warning, so it's now time to finally get rid of this option. Signed-off-by: Thomas Huth <thuth@redhat.com> Message-Id: <1519071820-4062-1-git-send-email-thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
723250d674
commit
d07aa197c5
|
@ -2606,13 +2606,6 @@ which is the default.
|
||||||
|
|
||||||
@section System emulator command line arguments
|
@section System emulator command line arguments
|
||||||
|
|
||||||
@subsection -tdf (since 1.3.0)
|
|
||||||
|
|
||||||
The ``-tdf'' argument is ignored. The behaviour implemented
|
|
||||||
by this argument is now the default when using the KVM PIT,
|
|
||||||
but can be requested explicitly using
|
|
||||||
``-global kvm-pit.lost_tick_policy=slew''.
|
|
||||||
|
|
||||||
@subsection -no-kvm-pit-reinjection (since 1.3.0)
|
@subsection -no-kvm-pit-reinjection (since 1.3.0)
|
||||||
|
|
||||||
The ``-no-kvm-pit-reinjection'' argument is now a
|
The ``-no-kvm-pit-reinjection'' argument is now a
|
||||||
|
|
3
vl.c
3
vl.c
|
@ -3842,9 +3842,6 @@ int main(int argc, char **argv, char **envp)
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case QEMU_OPTION_tdf:
|
|
||||||
warn_report("ignoring deprecated option");
|
|
||||||
break;
|
|
||||||
case QEMU_OPTION_name:
|
case QEMU_OPTION_name:
|
||||||
opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
|
opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
|
||||||
optarg, true);
|
optarg, true);
|
||||||
|
|
Loading…
Reference in New Issue