Signed-off-by: Nikolay Shirokovskiy <nikolay.shirokovskiy@xxxxxxxxxx> --- src/qemu/qemu_monitor.c | 3 +++ src/qemu/qemu_monitor.h | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/qemu/qemu_monitor.c b/src/qemu/qemu_monitor.c index 4b33407e50..77682f817c 100644 --- a/src/qemu/qemu_monitor.c +++ b/src/qemu/qemu_monitor.c @@ -119,6 +119,9 @@ VIR_ENUM_IMPL(qemuMonitorJob, "mirror", "backup", "create", + "snapshot-save", + "snapshot-load", + "snapshot-delete", ); VIR_ENUM_IMPL(qemuMonitorJobStatus, diff --git a/src/qemu/qemu_monitor.h b/src/qemu/qemu_monitor.h index 8067236693..67715ef252 100644 --- a/src/qemu/qemu_monitor.h +++ b/src/qemu/qemu_monitor.h @@ -139,6 +139,9 @@ typedef enum { QEMU_MONITOR_JOB_TYPE_MIRROR, QEMU_MONITOR_JOB_TYPE_BACKUP, QEMU_MONITOR_JOB_TYPE_CREATE, + QEMU_MONITOR_JOB_TYPE_SNAPSHOT_SAVE, + QEMU_MONITOR_JOB_TYPE_SNAPSHOT_LOAD, + QEMU_MONITOR_JOB_TYPE_SNAPSHOT_DELETE, QEMU_MONITOR_JOB_TYPE_LAST } qemuMonitorJobType; -- 2.35.1