From: Michal Privoznik Date: Tue, 8 Nov 2022 07:20:56 +0000 (+0100) Subject: qemu: Retire QEMU_CAPS_DISK_SHARE_RW X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=e2927db1853938ce799b4b61f07762c6cc7c4585;p=libvirt.git qemu: Retire QEMU_CAPS_DISK_SHARE_RW Now that nothing uses this capability, it can be retired. Signed-off-by: Michal Privoznik Reviewed-by: Peter Krempa Reviewed-by: Ján Tomko --- diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c index 6b9b4e96de..6520f52c40 100644 --- a/src/qemu/qemu_capabilities.c +++ b/src/qemu/qemu_capabilities.c @@ -451,7 +451,7 @@ VIR_ENUM_IMPL(virQEMUCaps, "numa.dist", /* X_QEMU_CAPS_NUMA_DIST */ /* 275 */ - "disk-share-rw", /* QEMU_CAPS_DISK_SHARE_RW */ + "disk-share-rw", /* X_QEMU_CAPS_DISK_SHARE_RW */ "iscsi.password-secret", /* X_QEMU_CAPS_ISCSI_PASSWORD_SECRET */ "isa-serial", /* QEMU_CAPS_DEVICE_ISA_SERIAL */ "pl011", /* QEMU_CAPS_DEVICE_PL011 */ diff --git a/src/qemu/qemu_capabilities.h b/src/qemu/qemu_capabilities.h index 0a62765a04..ead8ef45d9 100644 --- a/src/qemu/qemu_capabilities.h +++ b/src/qemu/qemu_capabilities.h @@ -430,7 +430,7 @@ typedef enum { /* virQEMUCapsFlags grouping marker for syntax-check */ X_QEMU_CAPS_NUMA_DIST, /* -numa dist */ /* 275 */ - QEMU_CAPS_DISK_SHARE_RW, /* share-rw=on for concurrent disk access */ + X_QEMU_CAPS_DISK_SHARE_RW, /* share-rw=on for concurrent disk access */ X_QEMU_CAPS_ISCSI_PASSWORD_SECRET, /* -drive file.driver=iscsi,...,password-secret= */ QEMU_CAPS_DEVICE_ISA_SERIAL, /* -device isa-serial */ QEMU_CAPS_DEVICE_PL011, /* -device pl011 (not user-instantiable) */