messages from 2021-11-02 00:22:47 to 2021-11-10 18:06:34 UTC [more...]
[PATCH v4 00/15] Support Asynchronous Page Fault
2021-11-10 18:06 UTC (14+ messages)
` [PATCH v4 01/15] KVM: async_pf: Move struct kvm_async_pf around
` [PATCH v4 02/15] KVM: async_pf: Add helper function to check completion queue
` [PATCH v4 03/15] KVM: async_pf: Make GFN slot management generic
` [PATCH v4 04/15] KVM: x86: Use generic async PF slot management
` [PATCH v4 05/15] KVM: arm64: Export kvm_handle_user_mem_abort()
` [PATCH v4 06/15] KVM: arm64: Add paravirtualization header files
[PATCH v4 00/21] Support SDEI Virtualization
2021-11-10 14:29 UTC (41+ messages)
` [PATCH v4 01/21] KVM: arm64: Introduce template for inline functions
` [PATCH v4 02/21] KVM: arm64: Add SDEI virtualization infrastructure
` [PATCH v4 03/21] KVM: arm64: Support SDEI_VERSION hypercall
` [PATCH v4 04/21] KVM: arm64: Support SDEI_EVENT_REGISTER hypercall
` [PATCH v4 05/21] KVM: arm64: Support SDEI_EVENT_{ENABLE, DISABLE} hypercall
` [PATCH v4 06/21] KVM: arm64: Support SDEI_EVENT_CONTEXT hypercall
` [PATCH v4 07/21] KVM: arm64: Support SDEI_EVENT_UNREGISTER hypercall
` [PATCH v4 08/21] KVM: arm64: Support SDEI_EVENT_STATUS hypercall
` [PATCH v4 09/21] KVM: arm64: Support SDEI_EVENT_GET_INFO hypercall
` [PATCH v4 10/21] KVM: arm64: Support SDEI_EVENT_ROUTING_SET hypercall
` [PATCH v4 11/21] KVM: arm64: Support SDEI_PE_{MASK, UNMASK} hypercall
` [PATCH v4 12/21] KVM: arm64: Support SDEI_{PRIVATE, SHARED}_RESET hypercall
` [PATCH v4 13/21] KVM: arm64: Impment SDEI event delivery
` [PATCH v4 14/21] KVM: arm64: Support SDEI_EVENT_{COMPLETE, COMPLETE_AND_RESUME} hypercall
` [PATCH v4 15/21] KVM: arm64: Support SDEI event notifier
` [PATCH v4 16/21] KVM: arm64: Support SDEI ioctl commands on VM
` [PATCH v4 18/21] KVM: arm64: Support SDEI event injection
` [PATCH v4 19/21] KVM: arm64: Support SDEI event cancellation
` [PATCH v4 20/21] KVM: arm64: Export SDEI capability
[PATCH v2 0/5] KVM: arm64: Rework FPSIMD/SVE tracking
2021-11-10 13:19 UTC (3+ messages)
` [PATCH v2 2/5] KVM: arm64: Get rid of host SVE tracking/saving
[PATCH v3 00/16] perf: KVM: Fix, optimize, and clean up callbacks
2021-11-10 11:07 UTC (12+ messages)
` [PATCH v3 01/16] perf: Ensure perf_guest_cbs aren't reloaded between !NULL check and deref
` [PATCH v3 08/16] perf: Force architectures to opt-in to guest callbacks
` [PATCH v3 15/16] KVM: arm64: Drop perf.c and fold its tiny bits of code into arm.c / pmu.c
[PATCH v5.5 00/30] KVM: Scalable memslots implementation
2021-11-09 16:29 UTC (53+ messages)
` [PATCH v5.5 01/30] KVM: Ensure local memslot copies operate on up-to-date arch-specific data
` [PATCH v5.5 02/30] KVM: Disallow user memslot with size that exceeds "unsigned long"
` [PATCH v5.5 03/30] KVM: Require total number of memslot pages to fit in an unsigned long
` [PATCH v5.5 04/30] KVM: Open code kvm_delete_memslot() into its only caller
` [PATCH v5.5 05/30] KVM: Resync only arch fields when slots_arch_lock gets reacquired
` [PATCH v5.5 06/30] KVM: Use "new" memslot's address space ID instead of dedicated param
` [PATCH v5.5 07/30] KVM: Let/force architectures to deal with arch specific memslot data
` [PATCH v5.5 08/30] KVM: arm64: Use "new" memslot instead of userspace memory region
` [PATCH v5.5 09/30] KVM: MIPS: Drop pr_debug from memslot commit to avoid using "mem"
` [PATCH v5.5 10/30] KVM: PPC: Avoid referencing userspace memory region in memslot updates
` [PATCH v5.5 11/30] KVM: s390: Use "new" memslot instead of userspace memory region
` [PATCH v5.5 12/30] KVM: x86: "
` [PATCH v5.5 13/30] KVM: RISC-V: "
` [PATCH v5.5 14/30] KVM: Stop passing kvm_userspace_memory_region to arch memslot hooks
` [PATCH v5.5 15/30] KVM: Use prepare/commit hooks to handle generic memslot metadata updates
` [PATCH v5.5 16/30] KVM: x86: Don't assume old/new memslots are non-NULL at memslot commit
` [PATCH v5.5 17/30] KVM: s390: Skip gfn/size sanity checks on memslot DELETE or FLAGS_ONLY
` [PATCH v5.5 18/30] KVM: Don't make a full copy of the old memslot in __kvm_set_memory_region()
` [PATCH v5.5 19/30] KVM: x86: Don't call kvm_mmu_change_mmu_pages() if the count hasn't changed
` [PATCH v5.5 20/30] KVM: x86: Use nr_memslot_pages to avoid traversing the memslots array
` [PATCH v5.5 21/30] KVM: Integrate gfn_to_memslot_approx() into search_memslots()
` [PATCH v5.5 22/30] KVM: Move WARN on invalid memslot index to update_memslots()
` [PATCH v5.5 23/30] KVM: Resolve memslot ID via a hash table instead of via a static array
` [PATCH v5.5 24/30] KVM: Use interval tree to do fast hva lookup in memslots
` [PATCH v5.5 25/30] KVM: s390: Introduce kvm_s390_get_gfn_end()
` [PATCH v5.5 26/30] KVM: Keep memslots in tree-based structures instead of array-based ones
` [PATCH v5.5 27/30] KVM: Optimize gfn lookup in kvm_zap_gfn_range()
` [PATCH v5.5 28/30] KVM: Optimize overlapping memslots check
` [PATCH v5.5 29/30] KVM: Wait 'til the bitter end to initialize the "new" memslot
` [PATCH v5.5 30/30] KVM: Dynamically allocate "new" memslots from the get-go
[PATCH 00/17] KVM: selftests: aarch64: Test userspace IRQ injection
2021-11-09 2:39 UTC (18+ messages)
` [PATCH 01/17] KVM: selftests: aarch64: move gic_v3.h to shared headers
` [PATCH 02/17] KVM: selftests: aarch64: add function for accessing GICv3 dist and redist registers
` [PATCH 03/17] KVM: selftests: aarch64: add GICv3 register accessor library functions
` [PATCH 04/17] KVM: selftests: add kvm_irq_line library function
` [PATCH 05/17] KVM: selftests: aarch64: add vGIC library functions to deal with vIRQ state
` [PATCH 06/17] KVM: selftests: aarch64: add vgic_irq to test userspace IRQ injection
` [PATCH 07/17] KVM: selftests: aarch64: abstract the injection functions in vgic_irq
` [PATCH 08/17] KVM: selftests: aarch64: cmdline arg to set number of IRQs in vgic_irq test
` [PATCH 09/17] KVM: selftests: aarch64: cmdline arg to set EOI mode in vgic_irq
` [PATCH 10/17] KVM: selftests: aarch64: add preemption tests "
` [PATCH 11/17] KVM: selftests: aarch64: level-sensitive interrupts "
` [PATCH 12/17] KVM: selftests: aarch64: add tests for LEVEL_INFO "
` [PATCH 13/17] KVM: selftests: aarch64: add test_inject_fail to vgic_irq
` [PATCH 14/17] KVM: selftests: add IRQ GSI routing library functions
` [PATCH 15/17] KVM: selftests: aarch64: add tests for IRQFD in vgic_irq
` [PATCH 16/17] KVM: selftests: aarch64: add ISPENDR write tests "
` [PATCH 17/17] KVM: selftests: aarch64: add test for restoring active IRQs
[RFC PATCH 0/8] KVM: arm64: Add support for hypercall services selection
2021-11-08 21:33 UTC (15+ messages)
` [RFC PATCH 1/8] KVM: arm64: Factor out firmware register handling from psci.c
` [RFC PATCH 2/8] KVM: arm64: Setup base for hypercall firmware registers
` [RFC PATCH 3/8] KVM: arm64: Add standard secure service calls firmware register
` [RFC PATCH 6/8] tools: Import the firmware registers
` [RFC PATCH 8/8] selftests: KVM: aarch64: Introduce hypercall ABI test
How to translate a VA in Guest to PA in Host?
2021-11-08 19:45 UTC (3+ messages)
[PATCH] KVM: arm64: Fix host stage-2 finalization
2021-11-08 18:10 UTC (2+ messages)
[PATCH 0/5] KVM: Turn the vcpu array into an xarray
2021-11-08 12:13 UTC (15+ messages)
` [PATCH 1/5] KVM: Move wiping of the kvm->vcpus array to common code
` [PATCH 2/5] KVM: mips: Use kvm_get_vcpu() instead of open-coded access
` [PATCH 3/5] KVM: s390: "
` [PATCH 4/5] KVM: x86: "
` [PATCH 5/5] KVM: Convert the kvm->vcpus array to a xarray
[PATCH -next] KVM: arm64: change the return type of kvm_vcpu_preferred_target()
2021-11-08 10:50 UTC (3+ messages)
[PATCH] arm64: kvm/hyp/nvhe: fix a non-kernel-doc comment
2021-11-08 10:45 UTC (2+ messages)
[RFC PATCH v2 00/28] KVM: arm64: Make CPU ID registers writable by userspace
2021-11-08 7:45 UTC (38+ messages)
` [RFC PATCH v2 01/28] KVM: arm64: Add has_reset_once flag for vcpu
` [RFC PATCH v2 02/28] KVM: arm64: Save ID registers' sanitized value per vCPU
` [RFC PATCH v2 03/28] KVM: arm64: Introduce struct id_reg_info
` [RFC PATCH v2 04/28] KVM: arm64: Keep consistency of ID registers between vCPUs
` [RFC PATCH v2 05/28] KVM: arm64: Make ID_AA64PFR0_EL1 writable
` [RFC PATCH v2 06/28] KVM: arm64: Make ID_AA64PFR1_EL1 writable
` [RFC PATCH v2 07/28] KVM: arm64: Make ID_AA64ISAR0_EL1 writable
` [RFC PATCH v2 08/28] KVM: arm64: Make ID_AA64ISAR1_EL1 writable
` [RFC PATCH v2 09/28] KVM: arm64: Make ID_AA64MMFR0_EL1 writable
` [RFC PATCH v2 10/28] KVM: arm64: Hide IMPLEMENTATION DEFINED PMU support for the guest
` [RFC PATCH v2 11/28] KVM: arm64: Make ID_AA64DFR0_EL1 writable
` [RFC PATCH v2 12/28] KVM: arm64: Make ID_DFR0_EL1 writable
` [RFC PATCH v2 13/28] KVM: arm64: Make ID_DFR1_EL1 writable
` [RFC PATCH v2 14/28] KVM: arm64: Make ID_MMFR0_EL1 writable
` [RFC PATCH v2 15/28] KVM: arm64: Make MVFR1_EL1 writable
` [RFC PATCH v2 16/28] KVM: arm64: Make ID registers without id_reg_info writable
` [RFC PATCH v2 17/28] KVM: arm64: Add consistency checking for frac fields of ID registers
` [RFC PATCH v2 18/28] KVM: arm64: Introduce KVM_CAP_ARM_ID_REG_WRITABLE capability
` [RFC PATCH v2 19/28] KVM: arm64: Use vcpu->arch cptr_el2 to track value of cptr_el2 for VHE
` [RFC PATCH v2 20/28] KVM: arm64: Use vcpu->arch.mdcr_el2 to track value of mdcr_el2
` [RFC PATCH v2 21/28] KVM: arm64: Introduce framework to trap disabled features
` [RFC PATCH v2 22/28] KVM: arm64: Trap disabled features of ID_AA64PFR0_EL1
` [RFC PATCH v2 23/28] KVM: arm64: Trap disabled features of ID_AA64PFR1_EL1
` [RFC PATCH v2 24/28] KVM: arm64: Trap disabled features of ID_AA64DFR0_EL1
` [RFC PATCH v2 25/28] KVM: arm64: Trap disabled features of ID_AA64MMFR1_EL1
` [RFC PATCH v2 26/28] KVM: arm64: Trap disabled features of ID_AA64ISAR1_EL1
` [RFC PATCH v2 27/28] KVM: arm64: Activate trapping of disabled CPU features for the guest
` [RFC PATCH v2 28/28] KVM: arm64: selftests: Introduce id_reg_test
[PATCH v2 0/6] KVM: arm64: Emulate the OS lock
2021-11-05 5:36 UTC (22+ messages)
` [PATCH v2 1/6] KVM: arm64: Correctly treat writes to OSLSR_EL1 as undefined
` [PATCH v2 2/6] KVM: arm64: Stash OSLSR_EL1 in the cpu context
` [PATCH v2 3/6] KVM: arm64: Allow guest to set the OSLK bit
` [PATCH v2 4/6] KVM: arm64: Emulate the OS Lock
` [PATCH v2 5/6] selftests: KVM: Add OSLSR_EL1 to the list of blessed regs
` [PATCH v2 6/6] selftests: KVM: Test OS lock behavior
[RFC PATCH v3 0/5] x86/kvm: Virtual suspend time injection support
2021-11-04 9:10 UTC (3+ messages)
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox