kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2021-01-06 08:30:58 to 2021-01-07 22:25:24 UTC [more...]

[PULL 00/66] MIPS patches for 2021-01-07
 2021-01-07 22:22 UTC  (25+ messages)
` [PULL 01/66] target/mips: Add CP0 Config0 register definitions for MIPS3 ISA
` [PULL 02/66] target/mips: Replace CP0_Config0 magic values by proper definitions
` [PULL 03/66] target/mips/addr: Add translation helpers for KSEG1
` [PULL 04/66] target/mips/mips-defs: Remove USE_HOST_FLOAT_REGS comment
` [PULL 05/66] target/mips/mips-defs: Reorder CPU_MIPS5 definition
` [PULL 06/66] target/mips/mips-defs: Rename CPU_MIPSxx Release 1 as CPU_MIPSxxR1
` [PULL 07/66] target/mips/mips-defs: Introduce CPU_MIPS64 and cpu_type_is_64bit()
` [PULL 08/66] hw/mips/boston: Check 64-bit support with cpu_type_is_64bit()
` [PULL 09/66] target/mips/mips-defs: Use ISA_MIPS32 definition to check Release 1
` [PULL 10/66] target/mips/mips-defs: Use ISA_MIPS32R2 definition to check Release 2
` [PULL 11/66] target/mips/mips-defs: Use ISA_MIPS32R3 definition to check Release 3
` [PULL 12/66] target/mips/mips-defs: Use ISA_MIPS32R5 definition to check Release 5
` [PULL 13/66] target/mips/mips-defs: Use ISA_MIPS32R6 definition to check Release 6
` [PULL 14/66] target/mips/mips-defs: Rename ISA_MIPS32 as ISA_MIPS_R1
` [PULL 15/66] target/mips/mips-defs: Rename ISA_MIPS32R2 as ISA_MIPS_R2
` [PULL 16/66] target/mips/mips-defs: Rename ISA_MIPS32R3 as ISA_MIPS_R3
` [PULL 17/66] target/mips/mips-defs: Rename ISA_MIPS32R5 as ISA_MIPS_R5
` [PULL 18/66] target/mips/mips-defs: Rename ISA_MIPS32R6 as ISA_MIPS_R6
` [PULL 19/66] target/mips: Inline cpu_state_reset() in mips_cpu_reset()
` [PULL 20/66] target/mips: Extract FPU helpers to 'fpu_helper.h'
` [PULL 21/66] target/mips: Add !CONFIG_USER_ONLY comment after #endif
` [PULL 23/66] target/mips: Move common helpers from helper.c to cpu.c
` [PULL 24/66] target/mips: Rename helper.c as tlb_helper.c
` [PULL 25/66] target/mips: Fix code style for checkpatch.pl

[PATCH v2 0/4] KVM: nSVM: few random fixes
 2021-01-07 21:05 UTC  (13+ messages)
` [PATCH v2 1/4] KVM: nSVM: cancel KVM_REQ_GET_NESTED_STATE_PAGES on nested vmexit
` [PATCH v2 2/4] KVM: nSVM: correctly restore nested_run_pending on migration
` [PATCH v2 3/4] KVM: nSVM: always leave the nested state first on KVM_SET_NESTED_STATE
` [PATCH v2 4/4] KVM: nSVM: mark vmcb as dirty when forcingly leaving the guest mode

[PATCH v5 27/34] KVM: SVM: Add support for booting APs for an SEV-ES guest
 2021-01-07 19:53 UTC  (4+ messages)
