From 56de80cb793aa7aedc45572f8b6ec3fc32c99309 Mon Sep 17 00:00:00 2001 From: Michal Privoznik Date: Tue, 8 Nov 2022 08:20:59 +0100 Subject: [PATCH] qemu: Retire QEMU_CAPS_DISK_WRITE_CACHE MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Now that nothing uses this capability, it can be retired. Signed-off-by: Michal Privoznik Reviewed-by: Peter Krempa Reviewed-by: Ján Tomko --- src/qemu/qemu_capabilities.c | 2 +- src/qemu/qemu_capabilities.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c index 0b267e4f30..4c301c3638 100644 --- a/src/qemu/qemu_capabilities.c +++ b/src/qemu/qemu_capabilities.c @@ -469,7 +469,7 @@ VIR_ENUM_IMPL(virQEMUCaps, "pcie-pci-bridge", /* QEMU_CAPS_DEVICE_PCIE_PCI_BRIDGE */ "seccomp-blacklist", /* X_QEMU_CAPS_SECCOMP_BLACKLIST */ "query-cpus-fast", /* X_QEMU_CAPS_QUERY_CPUS_FAST */ - "disk-write-cache", /* QEMU_CAPS_DISK_WRITE_CACHE */ + "disk-write-cache", /* X_QEMU_CAPS_DISK_WRITE_CACHE */ /* 290 */ "nbd-tls", /* QEMU_CAPS_NBD_TLS */ diff --git a/src/qemu/qemu_capabilities.h b/src/qemu/qemu_capabilities.h index ead8ef45d9..c79bc7cd24 100644 --- a/src/qemu/qemu_capabilities.h +++ b/src/qemu/qemu_capabilities.h @@ -448,7 +448,7 @@ typedef enum { /* virQEMUCapsFlags grouping marker for syntax-check */ QEMU_CAPS_DEVICE_PCIE_PCI_BRIDGE, /* -device pcie-pci-bridge */ X_QEMU_CAPS_SECCOMP_BLACKLIST, /* -sandbox.elevateprivileges */ X_QEMU_CAPS_QUERY_CPUS_FAST, /* query-cpus-fast command */ - QEMU_CAPS_DISK_WRITE_CACHE, /* qemu block frontends support write-cache param */ + X_QEMU_CAPS_DISK_WRITE_CACHE, /* qemu block frontends support write-cache param */ /* 290 */ QEMU_CAPS_NBD_TLS, /* NBD server supports TLS transport */