public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2025-04-24 07:44:17 to 2025-04-25 10:12:00 UTC [more...]

[PATCH v4 00/11] target/i386/kvm/pmu: PMU Enhancement, Bugfix and Cleanup
 2025-04-25 10:11 UTC  (9+ messages)
` [PATCH v4 01/11] [DO NOT MERGE] i386/cpu: Consolidate the helper to get Host's vendor
` [PATCH v4 03/11] target/i386: disable PERFCORE when "-pmu" is configured
` [PATCH v4 08/11] target/i386/kvm: query kvm.enable_pmu parameter
` [PATCH v4 09/11] target/i386/kvm: reset AMD PMU registers during VM reset

[PATCH v3 00/14] MSR code cleanup part one
 2025-04-25 10:08 UTC  (17+ messages)
` [PATCH v3 01/14] x86/msr: Move rdtsc{,_ordered}() to <asm/tsc.h>
` [PATCH v3 02/14] x86/msr: Remove rdpmc()
` [PATCH v3 03/14] x86/msr: Rename rdpmcl() to rdpmc()
` [PATCH v3 04/14] x86/msr: Convert the rdpmc() macro into an always inline function
` [PATCH v3 05/14] x86/msr: Return u64 consistently in Xen PMC read functions
` [PATCH v3 06/14] x86/msr: Convert __wrmsr() uses to native_wrmsr{,q}() uses
` [PATCH v3 07/14] x86/msr: Add the native_rdmsrq() helper
` [PATCH v3 08/14] x86/msr: Convert __rdmsr() uses to native_rdmsrq() uses
` [PATCH v3 09/14] x86/xen/msr: Remove calling native_{read,write}_msr{,_safe}() in pmu_msr_{read,write}()
` [PATCH v3 10/14] x86/xen/msr: Remove pmu_msr_{read,write}()
` [PATCH v3 11/14] x86/xen/msr: Remove the error pointer argument from set_seg()
` [PATCH v3 12/14] x86/pvops/msr: refactor pv_cpu_ops.write_msr{,_safe}()
` [PATCH v3 13/14] x86/msr: Replace wrmsr(msr, low, 0) with wrmsrq(msr, low)
` [PATCH v3 14/14] x86/msr: Change the function type of native_read_msr_safe()

[PATCH 0/5] accel/kvm: Support KVM PMU filter
 2025-04-25  9:37 UTC  (14+ messages)
` [PATCH 1/5] qapi/qom: Introduce kvm-pmu-filter object
` [PATCH 2/5] i386/kvm: Support basic KVM PMU filter
` [PATCH 3/5] i386/kvm: Support event with select & umask format in "
` [PATCH 4/5] i386/kvm: Support event with masked entry "
` [PATCH 5/5] i386/kvm: Support fixed counter "

[RFC PATCH 00/21] KVM: TDX huge page support for private memory
 2025-04-25  9:24 UTC  (20+ messages)
` [RFC PATCH 02/21] x86/virt/tdx: Enhance tdh_mem_page_aug() to support huge pages
` [RFC PATCH 03/21] x86/virt/tdx: Add SEAMCALL wrapper tdh_mem_page_demote()
` [RFC PATCH 04/21] KVM: TDX: Enforce 4KB mapping level during TD build Time

[RFC 00/10] i386/cpu: Cache CPUID fixup, Intel cache model & topo CPUID enhencement
 2025-04-25  9:39 UTC  (4+ messages)
` [RFC 01/10] i386/cpu: Mark CPUID[0x80000005] as reserved for Intel

[PATCH V3 0/1] KVM: TDX: Decrease TDX VM shutdown time
 2025-04-25  7:57 UTC  (2+ messages)
` [PATCH V3 1/1] KVM: TDX: Add sub-ioctl KVM_TDX_TERMINATE_VM

[PATCH v5 0/7] Introduce CET supervisor state support
 2025-04-25  8:24 UTC  (7+ messages)
` [PATCH v5 3/7] x86/fpu/xstate: Differentiate default features for host and guest FPUs
` [PATCH v5 6/7] x86/fpu/xstate: Introduce "guest-only" supervisor xfeature set

[PATCH v6 00/14] riscv: add SBI FWFT misaligned exception delegation support
 2025-04-25  7:46 UTC  (17+ messages)
` [PATCH v6 01/14] riscv: sbi: add Firmware Feature (FWFT) SBI extensions definitions
` [PATCH v6 02/14] riscv: sbi: remove useless parenthesis
` [PATCH v6 03/14] riscv: sbi: add new SBI error mappings
` [PATCH v6 04/14] riscv: sbi: add FWFT extension interface
` [PATCH v6 05/14] riscv: sbi: add SBI FWFT extension calls
` [PATCH v6 06/14] riscv: misaligned: request misaligned exception from SBI
` [PATCH v6 07/14] riscv: misaligned: use on_each_cpu() for scalar misaligned access probing
` [PATCH v6 08/14] riscv: misaligned: use correct CONFIG_ ifdef for misaligned_access_speed
` [PATCH v6 09/14] riscv: misaligned: move emulated access uniformity check in a function
` [PATCH v6 10/14] riscv: misaligned: add a function to check misalign trap delegability
` [PATCH v6 11/14] RISC-V: KVM: add SBI extension init()/deinit() functions
` [PATCH v6 12/14] RISC-V: KVM: add SBI extension reset callback
` [PATCH v6 13/14] RISC-V: KVM: add support for FWFT SBI extension
` [PATCH v6 14/14] RISC-V: KVM: add support for SBI_FWFT_MISALIGNED_DELEG