` [PATCH v5.1 27/34] KVM: SVM: Add support for booting APs in "

[PATCH v2 1/9] KVM: x86: Add AMD SEV specific Hypercall3
 2021-01-07 19:22 UTC  (16+ messages)

[PATCH v3 10/21] x86/fpu/xstate: Update xstate save function to support dynamic xstate
 2021-01-07 18:40 UTC  (3+ messages)

[PATCH v2 00/24] target/mips: Convert MSA ASE to decodetree
 2021-01-07 18:29 UTC  (13+ messages)
` [PATCH v2 02/24] target/mips/translate: Expose check_mips_64() to 32-bit mode
` [PATCH v2 03/24] target/mips/cpu: Introduce isa_rel6_available() helper

[GIT PULL] KVM/arm64 fixes for 5.11, take #1
 2021-01-07 18:19 UTC  (20+ messages)
` [PATCH 01/18] KVM: arm64: Don't access PMCR_EL0 when no PMU is available
` [PATCH 02/18] KVM: arm64: Prevent use of invalid PSCI v0.1 function IDs
` [PATCH 03/18] KVM: arm64: Use lm_alias in nVHE-only VA conversion
` [PATCH 04/18] KVM: arm64: Skip computing hyp VA layout for VHE
` [PATCH 05/18] KVM: arm64: Minor cleanup of hyp variables used in host
` [PATCH 06/18] KVM: arm64: Remove unused includes in psci-relay.c
` [PATCH 07/18] KVM: arm64: Move skip_host_instruction to adjust_pc.h
` [PATCH 08/18] KVM: arm64: Declutter host PSCI 0.1 handling
` [PATCH 09/18] KVM: Documentation: Add arm64 KVM_RUN error codes
` [PATCH 10/18] KVM: arm64: arch_timer: Remove VGIC initialization check
` [PATCH 11/18] KVM: arm64: Move double-checked lock to kvm_vgic_map_resources()
` [PATCH 12/18] KVM: arm64: Update comment in kvm_vgic_map_resources()
` [PATCH 13/18] KVM: arm64: Remove redundant call to kvm_pmu_vcpu_reset()
` [PATCH 14/18] KVM: arm64: Consolidate dist->ready setting into kvm_vgic_map_resources()
` [PATCH 15/18] KVM: arm64: Fix hyp_cpu_pm_{init,exit} __init annotation
` [PATCH 16/18] KVM: arm64: Remove spurious semicolon in reg_to_encoding()
` [PATCH 17/18] KVM: arm64: Replace KVM_ARM_PMU with HW_PERF_EVENTS
` [PATCH 18/18] arm64: cpufeature: remove non-exist CONFIG_KVM_ARM_HOST

[PATCH] MAINTAINERS: Really update email address for Sean Christopherson
 2021-01-07 18:09 UTC  (2+ messages)

[PATCH v3 1/2] KVM: x86/mmu: Ensure TDP MMU roots are freed after yield
 2021-01-07 17:53 UTC  (6+ messages)
` [PATCH v3 2/2] KVM: x86/mmu: Clarify TDP MMU page list invariants

[RFC 0/2] Introduce MMIO/PIO dispatch file descriptors (ioregionfd)
 2021-01-07 17:53 UTC  (12+ messages)
` [RFC 1/2] KVM: add initial support for KVM_SET_IOREGION

[RFC PATCH 00/23] KVM SGX virtualization support
 2021-01-07 16:14 UTC  (43+ messages)
` [RFC PATCH 02/23] x86/sgx: Add enum for SGX_CHILD_PRESENT error code
` [RFC PATCH 03/23] x86/sgx: Introduce virtual EPC for use by KVM guests
` [RFC PATCH 04/23] x86/cpufeatures: Add SGX1 and SGX2 sub-features
` [RFC PATCH 05/23] x86/cpu/intel: Allow SGX virtualization without Launch Control support
` [RFC PATCH 10/23] x86/sgx: Add helper to update SGX_LEPUBKEYHASHn MSRs
` [RFC PATCH 11/23] x86/sgx: Add helpers to expose ECREATE and EINIT to KVM

[PATCH 0/3] KVM: SVM: Refactor vcpu_load/put to use vmload/vmsave for host state
 2021-01-07 15:47 UTC  (6+ messages)
` [PATCH v3 1/3] KVM: SVM: use vmsave/vmload for saving/restoring additional "

[PATCH V1 5/5] vfio: block during VA suspend
 2021-01-07 15:17 UTC  (3+ messages)

[PATCH v13 00/15] s390/vfio-ap: dynamic configuration support
 2021-01-07 14:41 UTC  (3+ messages)

[PATCH v3 00/17] KVM: x86/pmu: Add support to enable Guest PEBS via DS
 2021-01-07 12:38 UTC  (4+ messages)
` [PATCH v3 06/17] KVM: x86/pmu: Add IA32_PEBS_ENABLE MSR emulation for extended PEBS

[PATCH] uio: uio_pci_generic: don't fail probe if pdev->irq equals to IRQ_NOTCONNECTED
 2021-01-07 11:38 UTC  (2+ messages)

[PATCH] Revert "KVM: x86: Unconditionally enable irqs in guest context"
 2021-01-07 10:55 UTC  (6+ messages)
    `  "

[PATCH 0/2] RFC: VMX: fix for disappearing L1->L2 event injection on L1 migration
 2021-01-07  9:41 UTC  (7+ messages)
` [PATCH 1/2] KVM: VMX: create vmx_process_injected_event
` [PATCH 2/2] KVM: nVMX: fix for disappearing L1->L2 event injection on L1 migration

[PATCH 0/5] vfio/iommu_type1: Some fixes about dirty tracking
 2021-01-07  9:29 UTC  (6+ messages)
