aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/virtual/kvm/api.txt9
1 files changed, 9 insertions, 0 deletions
diff --git a/Documentation/virtual/kvm/api.txt b/Documentation/virtual/kvm/api.txt
index 81f1b974c06a..228f9cf5a5b5 100644
--- a/Documentation/virtual/kvm/api.txt
+++ b/Documentation/virtual/kvm/api.txt
@@ -2957,6 +2957,15 @@ HVC instruction based PSCI call from the vcpu. The 'type' field describes
2957the system-level event type. The 'flags' field describes architecture 2957the system-level event type. The 'flags' field describes architecture
2958specific flags for the system-level event. 2958specific flags for the system-level event.
2959 2959
2960Valid values for 'type' are:
2961 KVM_SYSTEM_EVENT_SHUTDOWN -- the guest has requested a shutdown of the
2962 VM. Userspace is not obliged to honour this, and if it does honour
2963 this does not need to destroy the VM synchronously (ie it may call
2964 KVM_RUN again before shutdown finally occurs).
2965 KVM_SYSTEM_EVENT_RESET -- the guest has requested a reset of the VM.
2966 As with SHUTDOWN, userspace can choose to ignore the request, or
2967 to schedule the reset to occur in the future and may call KVM_RUN again.
2968
2960 /* Fix the size of the union. */ 2969 /* Fix the size of the union. */
2961 char padding[256]; 2970 char padding[256];
2962 }; 2971 };