7a3408
From 10dc4fb241e70105d5b584f7070f34d156e5e4e2 Mon Sep 17 00:00:00 2001
7a3408
Message-Id: <10dc4fb241e70105d5b584f7070f34d156e5e4e2@dist-git>
7a3408
From: Eric Blake <eblake@redhat.com>
7a3408
Date: Tue, 7 Oct 2014 17:06:17 -0600
7a3408
Subject: [PATCH] RHEL: qemu: support relative backing for RHEL 7.0.z qemu
7a3408
7a3408
RHEL-only: https://bugzilla.redhat.com/show_bug.cgi?id=1150322
7a3408
7a3408
qemu-kvm-rhev for RHEL 7.0.z backported enough code to allow
7a3408
relative backing file manipulations, but could not backport
7a3408
everything from upstream.  So, instead of providing the upstream
7a3408
'change-backing-file' QMP command, it added a downstream-only
7a3408
'__com.redhat_change-backing-file' as a witness that relative
7a3408
backing is supported, but not as full-featured.  Since libvirt
7a3408
from RHEL 7.1 may be driving an older qemu, we need to be able
7a3408
to recognize the alternate spelling.
7a3408
7a3408
* src/qemu/qemu_capabilities.c (virQEMUCapsCommands): Also
7a3408
recognize downstream spelling.
7a3408
7a3408
Signed-off-by: Eric Blake <eblake@redhat.com>
7a3408
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
7a3408
---
7a3408
 src/qemu/qemu_capabilities.c | 1 +
7a3408
 1 file changed, 1 insertion(+)
7a3408
7a3408
diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c
7a3408
index 27686c3..89d63e5 100644
7a3408
--- a/src/qemu/qemu_capabilities.c
7a3408
+++ b/src/qemu/qemu_capabilities.c
7a3408
@@ -1494,6 +1494,7 @@ struct virQEMUCapsStringFlags virQEMUCapsCommands[] = {
7a3408
     { "add-fd", QEMU_CAPS_ADD_FD },
7a3408
     { "nbd-server-start", QEMU_CAPS_NBD_SERVER },
7a3408
     { "change-backing-file", QEMU_CAPS_CHANGE_BACKING_FILE },
7a3408
+    { "__com.redhat_change-backing-file", QEMU_CAPS_CHANGE_BACKING_FILE },
7a3408
     { "rtc-reset-reinjection", QEMU_CAPS_RTC_RESET_REINJECTION },
7a3408
 };
7a3408
 
7a3408
-- 
7a3408
2.4.5
7a3408