` [PATCH 1/5] vfio/iommu_type1: Fixes vfio_dma_populate_bitmap to avoid dirty lose
` [PATCH 2/5] vfio/iommu_type1: Populate dirty bitmap for new vfio_dma
` [PATCH 3/5] vfio/iommu_type1: Populate dirty bitmap when attach group
` [PATCH 4/5] vfio/iommu_type1: Carefully use unmap_unpin_all during dirty tracking
` [PATCH 5/5] vfio/iommu_type1: Move sanity_check_pfn_list to unmap_unpin_all

[PATCH] uio: uio_pci_generic: don't fail probe if pdev->irq equals to IRQ_NOTCONNECTED
 2021-01-07  9:27 UTC 

[RFC PATCH v2 1/1] platform-msi: Add platform check for subdevice irq domain
 2021-01-07  7:16 UTC  (11+ messages)

[RFC PATCH 1/1] platform-msi: Add platform check for subdevice irq domain
 2021-01-07  7:01 UTC  (3+ messages)

[PATCH 0/6] vfio/iommu_type1: Some optimizations about dirty tracking
 2021-01-07  4:44 UTC  (7+ messages)
` [PATCH 1/6] vfio/iommu_type1: Make an explicit "promote" semantic
` [PATCH 2/6] vfio/iommu_type1: Ignore external domain when promote pinned_scope
` [PATCH 3/6] vfio/iommu_type1: Initially set the pinned_page_dirty_scope
` [PATCH 4/6] vfio/iommu_type1: Drop parameter "pgsize" of vfio_dma_bitmap_alloc_all
` [PATCH 5/6] vfio/iommu_type1: Drop parameter "pgsize" of vfio_iova_dirty_bitmap
` [PATCH 6/6] vfio/iommu_type1: Drop parameter "pgsize" of update_user_bitmap

[PATCH 0/6] KVM: nSVM: few random fixes
 2021-01-06 23:55 UTC  (11+ messages)
` [PATCH 1/6] KVM: SVM: create svm_process_injected_event
` [PATCH 2/6] KVM: nSVM: fix for disappearing L1->L2 event injection on L1 migration
` [PATCH 3/6] KVM: nSVM: cancel KVM_REQ_GET_NESTED_STATE_PAGES on nested vmexit
` [PATCH 4/6] KVM: nSVM: correctly restore nested_run_pending on migration
` [PATCH 5/6] KVM: nSVM: always leave the nested state first on KVM_SET_NESTED_STATE
` [PATCH 6/6] KVM: nSVM: mark vmcb as dirty when forcingly leaving the guest mode

[PATCH v2 1/2] KVM: x86/mmu: Ensure TDP MMU roots are freed after yield
 2021-01-06 22:13 UTC  (5+ messages)
` [PATCH v2 2/2] KVM: x86/mmu: Clarify TDP MMU page list invariants

[PATCH 0/5] virtio/vsock: introduce SOCK_SEQPACKET support
 2021-01-06 19:33 UTC  (9+ messages)
` [PATCH 1/5] vsock/virtio: support for SOCK_SEQPACKET socket
` [PATCH 4/5] af_vsock: add socket ops for SOCK_SEQPACKET

[Patch v3 0/2] cgroup: KVM: New Encryption IDs cgroup controller
 2021-01-06 18:45 UTC  (8+ messages)

[PATCH 1/3] kvm: x86/mmu: Clarify TDP MMU page list invariants
 2021-01-06 18:02 UTC  (8+ messages)
` [PATCH 2/3] kvm: x86/mmu: Ensure TDP MMU roots are freed after yield

[PATCH 0/9] KVM/ARM: Some vgic fixes and init sequence KVM selftests
 2021-01-06 17:12 UTC  (5+ messages)
` [PATCH 1/9] KVM: arm64: vgic-v3: Fix some error codes when setting RDIST base
` [PATCH 2/9] KVM: arm64: Fix KVM_VGIC_V3_ADDR_TYPE_REDIST_REGION read

[PATCH V1 0/5] vfio virtual address update
 2021-01-06 14:50 UTC  (4+ messages)
` [PATCH V1 1/5] vfio: maintain dma_list order

[PATCH] uio: uio_pci_generic: don't fail probe if pdev->irq equals to IRQ_NOTCONNECTED
 2021-01-06 12:28 UTC 

[PATCH v3 00/15] x86: major paravirt cleanup
 2021-01-06 10:41 UTC  (5+ messages)
` [PATCH v3 06/15] x86/paravirt: switch time pvops functions to use static_call()

[PATCH v16 0/9] Enable ptp_kvm for arm/arm64
 2021-01-06  8:29 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).