@@ -49,6 +49,7 @@
#include <linux/lockdep.h>
#include <linux/kthread.h>
#include <linux/suspend.h>
+#include <linux/tee_mediator.h>
#include <asm/processor.h>
#include <asm/ioctl.h>
@@ -1250,7 +1251,10 @@ static void kvm_destroy_vm(struct kvm *kvm)
{
int i;
struct mm_struct *mm = kvm->mm;
-
+#ifdef CONFIG_TEE_MEDIATOR
+ if (tee_mediator_is_active())
+ (void) tee_mediator_destroy_vm(kvm);
+#endif
kvm_destroy_pm_notifier(kvm);
kvm_uevent_notify_change(KVM_EVENT_DESTROY_VM, kvm);
kvm_destroy_vm_debugfs(kvm);
@@ -5407,7 +5411,10 @@ static int kvm_dev_ioctl_create_vm(unsigned long type)
* care of doing kvm_put_kvm(kvm).
*/
kvm_uevent_notify_change(KVM_EVENT_CREATE_VM, kvm);
-
+#ifdef CONFIG_TEE_MEDIATOR
+ if (tee_mediator_is_active())
+ (void) tee_mediator_create_vm(kvm);
+#endif
fd_install(fd, file);
return fd;
TEEs supporting virtualization in the rich execution environment would want to know about guest creation and destruction by the hypervisor. This change notifies the TEE mediator of these events (if its active). Signed-off-by: Yuvraj Sakshith <yuvraj.kernel@gmail.com> --- virt/kvm/kvm_main.c | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-)