[PATCH 1/4] linux-headers/linux/kvm.h: introduce kvm_userspace_memory_region_list ioctl

From: Emanuele Giuseppe Esposito
Date: Sat Oct 22 2022 - 11:48:40 EST


Introduce new KVM_KICK_ALL_RUNNING_VCPUS and KVM_RESUME_ALL_KICKED_VCPUS
ioctl that will be used respectively to pause and then resume all vcpus
currently executing KVM_RUN in kvm.

Signed-off-by: Emanuele Giuseppe Esposito <eesposit@xxxxxxxxxx>
---
include/uapi/linux/kvm.h | 3 +++
1 file changed, 3 insertions(+)

diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h
index eed0315a77a6..d3cba8d4ca91 100644
--- a/include/uapi/linux/kvm.h
+++ b/include/uapi/linux/kvm.h
@@ -2227,4 +2227,7 @@ struct kvm_s390_zpci_op {
/* flags for kvm_s390_zpci_op->u.reg_aen.flags */
#define KVM_S390_ZPCIOP_REGAEN_HOST (1 << 0)

+#define KVM_KICK_ALL_RUNNING_VCPUS _IO(KVMIO, 0xd2)
+#define KVM_RESUME_ALL_KICKED_VCPUS _IO(KVMIO, 0xd3)
+
#endif /* __LINUX_KVM_H */
--
2.31.1