summaryrefslogtreecommitdiff
path: root/include/linux/kvm_host.h
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2022-05-261-1/+3
|\
| * Merge tag 'kvmarm-5.19' of git://git.kernel.org/pub/scm/linux/kernel/git/kvma...Paolo Bonzini2022-05-251-1/+25
| |\
| * | KVM: Add max_vcpus field in common 'struct kvm'Sean Christopherson2022-05-021-0/+1
| * | KVM: x86/xen: Make kvm_xen_set_evtchn() reusable from other placesDavid Woodhouse2022-04-021-1/+2
* | | Merge tag 'locking-core-2022-05-23' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds2022-05-241-1/+1
|\ \ \ | |_|/ |/| |
| * | lockdep: Fix -Wunused-parameter for _THIS_IP_Nick Desaulniers2022-04-051-1/+1
| |/
* | KVM: SEV: add cache flush to solve SEV cache incoherency issuesMingwei Zhang2022-04-211-0/+2
* | KVM: Add helpers to wrap vcpu->srcu_idx and yell if it's abusedSean Christopherson2022-04-211-1/+23
|/
* KVM: Remove dirty handling from gfn_to_pfn_cache completelyDavid Woodhouse2022-04-021-9/+5
* KVM: Use enum to track if cached PFN will be used in guest and/or hostSean Christopherson2022-04-021-8/+8
* KVM: Don't actually set a request when evicting vCPUs for GFN cache invdSean Christopherson2022-04-021-7/+31
* KVM: Drop KVM_REQ_MMU_RELOAD and update vcpu-requests.rst documentationSean Christopherson2022-03-011-2/+1
* KVM: Drop kvm_reload_remote_mmus(), open code request in x86 usersSean Christopherson2022-03-011-1/+0
* Merge tag 'kvmarm-fixes-5.17-2' of git://git.kernel.org/pub/scm/linux/kernel/...Paolo Bonzini2022-02-051-0/+10
|\
| * Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2022-01-221-3/+0
| |\
| * \ Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2022-01-161-92/+340
| |\ \
| * \ \ Merge tag 'perf_core_for_v5.17_rc1' of git://git.kernel.org/pub/scm/linux/ker...Linus Torvalds2022-01-121-0/+10
| |\ \ \
| | * | | KVM: Move x86's perf guest info callbacks to generic KVMSean Christopherson2021-11-171-0/+10
* | | | | kvm: add guest_state_{enter,exit}_irqoff()Mark Rutland2022-02-011-3/+109
| |_|_|/ |/| | |
* | | | KVM: Move x86 VMX's posted interrupt list_head to vcpu_vmxSean Christopherson2022-01-191-2/+0
* | | | KVM: Drop unused kvm_vcpu.pre_pcpu fieldSean Christopherson2022-01-191-1/+0
| |_|/ |/| |
* | | KVM: x86/xen: Add KVM_IRQ_ROUTING_XEN_EVTCHN and event channel deliveryDavid Woodhouse2022-01-071-0/+7
* | | KVM: Reinstate gfn_to_pfn_cache with invalidation supportDavid Woodhouse2022-01-071-0/+103
* | | Merge tag 'kvmarm-5.17' of git://git.kernel.org/pub/scm/linux/kernel/git/kvma...Paolo Bonzini2022-01-071-1/+0
|\ \ \
| * | | KVM: Drop stale kvm_is_transparent_hugepage() declarationVitaly Kuznetsov2021-12-071-1/+0
| |/ /
* | | KVM: Add helpers to wake/query blocking vCPUSean Christopherson2021-12-081-0/+14
* | | KVM: stats: Add stat to detect if vcpu is currently blockingJing Zhang2021-12-081-1/+2
* | | KVM: Split out a kvm_vcpu_block() helper from kvm_vcpu_halt()Sean Christopherson2021-12-081-0/+1
* | | KVM: Rename kvm_vcpu_block() => kvm_vcpu_halt()Sean Christopherson2021-12-081-1/+1
* | | KVM: Force PPC to define its own rcuwait objectSean Christopherson2021-12-081-0/+2
* | | KVM: x86/mmu: Propagate memslot const qualifierBen Gardon2021-12-081-5/+5
* | | KVM: Optimize gfn lookup in kvm_zap_gfn_range()Maciej S. Szmigiero2021-12-081-0/+94
* | | KVM: Keep memslots in tree-based structures instead of array-based onesMaciej S. Szmigiero2021-12-081-72/+71
* | | KVM: Use interval tree to do fast hva lookup in memslotsMaciej S. Szmigiero2021-12-081-0/+3
* | | KVM: Resolve memslot ID via a hash table instead of via a static arrayMaciej S. Szmigiero2021-12-081-9/+16
* | | KVM: Integrate gfn_to_memslot_approx() into search_memslots()Maciej S. Szmigiero2021-12-081-8/+27
* | | KVM: Stop passing kvm_userspace_memory_region to arch memslot hooksSean Christopherson2021-12-081-2/+0
* | | KVM: Let/force architectures to deal with arch specific memslot dataSean Christopherson2021-12-081-1/+2
* | | KVM: Require total number of memslot pages to fit in an unsigned longSean Christopherson2021-12-081-0/+1
* | | KVM: Convert kvm_for_each_vcpu() to using xa_for_each_range()Marc Zyngier2021-12-081-5/+3
* | | KVM: Use 'unsigned long' as kvm_for_each_vcpu()'s indexMarc Zyngier2021-12-081-1/+1
* | | KVM: Convert the kvm->vcpus array to a xarrayMarc Zyngier2021-12-081-2/+3
* | | KVM: Move wiping of the kvm->vcpus array to common codeMarc Zyngier2021-12-081-1/+1
|/ /
* | Merge branch 'kvm-5.16-fixes' into kvm-masterPaolo Bonzini2021-11-181-5/+1
|\ \ | |/ |/|
| * KVM: Kill kvm_map_gfn() / kvm_unmap_gfn() and gfn_to_pfn_cacheDavid Woodhouse2021-11-181-5/+1
* | KVM: generalize "bugged" VM to "dead" VMPaolo Bonzini2021-11-111-2/+10
|/
* kvm: use kvfree() in kvm_arch_free_vm()Juergen Gross2021-10-011-1/+8
* kvm: irqfd: avoid update unmodified entries of the routingLongpeng(Mike)2021-09-301-0/+2
* kvm: rename KVM_MAX_VCPU_ID to KVM_MAX_VCPU_IDSJuergen Gross2021-09-301-2/+2
* KVM: Make kvm_make_vcpus_request_mask() use pre-allocated cpu_kick_maskVitaly Kuznetsov2021-09-301-1/+1