* [Qemu-devel] [PATCH] Remove deprecated -balloon option
@ 2018-08-21 10:05 Thomas Huth
2018-08-21 10:08 ` [Qemu-devel] [libvirt] " Daniel P. Berrangé
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Thomas Huth @ 2018-08-21 10:05 UTC (permalink / raw)
To: Michael S. Tsirkin, Paolo Bonzini, qemu-devel
Cc: libvir-list, Markus Armbruster
The "-balloon" option has been replaced by "-device virtio-balloon".
It's been marked as deprecated since two releases, and nobody
complained, so let's remove it now.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
docs/virtio-balloon-stats.txt | 6 +++---
qemu-deprecated.texi | 5 -----
qemu-options.hx | 10 ----------
vl.c | 36 ------------------------------------
4 files changed, 3 insertions(+), 54 deletions(-)
diff --git a/docs/virtio-balloon-stats.txt b/docs/virtio-balloon-stats.txt
index 9985e1d..1732cc8 100644
--- a/docs/virtio-balloon-stats.txt
+++ b/docs/virtio-balloon-stats.txt
@@ -61,9 +61,9 @@ It's also important to note the following:
respond to the request the timer will never be re-armed, which has
the same effect as disabling polling
-Here are a few examples. QEMU is started with '-balloon virtio', which
-generates '/machine/peripheral-anon/device[1]' as the QOM path for the
-balloon device.
+Here are a few examples. QEMU is started with '-device virtio-balloon',
+which generates '/machine/peripheral-anon/device[1]' as the QOM path for
+the balloon device.
Enable polling with 2 seconds interval:
diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi
index 67b7211..0714017 100644
--- a/qemu-deprecated.texi
+++ b/qemu-deprecated.texi
@@ -106,11 +106,6 @@ enabled via the ``-machine usb=on'' argument.
The ``-nodefconfig`` argument is a synonym for ``-no-user-config``.
-@subsection -balloon (since 2.12.0)
-
-The @option{--balloon virtio} argument has been superseded by
-@option{--device virtio-balloon}.
-
@subsection -fsdev handle (since 2.12.0)
The ``handle'' fsdev backend does not support symlinks and causes the 9p
diff --git a/qemu-options.hx b/qemu-options.hx
index 4efdedf..47c6b92 100644
--- a/qemu-options.hx
+++ b/qemu-options.hx
@@ -454,16 +454,6 @@ modprobe i810_audio clocking=48000
@end example
ETEXI
-DEF("balloon", HAS_ARG, QEMU_OPTION_balloon,
- "-balloon virtio[,addr=str]\n"
- " enable virtio balloon device (deprecated)\n", QEMU_ARCH_ALL)
-STEXI
-@item -balloon virtio[,addr=@var{addr}]
-@findex -balloon
-Enable virtio balloon device, optionally with PCI address @var{addr}. This
-option is deprecated, use @option{-device virtio-balloon} instead.
-ETEXI
-
DEF("device", HAS_ARG, QEMU_OPTION_device,
"-device driver[,prop[=value][,...]]\n"
" add device (based on driver)\n"
diff --git a/vl.c b/vl.c
index 16b913f..f952f01 100644
--- a/vl.c
+++ b/vl.c
@@ -2127,36 +2127,6 @@ static void parse_display(const char *p)
}
}
-static int balloon_parse(const char *arg)
-{
- QemuOpts *opts;
-
- warn_report("This option is deprecated. "
- "Use '--device virtio-balloon' to enable the balloon device.");
-
- if (strcmp(arg, "none") == 0) {
- return 0;
- }
-
- if (!strncmp(arg, "virtio", 6)) {
- if (arg[6] == ',') {
- /* have params -> parse them */
- opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
- false);
- if (!opts)
- return -1;
- } else {
- /* create empty opts */
- opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
- &error_abort);
- }
- qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
- return 0;
- }
-
- return -1;
-}
-
char *qemu_find_file(int type, const char *name)
{
int i;
@@ -3659,12 +3629,6 @@ int main(int argc, char **argv, char **envp)
case QEMU_OPTION_no_hpet:
no_hpet = 1;
break;
- case QEMU_OPTION_balloon:
- if (balloon_parse(optarg) < 0) {
- error_report("unknown -balloon argument %s", optarg);
- exit(1);
- }
- break;
case QEMU_OPTION_no_reboot:
no_reboot = 1;
break;
--
1.8.3.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [libvirt] [PATCH] Remove deprecated -balloon option
2018-08-21 10:05 [Qemu-devel] [PATCH] Remove deprecated -balloon option Thomas Huth
@ 2018-08-21 10:08 ` Daniel P. Berrangé
2018-08-21 10:13 ` [Qemu-devel] " Paolo Bonzini
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Daniel P. Berrangé @ 2018-08-21 10:08 UTC (permalink / raw)
To: Thomas Huth; +Cc: Michael S. Tsirkin, Paolo Bonzini, qemu-devel, libvir-list
On Tue, Aug 21, 2018 at 12:05:30PM +0200, Thomas Huth wrote:
> The "-balloon" option has been replaced by "-device virtio-balloon".
> It's been marked as deprecated since two releases, and nobody
> complained, so let's remove it now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> docs/virtio-balloon-stats.txt | 6 +++---
> qemu-deprecated.texi | 5 -----
> qemu-options.hx | 10 ----------
> vl.c | 36 ------------------------------------
> 4 files changed, 3 insertions(+), 54 deletions(-)
Confirmed that this is no longer used by libvirt, as we assume we have
new enough QEMU for -device
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
>
> diff --git a/docs/virtio-balloon-stats.txt b/docs/virtio-balloon-stats.txt
> index 9985e1d..1732cc8 100644
> --- a/docs/virtio-balloon-stats.txt
> +++ b/docs/virtio-balloon-stats.txt
> @@ -61,9 +61,9 @@ It's also important to note the following:
> respond to the request the timer will never be re-armed, which has
> the same effect as disabling polling
>
> -Here are a few examples. QEMU is started with '-balloon virtio', which
> -generates '/machine/peripheral-anon/device[1]' as the QOM path for the
> -balloon device.
> +Here are a few examples. QEMU is started with '-device virtio-balloon',
> +which generates '/machine/peripheral-anon/device[1]' as the QOM path for
> +the balloon device.
We should try to get in the habit of changing the docs at the time we
deprecate stuff. I keep forgetting todo this myself too :-)
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] 6+ messages in thread
* Re: [Qemu-devel] [PATCH] Remove deprecated -balloon option
2018-08-21 10:05 [Qemu-devel] [PATCH] Remove deprecated -balloon option Thomas Huth
2018-08-21 10:08 ` [Qemu-devel] [libvirt] " Daniel P. Berrangé
@ 2018-08-21 10:13 ` Paolo Bonzini
2018-08-21 10:17 ` Cornelia Huck
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Paolo Bonzini @ 2018-08-21 10:13 UTC (permalink / raw)
To: Thomas Huth, Michael S. Tsirkin, qemu-devel
Cc: libvir-list, Markus Armbruster
On 21/08/2018 12:05, Thomas Huth wrote:
> The "-balloon" option has been replaced by "-device virtio-balloon".
> It's been marked as deprecated since two releases, and nobody
> complained, so let's remove it now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> docs/virtio-balloon-stats.txt | 6 +++---
> qemu-deprecated.texi | 5 -----
> qemu-options.hx | 10 ----------
> vl.c | 36 ------------------------------------
> 4 files changed, 3 insertions(+), 54 deletions(-)
>
> diff --git a/docs/virtio-balloon-stats.txt b/docs/virtio-balloon-stats.txt
> index 9985e1d..1732cc8 100644
> --- a/docs/virtio-balloon-stats.txt
> +++ b/docs/virtio-balloon-stats.txt
> @@ -61,9 +61,9 @@ It's also important to note the following:
> respond to the request the timer will never be re-armed, which has
> the same effect as disabling polling
>
> -Here are a few examples. QEMU is started with '-balloon virtio', which
> -generates '/machine/peripheral-anon/device[1]' as the QOM path for the
> -balloon device.
> +Here are a few examples. QEMU is started with '-device virtio-balloon',
> +which generates '/machine/peripheral-anon/device[1]' as the QOM path for
> +the balloon device.
>
> Enable polling with 2 seconds interval:
>
> diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi
> index 67b7211..0714017 100644
> --- a/qemu-deprecated.texi
> +++ b/qemu-deprecated.texi
> @@ -106,11 +106,6 @@ enabled via the ``-machine usb=on'' argument.
>
> The ``-nodefconfig`` argument is a synonym for ``-no-user-config``.
>
> -@subsection -balloon (since 2.12.0)
> -
> -The @option{--balloon virtio} argument has been superseded by
> -@option{--device virtio-balloon}.
> -
> @subsection -fsdev handle (since 2.12.0)
>
> The ``handle'' fsdev backend does not support symlinks and causes the 9p
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 4efdedf..47c6b92 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -454,16 +454,6 @@ modprobe i810_audio clocking=48000
> @end example
> ETEXI
>
> -DEF("balloon", HAS_ARG, QEMU_OPTION_balloon,
> - "-balloon virtio[,addr=str]\n"
> - " enable virtio balloon device (deprecated)\n", QEMU_ARCH_ALL)
> -STEXI
> -@item -balloon virtio[,addr=@var{addr}]
> -@findex -balloon
> -Enable virtio balloon device, optionally with PCI address @var{addr}. This
> -option is deprecated, use @option{-device virtio-balloon} instead.
> -ETEXI
> -
> DEF("device", HAS_ARG, QEMU_OPTION_device,
> "-device driver[,prop[=value][,...]]\n"
> " add device (based on driver)\n"
> diff --git a/vl.c b/vl.c
> index 16b913f..f952f01 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -2127,36 +2127,6 @@ static void parse_display(const char *p)
> }
> }
>
> -static int balloon_parse(const char *arg)
> -{
> - QemuOpts *opts;
> -
> - warn_report("This option is deprecated. "
> - "Use '--device virtio-balloon' to enable the balloon device.");
> -
> - if (strcmp(arg, "none") == 0) {
> - return 0;
> - }
> -
> - if (!strncmp(arg, "virtio", 6)) {
> - if (arg[6] == ',') {
> - /* have params -> parse them */
> - opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
> - false);
> - if (!opts)
> - return -1;
> - } else {
> - /* create empty opts */
> - opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
> - &error_abort);
> - }
> - qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
> - return 0;
> - }
> -
> - return -1;
> -}
> -
> char *qemu_find_file(int type, const char *name)
> {
> int i;
> @@ -3659,12 +3629,6 @@ int main(int argc, char **argv, char **envp)
> case QEMU_OPTION_no_hpet:
> no_hpet = 1;
> break;
> - case QEMU_OPTION_balloon:
> - if (balloon_parse(optarg) < 0) {
> - error_report("unknown -balloon argument %s", optarg);
> - exit(1);
> - }
> - break;
> case QEMU_OPTION_no_reboot:
> no_reboot = 1;
> break;
>
Acked-by: Paolo Bonzini <pbonzini@redhat.com>
Please send a pull request yourself with all deprecation removals.
Paolo
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH] Remove deprecated -balloon option
2018-08-21 10:05 [Qemu-devel] [PATCH] Remove deprecated -balloon option Thomas Huth
2018-08-21 10:08 ` [Qemu-devel] [libvirt] " Daniel P. Berrangé
2018-08-21 10:13 ` [Qemu-devel] " Paolo Bonzini
@ 2018-08-21 10:17 ` Cornelia Huck
2018-08-21 10:21 ` Michael S. Tsirkin
2018-08-22 8:48 ` David Hildenbrand
4 siblings, 0 replies; 6+ messages in thread
From: Cornelia Huck @ 2018-08-21 10:17 UTC (permalink / raw)
To: Thomas Huth
Cc: Michael S. Tsirkin, Paolo Bonzini, qemu-devel, libvir-list,
Markus Armbruster
On Tue, 21 Aug 2018 12:05:30 +0200
Thomas Huth <thuth@redhat.com> wrote:
> The "-balloon" option has been replaced by "-device virtio-balloon".
> It's been marked as deprecated since two releases, and nobody
> complained, so let's remove it now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> docs/virtio-balloon-stats.txt | 6 +++---
> qemu-deprecated.texi | 5 -----
> qemu-options.hx | 10 ----------
> vl.c | 36 ------------------------------------
> 4 files changed, 3 insertions(+), 54 deletions(-)
Reviewed-by: Cornelia Huck <cohuck@redhat.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH] Remove deprecated -balloon option
2018-08-21 10:05 [Qemu-devel] [PATCH] Remove deprecated -balloon option Thomas Huth
` (2 preceding siblings ...)
2018-08-21 10:17 ` Cornelia Huck
@ 2018-08-21 10:21 ` Michael S. Tsirkin
2018-08-22 8:48 ` David Hildenbrand
4 siblings, 0 replies; 6+ messages in thread
From: Michael S. Tsirkin @ 2018-08-21 10:21 UTC (permalink / raw)
To: Thomas Huth; +Cc: Paolo Bonzini, qemu-devel, libvir-list, Markus Armbruster
On Tue, Aug 21, 2018 at 12:05:30PM +0200, Thomas Huth wrote:
> The "-balloon" option has been replaced by "-device virtio-balloon".
> It's been marked as deprecated since two releases, and nobody
> complained, so let's remove it now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
> ---
> docs/virtio-balloon-stats.txt | 6 +++---
> qemu-deprecated.texi | 5 -----
> qemu-options.hx | 10 ----------
> vl.c | 36 ------------------------------------
> 4 files changed, 3 insertions(+), 54 deletions(-)
>
> diff --git a/docs/virtio-balloon-stats.txt b/docs/virtio-balloon-stats.txt
> index 9985e1d..1732cc8 100644
> --- a/docs/virtio-balloon-stats.txt
> +++ b/docs/virtio-balloon-stats.txt
> @@ -61,9 +61,9 @@ It's also important to note the following:
> respond to the request the timer will never be re-armed, which has
> the same effect as disabling polling
>
> -Here are a few examples. QEMU is started with '-balloon virtio', which
> -generates '/machine/peripheral-anon/device[1]' as the QOM path for the
> -balloon device.
> +Here are a few examples. QEMU is started with '-device virtio-balloon',
> +which generates '/machine/peripheral-anon/device[1]' as the QOM path for
> +the balloon device.
>
> Enable polling with 2 seconds interval:
>
> diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi
> index 67b7211..0714017 100644
> --- a/qemu-deprecated.texi
> +++ b/qemu-deprecated.texi
> @@ -106,11 +106,6 @@ enabled via the ``-machine usb=on'' argument.
>
> The ``-nodefconfig`` argument is a synonym for ``-no-user-config``.
>
> -@subsection -balloon (since 2.12.0)
> -
> -The @option{--balloon virtio} argument has been superseded by
> -@option{--device virtio-balloon}.
> -
> @subsection -fsdev handle (since 2.12.0)
>
> The ``handle'' fsdev backend does not support symlinks and causes the 9p
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 4efdedf..47c6b92 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -454,16 +454,6 @@ modprobe i810_audio clocking=48000
> @end example
> ETEXI
>
> -DEF("balloon", HAS_ARG, QEMU_OPTION_balloon,
> - "-balloon virtio[,addr=str]\n"
> - " enable virtio balloon device (deprecated)\n", QEMU_ARCH_ALL)
> -STEXI
> -@item -balloon virtio[,addr=@var{addr}]
> -@findex -balloon
> -Enable virtio balloon device, optionally with PCI address @var{addr}. This
> -option is deprecated, use @option{-device virtio-balloon} instead.
> -ETEXI
> -
> DEF("device", HAS_ARG, QEMU_OPTION_device,
> "-device driver[,prop[=value][,...]]\n"
> " add device (based on driver)\n"
> diff --git a/vl.c b/vl.c
> index 16b913f..f952f01 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -2127,36 +2127,6 @@ static void parse_display(const char *p)
> }
> }
>
> -static int balloon_parse(const char *arg)
> -{
> - QemuOpts *opts;
> -
> - warn_report("This option is deprecated. "
> - "Use '--device virtio-balloon' to enable the balloon device.");
> -
> - if (strcmp(arg, "none") == 0) {
> - return 0;
> - }
> -
> - if (!strncmp(arg, "virtio", 6)) {
> - if (arg[6] == ',') {
> - /* have params -> parse them */
> - opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
> - false);
> - if (!opts)
> - return -1;
> - } else {
> - /* create empty opts */
> - opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
> - &error_abort);
> - }
> - qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
> - return 0;
> - }
> -
> - return -1;
> -}
> -
> char *qemu_find_file(int type, const char *name)
> {
> int i;
> @@ -3659,12 +3629,6 @@ int main(int argc, char **argv, char **envp)
> case QEMU_OPTION_no_hpet:
> no_hpet = 1;
> break;
> - case QEMU_OPTION_balloon:
> - if (balloon_parse(optarg) < 0) {
> - error_report("unknown -balloon argument %s", optarg);
> - exit(1);
> - }
> - break;
> case QEMU_OPTION_no_reboot:
> no_reboot = 1;
> break;
> --
> 1.8.3.1
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [PATCH] Remove deprecated -balloon option
2018-08-21 10:05 [Qemu-devel] [PATCH] Remove deprecated -balloon option Thomas Huth
` (3 preceding siblings ...)
2018-08-21 10:21 ` Michael S. Tsirkin
@ 2018-08-22 8:48 ` David Hildenbrand
4 siblings, 0 replies; 6+ messages in thread
From: David Hildenbrand @ 2018-08-22 8:48 UTC (permalink / raw)
To: Thomas Huth, Michael S. Tsirkin, Paolo Bonzini, qemu-devel
Cc: libvir-list, Markus Armbruster
On 21.08.2018 12:05, Thomas Huth wrote:
> The "-balloon" option has been replaced by "-device virtio-balloon".
> It's been marked as deprecated since two releases, and nobody
> complained, so let's remove it now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> docs/virtio-balloon-stats.txt | 6 +++---
> qemu-deprecated.texi | 5 -----
> qemu-options.hx | 10 ----------
> vl.c | 36 ------------------------------------
> 4 files changed, 3 insertions(+), 54 deletions(-)
>
> diff --git a/docs/virtio-balloon-stats.txt b/docs/virtio-balloon-stats.txt
> index 9985e1d..1732cc8 100644
> --- a/docs/virtio-balloon-stats.txt
> +++ b/docs/virtio-balloon-stats.txt
> @@ -61,9 +61,9 @@ It's also important to note the following:
> respond to the request the timer will never be re-armed, which has
> the same effect as disabling polling
>
> -Here are a few examples. QEMU is started with '-balloon virtio', which
> -generates '/machine/peripheral-anon/device[1]' as the QOM path for the
> -balloon device.
> +Here are a few examples. QEMU is started with '-device virtio-balloon',
> +which generates '/machine/peripheral-anon/device[1]' as the QOM path for
> +the balloon device.
>
> Enable polling with 2 seconds interval:
>
> diff --git a/qemu-deprecated.texi b/qemu-deprecated.texi
> index 67b7211..0714017 100644
> --- a/qemu-deprecated.texi
> +++ b/qemu-deprecated.texi
> @@ -106,11 +106,6 @@ enabled via the ``-machine usb=on'' argument.
>
> The ``-nodefconfig`` argument is a synonym for ``-no-user-config``.
>
> -@subsection -balloon (since 2.12.0)
> -
> -The @option{--balloon virtio} argument has been superseded by
> -@option{--device virtio-balloon}.
> -
> @subsection -fsdev handle (since 2.12.0)
>
> The ``handle'' fsdev backend does not support symlinks and causes the 9p
> diff --git a/qemu-options.hx b/qemu-options.hx
> index 4efdedf..47c6b92 100644
> --- a/qemu-options.hx
> +++ b/qemu-options.hx
> @@ -454,16 +454,6 @@ modprobe i810_audio clocking=48000
> @end example
> ETEXI
>
> -DEF("balloon", HAS_ARG, QEMU_OPTION_balloon,
> - "-balloon virtio[,addr=str]\n"
> - " enable virtio balloon device (deprecated)\n", QEMU_ARCH_ALL)
> -STEXI
> -@item -balloon virtio[,addr=@var{addr}]
> -@findex -balloon
> -Enable virtio balloon device, optionally with PCI address @var{addr}. This
> -option is deprecated, use @option{-device virtio-balloon} instead.
> -ETEXI
> -
> DEF("device", HAS_ARG, QEMU_OPTION_device,
> "-device driver[,prop[=value][,...]]\n"
> " add device (based on driver)\n"
> diff --git a/vl.c b/vl.c
> index 16b913f..f952f01 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -2127,36 +2127,6 @@ static void parse_display(const char *p)
> }
> }
>
> -static int balloon_parse(const char *arg)
> -{
> - QemuOpts *opts;
> -
> - warn_report("This option is deprecated. "
> - "Use '--device virtio-balloon' to enable the balloon device.");
> -
> - if (strcmp(arg, "none") == 0) {
> - return 0;
> - }
> -
> - if (!strncmp(arg, "virtio", 6)) {
> - if (arg[6] == ',') {
> - /* have params -> parse them */
> - opts = qemu_opts_parse_noisily(qemu_find_opts("device"), arg + 7,
> - false);
> - if (!opts)
> - return -1;
> - } else {
> - /* create empty opts */
> - opts = qemu_opts_create(qemu_find_opts("device"), NULL, 0,
> - &error_abort);
> - }
> - qemu_opt_set(opts, "driver", "virtio-balloon", &error_abort);
> - return 0;
> - }
> -
> - return -1;
> -}
> -
> char *qemu_find_file(int type, const char *name)
> {
> int i;
> @@ -3659,12 +3629,6 @@ int main(int argc, char **argv, char **envp)
> case QEMU_OPTION_no_hpet:
> no_hpet = 1;
> break;
> - case QEMU_OPTION_balloon:
> - if (balloon_parse(optarg) < 0) {
> - error_report("unknown -balloon argument %s", optarg);
> - exit(1);
> - }
> - break;
> case QEMU_OPTION_no_reboot:
> no_reboot = 1;
> break;
>
Nice to see this go.
Reviewed-by: David Hildenbrand <david@redhat.com>
--
Thanks,
David / dhildenb
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2018-08-22 8:48 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-21 10:05 [Qemu-devel] [PATCH] Remove deprecated -balloon option Thomas Huth
2018-08-21 10:08 ` [Qemu-devel] [libvirt] " Daniel P. Berrangé
2018-08-21 10:13 ` [Qemu-devel] " Paolo Bonzini
2018-08-21 10:17 ` Cornelia Huck
2018-08-21 10:21 ` Michael S. Tsirkin
2018-08-22 8:48 ` David Hildenbrand
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.