* [Qemu-devel] [PATCH] Remove the deprecated -tdf option
@ 2018-02-19 20:23 Thomas Huth
2018-02-20 9:19 ` Daniel P. Berrangé
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Thomas Huth @ 2018-02-19 20:23 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, Paolo Bonzini, Daniel Berrange
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>
---
qemu-doc.texi | 7 -------
vl.c | 3 ---
2 files changed, 10 deletions(-)
diff --git a/qemu-doc.texi b/qemu-doc.texi
index 56388b5..eac8e8b 100644
--- a/qemu-doc.texi
+++ b/qemu-doc.texi
@@ -2606,13 +2606,6 @@ which is the default.
@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)
The ``-no-kvm-pit-reinjection'' argument is now a
diff --git a/vl.c b/vl.c
index 81724f5..3956e53 100644
--- a/vl.c
+++ b/vl.c
@@ -3849,9 +3849,6 @@ int main(int argc, char **argv, char **envp)
exit(1);
}
break;
- case QEMU_OPTION_tdf:
- warn_report("ignoring deprecated option");
- break;
case QEMU_OPTION_name:
opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
optarg, true);
--
1.8.3.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] Remove the deprecated -tdf option
2018-02-19 20:23 [Qemu-devel] [PATCH] Remove the deprecated -tdf option Thomas Huth
@ 2018-02-20 9:19 ` Daniel P. Berrangé
2018-02-20 9:37 ` Kashyap Chamarthy
2018-02-20 10:05 ` Paolo Bonzini
2 siblings, 0 replies; 4+ messages in thread
From: Daniel P. Berrangé @ 2018-02-20 9:19 UTC (permalink / raw)
To: Thomas Huth; +Cc: qemu-devel, qemu-trivial, Paolo Bonzini
On Mon, Feb 19, 2018 at 09:23:40PM +0100, Thomas Huth wrote:
> 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>
> ---
> qemu-doc.texi | 7 -------
> vl.c | 3 ---
> 2 files changed, 10 deletions(-)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] Remove the deprecated -tdf option
2018-02-19 20:23 [Qemu-devel] [PATCH] Remove the deprecated -tdf option Thomas Huth
2018-02-20 9:19 ` Daniel P. Berrangé
@ 2018-02-20 9:37 ` Kashyap Chamarthy
2018-02-20 10:05 ` Paolo Bonzini
2 siblings, 0 replies; 4+ messages in thread
From: Kashyap Chamarthy @ 2018-02-20 9:37 UTC (permalink / raw)
To: Thomas Huth; +Cc: qemu-devel, qemu-trivial, Paolo Bonzini
On Mon, Feb 19, 2018 at 09:23:40PM +0100, Thomas Huth wrote:
> 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>
> ---
> qemu-doc.texi | 7 -------
> vl.c | 3 ---
> 2 files changed, 10 deletions(-)
Nice catch.
Reviewed-by: Kashyap Chamarthy <kchamart@redhat.com>
[...]
--
/kashyap
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] [PATCH] Remove the deprecated -tdf option
2018-02-19 20:23 [Qemu-devel] [PATCH] Remove the deprecated -tdf option Thomas Huth
2018-02-20 9:19 ` Daniel P. Berrangé
2018-02-20 9:37 ` Kashyap Chamarthy
@ 2018-02-20 10:05 ` Paolo Bonzini
2 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2018-02-20 10:05 UTC (permalink / raw)
To: Thomas Huth, qemu-devel; +Cc: qemu-trivial, Daniel Berrange
On 19/02/2018 21:23, Thomas Huth wrote:
> 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>
> ---
> qemu-doc.texi | 7 -------
> vl.c | 3 ---
> 2 files changed, 10 deletions(-)
>
> diff --git a/qemu-doc.texi b/qemu-doc.texi
> index 56388b5..eac8e8b 100644
> --- a/qemu-doc.texi
> +++ b/qemu-doc.texi
> @@ -2606,13 +2606,6 @@ which is the default.
>
> @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)
>
> The ``-no-kvm-pit-reinjection'' argument is now a
> diff --git a/vl.c b/vl.c
> index 81724f5..3956e53 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -3849,9 +3849,6 @@ int main(int argc, char **argv, char **envp)
> exit(1);
> }
> break;
> - case QEMU_OPTION_tdf:
> - warn_report("ignoring deprecated option");
> - break;
> case QEMU_OPTION_name:
> opts = qemu_opts_parse_noisily(qemu_find_opts("name"),
> optarg, true);
>
Good one! Queued, thanks.
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-02-20 10:06 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-19 20:23 [Qemu-devel] [PATCH] Remove the deprecated -tdf option Thomas Huth
2018-02-20 9:19 ` Daniel P. Berrangé
2018-02-20 9:37 ` Kashyap Chamarthy
2018-02-20 10:05 ` Paolo Bonzini
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).