diff options
author | Paolo Bonzini | 2016-03-03 14:35:44 +0100 |
---|---|---|
committer | Paolo Bonzini | 2016-03-03 14:36:07 +0100 |
commit | 61ec84f145ef2baac7ea3d6d5604c8f29c0068b7 (patch) | |
tree | b463675bf1656b0dcba411b1584e3cc99a4de7c7 /include/uapi/linux/kvm.h | |
parent | KVM: async_pf: use list_first_entry (diff) | |
parent | KVM: PPC: Add support for 64bit TCE windows (diff) | |
download | kernel-qcow2-linux-61ec84f145ef2baac7ea3d6d5604c8f29c0068b7.tar.gz kernel-qcow2-linux-61ec84f145ef2baac7ea3d6d5604c8f29c0068b7.tar.xz kernel-qcow2-linux-61ec84f145ef2baac7ea3d6d5604c8f29c0068b7.zip |
Merge branch 'kvm-ppc-next' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc into HEAD
The highlights are:
* Enable VFIO device on PowerPC, from David Gibson
* Optimizations to speed up IPIs between vcpus in HV KVM,
from Suresh Warrier (who is also Suresh E. Warrier)
* In-kernel handling of IOMMU hypercalls, and support for dynamic DMA
windows (DDW), from Alexey Kardashevskiy.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/uapi/linux/kvm.h')
-rw-r--r-- | include/uapi/linux/kvm.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/uapi/linux/kvm.h b/include/uapi/linux/kvm.h index 82581b6e944d..c251f06f4e11 100644 --- a/include/uapi/linux/kvm.h +++ b/include/uapi/linux/kvm.h @@ -862,6 +862,7 @@ struct kvm_ppc_smmu_info { #define KVM_CAP_IOEVENTFD_ANY_LENGTH 122 #define KVM_CAP_HYPERV_SYNIC 123 #define KVM_CAP_S390_RI 124 +#define KVM_CAP_SPAPR_TCE_64 125 #ifdef KVM_CAP_IRQ_ROUTING @@ -1154,6 +1155,8 @@ struct kvm_s390_ucas_mapping { /* Available with KVM_CAP_PPC_ALLOC_HTAB */ #define KVM_PPC_ALLOCATE_HTAB _IOWR(KVMIO, 0xa7, __u32) #define KVM_CREATE_SPAPR_TCE _IOW(KVMIO, 0xa8, struct kvm_create_spapr_tce) +#define KVM_CREATE_SPAPR_TCE_64 _IOW(KVMIO, 0xa8, \ + struct kvm_create_spapr_tce_64) /* Available with KVM_CAP_RMA */ #define KVM_ALLOCATE_RMA _IOR(KVMIO, 0xa9, struct kvm_allocate_rma) /* Available with KVM_CAP_PPC_HTAB_FD */ |