[PATCH 0/3] Move duplicated instructions macros into asm/insn.h
 2025-04-25  7:26 UTC  (8+ messages)
` [PATCH 1/3] riscv: Fix typo EXRACT -> EXTRACT
` [PATCH 2/3] riscv: Strengthen duplicate and inconsistent definition of RV_X()
` [PATCH 3/3] riscv: Move all duplicate insn parsing macros into asm/insn.h

[RFC PATCH v2 00/34] MSR refactor with new MSR instructions support
 2025-04-25  7:11 UTC  (26+ messages)
` [RFC PATCH v2 12/34] x86/msr: Remove pmu_msr_{read,write}()
` [RFC PATCH v2 13/34] x86/xen/msr: Remove the error pointer argument from set_reg()
` [RFC PATCH v2 14/34] x86/msr: refactor pv_cpu_ops.write_msr{_safe}()
` [RFC PATCH v2 21/34] x86/msr: Utilize the alternatives mechanism to write MSR

[PATCH 1/2] LoongArch: KVM: Add parameter exception code with exception handler
 2025-04-25  7:05 UTC  (2+ messages)

[RFC PATCH 00/39] 1G page support for guest_memfd
 2025-04-25  4:02 UTC  (11+ messages)
` [RFC PATCH 39/39] KVM: guest_memfd: Dynamically split/reconstruct HugeTLB page

[RFC PATCH 19/21] KVM: gmem: Split huge boundary leafs for punch hole of private memory
 2025-04-25  1:55 UTC  (3+ messages)

[PATCH v2] Documentation/virt/kvm: Fix TDX whitepaper footnote reference
 2025-04-25  1:51 UTC 

kvm guests crash when running "perf kvm top"
 2025-04-25  0:17 UTC  (4+ messages)

[PATCH v5 0/8] hw/hyperv: remove duplication compilation units
 2025-04-24 23:30 UTC  (10+ messages)
` [PATCH v5 1/8] hw/hyperv/hv-balloon-stub: common compilation unit
` [PATCH v5 2/8] hw/hyperv/hyperv.h: header cleanup
` [PATCH v5 3/8] hw/hyperv/vmbus: common compilation unit
` [PATCH v5 4/8] hw/hyperv/syndbg: "
` [PATCH v5 5/8] hw/hyperv/balloon: common balloon compilation units
` [PATCH v5 6/8] hw/hyperv/hyperv_testdev: common compilation unit
` [PATCH v5 7/8] include/system: make functions accessible from common code
` [PATCH v5 8/8] hw/hyperv/hyperv: common compilation unit

[PATCH net-next v11 0/8] Device memory TCP TX
 2025-04-24 18:49 UTC  (2+ messages)

[PATCH v2 0/3] KVM: x86: Dynamically allocate hashed page list
 2025-04-24 18:31 UTC  (9+ messages)
