qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [qemu-kvm RHEL7 PATCH] Add support statement to -help output
@ 2013-12-04 18:42 Eduardo Habkost
  2013-12-04 18:51 ` Eric Blake
  2013-12-18 10:39 ` Paolo Bonzini
  0 siblings, 2 replies; 4+ messages in thread
From: Eduardo Habkost @ 2013-12-04 18:42 UTC (permalink / raw)
  To: qemu-devel; +Cc: Amit Shah, Miroslav Rezanina, Markus Armbruster

Bugzilla: 972773
Brew scratch build: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=6676272

Add support statement to -help output, reporting direct qemu-kvm usage
as unsupported by Red Hat, and advising users to use libvirt instead.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
 vl.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/vl.c b/vl.c
index 9b1738b..fdc8c65 100644
--- a/vl.c
+++ b/vl.c
@@ -1995,9 +1995,17 @@ static void version(void)
     printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
 }
 
+static void print_rh_warning(void)
+{
+    printf("\nWARNING: Direct use of qemu-kvm from the command line is not supported by Red Hat.\n"
+             "WARNING: Use libvirt as the stable management interface.\n"
+             "WARNING: Some command line options listed here may not be available in future releases.\n\n");
+}
+
 static void help(int exitcode)
 {
     version();
+    print_rh_warning();
     printf("usage: %s [options] [disk_image]\n\n"
            "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
             error_get_progname());
@@ -2012,6 +2020,7 @@ static void help(int exitcode)
            "\n"
            "When using -nographic, press 'ctrl-a h' to get some help.\n");
 
+    print_rh_warning();
     exit(exitcode);
 }
 
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [qemu-kvm RHEL7 PATCH] Add support statement to -help output
  2013-12-04 18:42 [Qemu-devel] [qemu-kvm RHEL7 PATCH] Add support statement to -help output Eduardo Habkost
@ 2013-12-04 18:51 ` Eric Blake
  2013-12-04 18:53   ` Eduardo Habkost
  2013-12-18 10:39 ` Paolo Bonzini
  1 sibling, 1 reply; 4+ messages in thread
From: Eric Blake @ 2013-12-04 18:51 UTC (permalink / raw)
  To: Eduardo Habkost, qemu-devel
  Cc: Amit Shah, Miroslav Rezanina, Markus Armbruster

[-- Attachment #1: Type: text/plain, Size: 525 bytes --]

On 12/04/2013 11:42 AM, Eduardo Habkost wrote:
> Bugzilla: 972773
> 
> Add support statement to -help output, reporting direct qemu-kvm usage
> as unsupported by Red Hat, and advising users to use libvirt instead.
> 
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
>  vl.c | 9 +++++++++
>  1 file changed, 9 insertions(+)

Wrong list; this patch is too specific to Red Hat to go upstream.

-- 
Eric Blake   eblake redhat com    +1-919-301-3266
Libvirt virtualization library http://libvirt.org


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 621 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [qemu-kvm RHEL7 PATCH] Add support statement to -help output
  2013-12-04 18:51 ` Eric Blake
@ 2013-12-04 18:53   ` Eduardo Habkost
  0 siblings, 0 replies; 4+ messages in thread
From: Eduardo Habkost @ 2013-12-04 18:53 UTC (permalink / raw)
  To: Eric Blake; +Cc: Amit Shah, Miroslav Rezanina, qemu-devel, Markus Armbruster

On Wed, Dec 04, 2013 at 11:51:17AM -0700, Eric Blake wrote:
> On 12/04/2013 11:42 AM, Eduardo Habkost wrote:
> > Bugzilla: 972773
> > 
> > Add support statement to -help output, reporting direct qemu-kvm usage
> > as unsupported by Red Hat, and advising users to use libvirt instead.
> > 
> > Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> > ---
> >  vl.c | 9 +++++++++
> >  1 file changed, 9 insertions(+)
> 
> Wrong list; this patch is too specific to Red Hat to go upstream.

Oops! Sorry! Used the wrong command alias when sending the message. :(

-- 
Eduardo

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [Qemu-devel] [qemu-kvm RHEL7 PATCH] Add support statement to -help output
  2013-12-04 18:42 [Qemu-devel] [qemu-kvm RHEL7 PATCH] Add support statement to -help output Eduardo Habkost
  2013-12-04 18:51 ` Eric Blake
@ 2013-12-18 10:39 ` Paolo Bonzini
  1 sibling, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2013-12-18 10:39 UTC (permalink / raw)
  To: Eduardo Habkost
  Cc: Amit Shah, Miroslav Rezanina, qemu-devel, Markus Armbruster

Il 04/12/2013 19:42, Eduardo Habkost ha scritto:
> Bugzilla: 972773
> Brew scratch build: http://brewweb.devel.redhat.com/brew/taskinfo?taskID=6676272
> 
> Add support statement to -help output, reporting direct qemu-kvm usage
> as unsupported by Red Hat, and advising users to use libvirt instead.
> 
> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
> ---
>  vl.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/vl.c b/vl.c
> index 9b1738b..fdc8c65 100644
> --- a/vl.c
> +++ b/vl.c
> @@ -1995,9 +1995,17 @@ static void version(void)
>      printf("QEMU emulator version " QEMU_VERSION QEMU_PKGVERSION ", Copyright (c) 2003-2008 Fabrice Bellard\n");
>  }
>  
> +static void print_rh_warning(void)
> +{
> +    printf("\nWARNING: Direct use of qemu-kvm from the command line is not supported by Red Hat.\n"
> +             "WARNING: Use libvirt as the stable management interface.\n"
> +             "WARNING: Some command line options listed here may not be available in future releases.\n\n");
> +}
> +
>  static void help(int exitcode)
>  {
>      version();
> +    print_rh_warning();
>      printf("usage: %s [options] [disk_image]\n\n"
>             "'disk_image' is a raw hard disk image for IDE hard disk 0\n\n",
>              error_get_progname());
> @@ -2012,6 +2020,7 @@ static void help(int exitcode)
>             "\n"
>             "When using -nographic, press 'ctrl-a h' to get some help.\n");
>  
> +    print_rh_warning();
>      exit(exitcode);
>  }
>  
> 

Wow, no whitelist anymore?!?!?

ACK

Paolo

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-12-18 10:40 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-04 18:42 [Qemu-devel] [qemu-kvm RHEL7 PATCH] Add support statement to -help output Eduardo Habkost
2013-12-04 18:51 ` Eric Blake
2013-12-04 18:53   ` Eduardo Habkost
2013-12-18 10:39 ` 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).