summaryrefslogtreecommitdiff
path: root/virt/kvm/kvm_main.c
AgeCommit message (Expand)AuthorFilesLines
2025-02-04KVM: remove kvm_arch_post_init_vmPaolo Bonzini1-15/+0
2025-01-31KVM: Do not restrict the size of KVM-internal memory regionsSean Christopherson1-1/+9
2025-01-20Merge branch 'kvm-mirror-page-tables' into HEADPaolo Bonzini1-0/+14
2025-01-20Merge tag 'kvm-x86-vcpu_array-6.14' of https://github.com/kvm-x86/linux into ...Paolo Bonzini1-16/+52
2025-01-14KVM: Disallow all flags for KVM-internal memslotsSean Christopherson1-0/+3
2025-01-14KVM: x86: Drop double-underscores from __kvm_set_memory_region()Sean Christopherson1-4/+4
2025-01-14KVM: Add a dedicated API for setting KVM-internal memslotsSean Christopherson1-3/+12
2025-01-14KVM: Assert slots_lock is held when setting memory regionsSean Christopherson1-8/+2
2025-01-14KVM: Open code kvm_set_memory_region() into its sole caller (ioctl() API)Sean Christopherson1-13/+2
2024-12-23KVM: Add member to struct kvm_gfn_range to indicate private/sharedIsaku Yamahata1-0/+14
2024-12-16KVM: Drop hack that "manually" informs lockdep of kvm->lock vs. vcpu->mutexSean Christopherson1-7/+2
2024-12-16KVM: Don't BUG() the kernel if xa_insert() fails with -EBUSYSean Christopherson1-1/+1
2024-12-16Revert "KVM: Fix vcpu_array[0] races"Sean Christopherson1-9/+5
2024-12-16KVM: Grab vcpu->mutex across installing the vCPU's fd and bumping online_vcpusSean Christopherson1-1/+46
2024-11-14KVM: x86: switch hugepage recovery thread to vhost_taskPaolo Bonzini1-103/+0
2024-11-13Merge tag 'kvm-x86-mmu-6.13' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini1-14/+6
2024-11-13Merge tag 'kvm-x86-generic-6.13' of https://github.com/kvm-x86/linux into HEADPaolo Bonzini1-60/+83
2024-11-08Merge tag 'kvm-riscv-6.13-1' of https://github.com/kvm-riscv/linux into HEADPaolo Bonzini1-1/+1
2024-10-30KVM: Allow arch code to elide TLB flushes when aging a young pageSean Christopherson1-14/+6
2024-10-30KVM: Protect vCPU's "last run PID" with rwlock, not RCUSean Christopherson1-14/+25
2024-10-30KVM: Return '0' directly when there's no task to yield toSean Christopherson1-2/+2
2024-10-30KVM: Rework core loop of kvm_vcpu_on_spin() to use a single for-loopSean Christopherson1-44/+56
2024-10-25KVM: Don't grab reference on VM_MIXEDMAP pfns that have a "struct page"Sean Christopherson1-73/+2
2024-10-25KVM: Drop APIs that manipulate "struct page" via pfnsSean Christopherson1-55/+0
2024-10-25KVM: Make kvm_follow_pfn.refcounted_page a required fieldSean Christopherson1-2/+4
2024-10-25KVM: Drop gfn_to_pfn() APIs now that all users are goneSean Christopherson1-53/+0
2024-10-25KVM: Add support for read-only usage of gfn_to_page()Sean Christopherson1-7/+8
2024-10-25KVM: Convert gfn_to_page() to use kvm_follow_pfn()Sean Christopherson1-7/+9
2024-10-25KVM: Add kvm_faultin_pfn() to specifically service guest page faultsSean Christopherson1-0/+22
2024-10-25KVM: Disallow direct access (w/o mmu_notifier) to unpinned pfn by defaultSean Christopherson1-0/+18
2024-10-25KVM: Get writable mapping for __kvm_vcpu_map() only when necessarySean Christopherson1-1/+1
2024-10-25KVM: Pass in write/dirty to kvm_vcpu_map(), not kvm_vcpu_unmap()Sean Christopherson1-5/+7
2024-10-25KVM: Pin (as in FOLL_PIN) pages during kvm_vcpu_map()Sean Christopherson1-15/+39
2024-10-25KVM: Migrate kvm_vcpu_map() to kvm_follow_pfn()David Stevens1-10/+16
2024-10-25KVM: Move kvm_{set,release}_page_{clean,dirty}() helpers up in kvm_main.cSean Christopherson1-41/+41
2024-10-25KVM: Provide refcounted page as output field in struct kvm_follow_pfnSean Christopherson1-52/+47
2024-10-25KVM: Use plain "struct page" pointer instead of single-entry arraySean Christopherson1-3/+3
2024-10-25KVM: Use NULL for struct page pointer to indicate mremapped memorySean Christopherson1-2/+2
2024-10-25KVM: Explicitly initialize all fields at the start of kvm_vcpu_map()Sean Christopherson1-18/+10
2024-10-25KVM: Remove pointless sanity check on @map param to kvm_vcpu_(un)map()Sean Christopherson1-6/+0
2024-10-25KVM: Introduce kvm_follow_pfn() to eventually replace "gfn_to_pfn" APIsDavid Stevens1-76/+82
2024-10-25KVM: Drop unused "hva" pointer from __gfn_to_pfn_memslot()Sean Christopherson1-6/+3
2024-10-25KVM: Replace "async" pointer in gfn=>pfn with "no_wait" and error codeDavid Stevens1-13/+14
2024-10-25KVM: Drop extra GUP (via check_user_page_hwpoison()) to detect poisoned pageSean Christopherson1-15/+2
2024-10-25KVM: Return ERR_SIGPENDING from hva_to_pfn() if GUP returns -EGAINSean Christopherson1-1/+1
2024-10-25KVM: Annotate that all paths in hva_to_pfn() might sleepSean Christopherson1-2/+2
2024-10-25KVM: Drop @atomic param from gfn=>pfn and hva=>pfn APIsSean Christopherson1-25/+8
2024-10-25KVM: Rename gfn_to_page_many_atomic() to kvm_prefetch_pages()Sean Christopherson1-3/+3
2024-10-25KVM: Allow calling kvm_release_page_{clean,dirty}() on a NULL page pointerSean Christopherson1-2/+2
2024-10-25KVM: Drop KVM_ERR_PTR_BAD_PAGE and instead return NULL to indicate an errorSean Christopherson1-9/+6