- Add DMABUF support [VOYAGER-19 VOYAGER-53] - Accelerated SMMU device for GH GPU passthrough [VOYAGER-5 VOYAGER-16 VOYAGER-17 VOYAGER-48] - Resolves: VOYAGER-5 (Backport CMDQV support) - Resolves: VOYAGER-16 (Backport HW accelerated nesting support for arm SMMUv3) - Resolves: VOYAGER-17 (Backport vEVENTQ support for smmuv3) - Resolves: VOYAGER-19 (Backport vfio: Add DMABUF support for PCI BAR regions - qemu-kvm) - Resolves: VOYAGER-48 (qemu-kvm coredump when using traditional smmuv3 device without any GPU device) - Resolves: VOYAGER-53 (qemu-kvm coredump when hotunplug NIC VF interface without smmuv3)
44 lines
1.4 KiB
Diff
44 lines
1.4 KiB
Diff
From 82d41e31ab3a068793c14288bc5dff21cabf1aa8 Mon Sep 17 00:00:00 2001
|
|
From: Eduardo Habkost <ehabkost@redhat.com>
|
|
Date: Wed, 4 Dec 2013 18:53:17 +0100
|
|
Subject: [PATCH] Add support statement to -help output
|
|
|
|
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>
|
|
---
|
|
system/vl.c | 9 +++++++++
|
|
1 file changed, 9 insertions(+)
|
|
|
|
diff --git a/system/vl.c b/system/vl.c
|
|
index 3b7057e6c6..d3e6158753 100644
|
|
--- a/system/vl.c
|
|
+++ b/system/vl.c
|
|
@@ -872,9 +872,17 @@ static void version(void)
|
|
QEMU_COPYRIGHT "\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",
|
|
g_get_prgname());
|
|
@@ -900,6 +908,7 @@ static void help(int exitcode)
|
|
"\n"
|
|
QEMU_HELP_BOTTOM "\n");
|
|
|
|
+ print_rh_warning();
|
|
exit(exitcode);
|
|
}
|
|
|