` [PATCH v2 2/3] KVM: x86: Allocate kvm_vmx/kvm_svm structures using kzalloc()

linux-next: build failure after merge of the kvm-fixes tree
 2025-04-24 17:38 UTC  (4+ messages)

[GIT PULL] KVM/arm64 fixes for 6.15, round #2
 2025-04-24 17:36 UTC  (2+ messages)

[PATCH v2] KVM: arm64, x86: make kvm_arch_has_irq_bypass() inline
 2025-04-24 17:28 UTC 

[RFC PATCH 00/34] Running Qualcomm's Gunyah Guests via KVM in EL1
 2025-04-24 16:57 UTC  (39+ messages)
` [RFC PATCH 01/34] KVM: Allow arch-specific vCPU allocation and freeing
` [RFC PATCH 02/34] KVM: irqfd: Add architecture hooks for irqfd allocation and initialization
` [RFC PATCH 03/34] KVM: irqfd: Allow KVM backends to override IRQ injection via set_irq callback
` [RFC PATCH 04/34] KVM: Add weak stubs for irqchip-related functions for Gunyah builds
` [RFC PATCH 05/34] KVM: Add KVM_SET_DTB_ADDRESS ioctl to pass guest DTB address from userspace
` [RFC PATCH 06/34] KVM: gunyah: Add initial Gunyah backend support
` [RFC PATCH 07/34] KVM: gunyah: Pin guest memory
` [RFC PATCH 08/34] docs: gunyah: Introduce Gunyah Hypervisor
` [RFC PATCH 09/34] dt-bindings: Add binding for gunyah hypervisor
` [RFC PATCH 10/34] gunyah: Common types and error codes for Gunyah hypercalls
` [RFC PATCH 11/34] gunyah: Add hypercalls to identify Gunyah
` [RFC PATCH 12/34] gunyah: Add hypervisor driver
` [RFC PATCH 13/34] gunyah: Add hypercalls to send and receive messages
` [RFC PATCH 14/34] gunyah: Add resource manager RPC core
` [RFC PATCH 15/34] gunyah: Add VM lifecycle RPC
` [RFC PATCH 16/34] gunyah: Add basic VM lifecycle management
` [RFC PATCH 17/34] gunyah: Translate gh_rm_hyp_resource into gunyah_resource
` [RFC PATCH 18/34] gunyah: Add resource tickets
` [RFC PATCH 19/34] gunyah: Add hypercalls for running a vCPU
` [RFC PATCH 20/34] gunyah: add proxy-scheduled vCPUs
` [RFC PATCH 21/34] gunyah: Add hypercalls for demand paging
` [RFC PATCH 22/34] gunyah: Add memory parcel RPC
` [RFC PATCH 23/34] gunyah: Add interfaces to map memory into guest address space
` [RFC PATCH 24/34] gunyah: Add platform ops on mem_lend/mem_reclaim
` [RFC PATCH 25/34] gunyah: Add Qualcomm Gunyah platform ops
` [RFC PATCH 26/34] gunyah: Share memory parcels
` [RFC PATCH 27/34] gunyah: Share guest VM dtb configuration to Gunyah
` [RFC PATCH 28/34] gunyah: Add RPC to enable demand paging
` [RFC PATCH 29/34] gunyah: Enable "
` [RFC PATCH 30/34] gunyah: Add RPC to set VM boot context
` [RFC PATCH 31/34] gunyah: allow userspace to set boot cpu context
` [RFC PATCH 32/34] gunyah: Add hypercalls for sending doorbell
` [RFC PATCH 33/34] KVM: gunyah: Implement irqfd interface
` [RFC PATCH 34/34] KVM: gunyah: enable KVM for Gunyah

[PATCH v9 00/24] Provide a new two step DMA mapping API
 2025-04-24 16:01 UTC  (15+ messages)
` [PATCH v9 10/24] mm/hmm: let users to tag specific PFN with DMA mapped bit
` [PATCH v9 17/24] vfio/mlx5: Enable the DMA link API

[kvmtool PATCH v2 00/10] Add SBI system suspend and cpu-type option
 2025-04-24 15:31 UTC  (11+ messages)
` [kvmtool PATCH v2 01/10] Sync-up headers with Linux-6.14 kernel
` [kvmtool PATCH v2 02/10] riscv: Add Svvptc extension support
` [kvmtool PATCH v2 03/10] riscv: Add Zabha "
` [kvmtool PATCH v2 04/10] riscv: Add Ziccrse "
` [kvmtool PATCH v2 05/10] riscv: Add SBI system suspend support
` [kvmtool PATCH v2 06/10] riscv: Make system suspend time configurable
` [kvmtool PATCH v2 07/10] riscv: Fix no params with nodefault segfault
` [kvmtool PATCH v2 08/10] riscv: Include single-letter extensions in isa_info_arr[]
` [kvmtool PATCH v2 09/10] riscv: Add cpu-type command-line option
` [kvmtool PATCH v2 10/10] riscv: Allow including extensions in the min CPU type using command-line

[kvmtool PATCH 00/10] Add SBI system suspend and cpu-type option
 2025-04-24 15:17 UTC  (11+ messages)
` [kvmtool PATCH 09/10] riscv: Add cpu-type command-line option
` [kvmtool PATCH 10/10] riscv: Allow including extensions in the min CPU type using command-line

[PATCH v3 2/4] crypto: ccp: Add support for SNP_FEATURE_INFO command
 2025-04-24 14:38 UTC  (2+ messages)

[PATCH net-next v2] vhost/net: Defer TX queue re-enable until after sendmsg
 2025-04-24 14:24 UTC  (5+ messages)

[PATCH 00/67] KVM: iommu: Overhaul device posted IRQs support
 2025-04-24 14:13 UTC  (4+ messages)
` [PATCH 33/67] KVM: x86: Dedup AVIC vs. PI code for identifying target vCPU

[PATCH v5 00/13] riscv: add SBI FWFT misaligned exception delegation support
 2025-04-24 13:04 UTC  (15+ messages)
` [PATCH v5 03/13] riscv: sbi: add FWFT extension interface
` [PATCH v5 04/13] riscv: sbi: add SBI FWFT extension calls
` [PATCH v5 05/13] riscv: misaligned: request misaligned exception from SBI
` [PATCH v5 13/13] RISC-V: KVM: add support for SBI_FWFT_MISALIGNED_DELEG

Drop "KVM: TDX: Handle TDG.VP.VMCALL<GetTdVmCallInfo> hypercall"
 2025-04-24 12:19 UTC  (7+ messages)

[PATCH net-next v2 0/3] vsock: SOCK_LINGER rework
 2025-04-24 11:24 UTC  (9+ messages)
` [PATCH net-next v2 1/3] vsock: Linger on unsent data

[PATCH net-next v10 0/9] Device memory TCP TX
 2025-04-24  9:06 UTC  (5+ messages)
` [PATCH net-next v10 3/9] net: devmem: TCP tx netlink api


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox