aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/virtual
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/virtual')
-rw-r--r--Documentation/virtual/kvm/api.txt19
1 files changed, 19 insertions, 0 deletions
diff --git a/Documentation/virtual/kvm/api.txt b/Documentation/virtual/kvm/api.txt
index 149558b1e81e..fb308be8521b 100644
--- a/Documentation/virtual/kvm/api.txt
+++ b/Documentation/virtual/kvm/api.txt
@@ -2341,6 +2341,25 @@ and distributor interface, the ioctl must be called after calling
2341KVM_CREATE_IRQCHIP, but before calling KVM_RUN on any of the VCPUs. Calling 2341KVM_CREATE_IRQCHIP, but before calling KVM_RUN on any of the VCPUs. Calling
2342this ioctl twice for any of the base addresses will return -EEXIST. 2342this ioctl twice for any of the base addresses will return -EEXIST.
2343 2343
23444.82 KVM_PPC_RTAS_DEFINE_TOKEN
2345
2346Capability: KVM_CAP_PPC_RTAS
2347Architectures: ppc
2348Type: vm ioctl
2349Parameters: struct kvm_rtas_token_args
2350Returns: 0 on success, -1 on error
2351
2352Defines a token value for a RTAS (Run Time Abstraction Services)
2353service in order to allow it to be handled in the kernel. The
2354argument struct gives the name of the service, which must be the name
2355of a service that has a kernel-side implementation. If the token
2356value is non-zero, it will be associated with that service, and
2357subsequent RTAS calls by the guest specifying that token will be
2358handled by the kernel. If the token value is 0, then any token
2359associated with the service will be forgotten, and subsequent RTAS
2360calls by the guest for that service will be passed to userspace to be
2361handled.
2362
2344 2363
23455. The kvm_run structure 23645. The kvm_run structure
2346------------------------ 2365------------------------