summaryrefslogtreecommitdiffstats
path: root/virt/kvm
Commit message (Expand)AuthorAgeFilesLines
* Merge tag 'pull-fd' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds3 days2-22/+7
|\
| * assorted variants of irqfd setup: convert to CLASS(fd)Al Viro2024-11-031-12/+3
| * fdget(), more trivial conversionsAl Viro2024-11-031-4/+2
| * fdget(), trivial conversionsAl Viro2024-11-031-6/+2
* | Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2024-10-211-12/+0
|\ \
| * | KVM: Remove unused kvm_vcpu_gfn_to_pfn_atomicDr. David Alan Gilbert2024-10-201-6/+0
| * | KVM: Remove unused kvm_vcpu_gfn_to_pfnDr. David Alan Gilbert2024-10-201-6/+0
| |/
* / sched/fair: Fix external p->on_rq usersPeter Zijlstra2024-10-141-1/+1
|/
* Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvmLinus Torvalds2024-09-282-160/+152
|\
| * Merge tag 'kvm-x86-generic-6.12' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini2024-09-172-24/+18
| |\
| | * KVM: Harden guest memory APIs against out-of-bounds accessesSean Christopherson2024-09-091-0/+9
| | * KVM: Write the per-page "segment" when clearing (part of) a guest pageSean Christopherson2024-09-091-1/+1
| | * KVM: Clean up coalesced MMIO ring full checkSean Christopherson2024-08-291-21/+8
| | * KVM: Fix coalesced_mmio_has_room() to avoid premature userspace exitIlias Stamatis2024-08-231-3/+1
| * | KVM: Add arch hooks for enabling/disabling virtualizationSean Christopherson2024-09-041-0/+14
| * | KVM: Add a module param to allow enabling virtualization when KVM is loadedSean Christopherson2024-09-041-0/+35
| * | KVM: Rename arch hooks related to per-CPU virtualization enablingSean Christopherson2024-09-041-2/+2
| * | KVM: Rename symbols related to enabling virtualization hardwareSean Christopherson2024-09-041-21/+21
| * | KVM: Register cpuhp and syscore callbacks when enabling hardwareSean Christopherson2024-09-041-113/+61
| * | KVM: Use dedicated mutex to protect kvm_usage_count to avoid deadlockSean Christopherson2024-09-041-15/+16
| |/
* | [tree-wide] finally take no_llseek outAl Viro2024-09-271-1/+0
* | Merge tag 'pull-stable-struct_fd' of git://git.kernel.org/pub/scm/linux/kerne...Linus Torvalds2024-09-232-7/+7
|\ \
| * | introduce fd_file(), convert all accessors to it.Al Viro2024-08-122-7/+7
* | | KVM: use follow_pfnmap APIPeter Xu2024-09-171-12/+7
| |/ |/|
* | KVM: x86: Disallow read-only memslots for SEV-ES and SEV-SNP (and TDX)Sean Christopherson2024-08-141-3/+2
* | KVM: eventfd: Use synchronize_srcu_expedited() on shutdownLi RongQing2024-08-131-6/+7
* | KVM: guest_memfd: abstract how prepared folios are recordedPaolo Bonzini2024-07-261-13/+20
* | KVM: guest_memfd: let kvm_gmem_populate() operate only on private gfnsPaolo Bonzini2024-07-261-0/+12
* | KVM: extend kvm_range_has_memory_attributes() to check subset of attributesPaolo Bonzini2024-07-261-6/+7
* | KVM: cleanup and add shortcuts to kvm_range_has_memory_attributes()Paolo Bonzini2024-07-261-22/+20
* | KVM: guest_memfd: move check for already-populated page to common codePaolo Bonzini2024-07-261-0/+7
* | KVM: remove kvm_arch_gmem_prepare_needed()Paolo Bonzini2024-07-261-10/+3
* | KVM: guest_memfd: make kvm_gmem_prepare_folio() operate on a single struct kvmPaolo Bonzini2024-07-261-30/+19
* | KVM: guest_memfd: delay kvm_gmem_prepare_folio() until the memory is passed t...Paolo Bonzini2024-07-261-44/+66
* | KVM: guest_memfd: return locked folio from __kvm_gmem_get_pfnPaolo Bonzini2024-07-261-1/+4
* | KVM: rename CONFIG_HAVE_KVM_GMEM_* to CONFIG_HAVE_KVM_ARCH_GMEM_*Paolo Bonzini2024-07-262-5/+5
* | KVM: guest_memfd: do not go through struct pagePaolo Bonzini2024-07-261-10/+17
* | KVM: guest_memfd: delay folio_mark_uptodate() until after successful preparationPaolo Bonzini2024-07-261-2/+4
* | KVM: guest_memfd: return folio from __kvm_gmem_get_pfn()Paolo Bonzini2024-07-261-17/+20
|/
* Merge tag 'kvm-x86-generic-6.11' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini2024-07-163-25/+58
|\
| * KVM: Add missing MODULE_DESCRIPTION()Jeff Johnson2024-06-281-4/+2
| * KVM: Mark a vCPU as preempted/ready iff it's scheduled out while runningDavid Matlack2024-06-181-1/+1
| * KVM: Ensure new code that references immediate_exit gets extra scrutinyDavid Matlack2024-06-181-1/+1
| * KVM: Introduce vcpu->wants_to_runDavid Matlack2024-06-181-0/+3
| * KVM: Reject overly excessive IDs in KVM_CREATE_VCPUMathias Krause2024-06-181-1/+10
| * KVM: Fix a goof where kvm_create_vm() returns 0 instead of -ENOMEMDan Carpenter2024-06-141-2/+3
| * KVM: Delete the now unused kvm_arch_sched_in()Sean Christopherson2024-06-111-1/+0
| * KVM: Add a flag to track if a loaded vCPU is scheduled outSean Christopherson2024-06-111-0/+4
| * KVM: Setup empty IRQ routing when creating a VMYi Wang2024-06-112-0/+31
| * Revert "KVM: async_pf: avoid recursive flushing of work items"Sean Christopherson2024-06-031-12/+1