public inbox for kvm@vger.kernel.org
 help / color / mirror / Atom feed
 messages from 2023-11-03 17:55:56 to 2023-11-06 11:08:50 UTC [more...]

[PULL 00/60] Misc HW/UI patches for 2023-11-06
 2023-11-06 11:03 UTC  (46+ messages)
` [PULL 01/60] vl: Free machine list
` [PULL 02/60] vl: constify default_list
` [PULL 03/60] tests/vm/ubuntu.aarch64: Correct comment about TCG specific delay
` [PULL 04/60] tests/unit/test-seccomp: Remove mentions of softmmu in test names
` [PULL 05/60] accel/tcg: Declare tcg_flush_jmp_cache() in 'exec/tb-flush.h'
` [PULL 06/60] accel: Introduce cpu_exec_reset_hold()
` [PULL 07/60] accel/tcg: Factor tcg_cpu_reset_hold() out
` [PULL 08/60] target: Unify QOM style
` [PULL 09/60] target: Mention 'cpu-qom.h' is target agnostic
` [PULL 10/60] target/arm: Move internal declarations from 'cpu-qom.h' to 'cpu.h'
` [PULL 11/60] target/ppc: Remove CPU_RESOLVING_TYPE from 'cpu-qom.h'
` [PULL 12/60] target/riscv: "
` [PULL 13/60] target: Declare FOO_CPU_TYPE_NAME/SUFFIX in 'cpu-qom.h'
` [PULL 14/60] target/hexagon: Declare QOM definitions "
` [PULL 15/60] target/loongarch: "
` [PULL 16/60] target/nios2: "
` [PULL 17/60] target/openrisc: "
` [PULL 18/60] target/riscv: Move TYPE_RISCV_CPU_BASE definition to 'cpu.h'
` [PULL 19/60] target/ppc: Use env_archcpu() in helper_book3s_msgsndp()
` [PULL 20/60] target/riscv: Use env_archcpu() in [check_]nanbox()
` [PULL 21/60] target/s390x: Use env_archcpu() in handle_diag_308()
` [PULL 22/60] target/xtensa: Use env_archcpu() in update_c[compare|count]()
` [PULL 23/60] target/i386/hvf: Use x86_cpu in simulate_[rdmsr|wrmsr]()
` [PULL 24/60] target/i386/hvf: Use env_archcpu() in simulate_[rdmsr/wrmsr]()
` [PULL 25/60] target/i386/hvf: Use CPUState typedef
` [PULL 26/60] target/i386/hvf: Rename 'CPUState *cpu' variable as 'cs'
` [PULL 27/60] target/i386/hvf: Rename 'X86CPU *x86_cpu' variable as 'cpu'
` [PULL 28/60] target/i386/kvm: Correct comment in kvm_cpu_realize()
` [PULL 29/60] target/i386/monitor: synchronize cpu state for lapic info
` [PULL 30/60] target/mips: Fix MSA BZ/BNZ opcodes displacement
` [PULL 31/60] target/mips: Fix TX79 LQ/SQ opcodes
` [PULL 32/60] sysemu/kvm: Restrict kvmppc_get_radix_page_info() to ppc targets
` [PULL 33/60] hw/ppc/e500: Restrict ppce500_init_mpic_kvm() to KVM
` [PULL 34/60] target/ppc: Restrict KVM objects to system emulation
` [PULL 35/60] target/ppc: Prohibit target specific KVM prototypes on user emulation
` [PULL 36/60] target/nios2: Create IRQs *after* accelerator vCPU is realized
` [PULL 37/60] target/alpha: Tidy up alpha_cpu_class_by_name()
` [PULL 38/60] hw/cpu: Call object_class_is_abstract() once in cpu_class_by_name()
` [PULL 39/60] exec/cpu: Have cpu_exec_realize() return a boolean
` [PULL 40/60] hw/cpu: Clean up global variable shadowing
` [PULL 41/60] hw/loader: Clean up global variable shadowing in rom_add_file()
` [PULL 42/60] hw/isa/i82378: Propagate error if PC_SPEAKER device creation failed
` [PULL 43/60] hw/i386: Fix comment style in topology.h
` [PULL 44/60] tests/unit: Rename test-x86-cpuid.c to test-x86-topo.c
` [PULL 45/60] system/cpus: Fix CPUState.nr_cores' calculation

[PATCH v14 00/34] KVM: guest_memfd() and per-page attributes
 2023-11-06 11:03 UTC  (48+ messages)
` [PATCH 01/34] KVM: Tweak kvm_hva_range and hva_handler_t to allow reusing for gfn ranges
` [PATCH 02/34] KVM: Assert that mmu_invalidate_in_progress *never* goes negative
` [PATCH 03/34] KVM: Use gfn instead of hva for mmu_notifier_retry
` [PATCH 04/34] KVM: WARN if there are dangling MMU invalidations at VM destruction
` [PATCH 05/34] KVM: PPC: Drop dead code related to KVM_ARCH_WANT_MMU_NOTIFIER
` [PATCH 06/34] KVM: PPC: Return '1' unconditionally for KVM_CAP_SYNC_MMU
` [PATCH 07/34] KVM: Convert KVM_ARCH_WANT_MMU_NOTIFIER to CONFIG_KVM_GENERIC_MMU_NOTIFIER
` [PATCH 08/34] KVM: Introduce KVM_SET_USER_MEMORY_REGION2
` [PATCH 09/34] KVM: Add KVM_EXIT_MEMORY_FAULT exit to report faults to userspace
` [PATCH 10/34] KVM: Add a dedicated mmu_notifier flag for reclaiming freed memory
` [PATCH 11/34] KVM: Drop .on_unlock() mmu_notifier hook
` [PATCH 12/34] KVM: Introduce per-page memory attributes
` [PATCH 13/34] mm: Add AS_UNMOVABLE to mark mapping as completely unmovable
` [PATCH 14/34] fs: Rename anon_inode_getfile_secure() and anon_inode_getfd_secure()
` [PATCH 15/34] KVM: Add KVM_CREATE_GUEST_MEMFD ioctl() for guest-specific backing memory
` [PATCH 16/34] KVM: x86: "Reset" vcpu->run->exit_reason early in KVM_RUN
` [PATCH 17/34] KVM: x86: Disallow hugepages when memory attributes are mixed
` [PATCH 18/34] KVM: x86/mmu: Handle page fault for private memory
` [PATCH 19/34] KVM: Drop superfluous __KVM_VCPU_MULTIPLE_ADDRESS_SPACE macro
` [PATCH 20/34] KVM: Allow arch code to track number of memslot address spaces per VM
` [PATCH 21/34] KVM: x86: Add support for "protected VMs" that can utilize private memory
` [PATCH 22/34] KVM: selftests: Drop unused kvm_userspace_memory_region_find() helper
` [PATCH 23/34] KVM: selftests: Convert lib's mem regions to KVM_SET_USER_MEMORY_REGION2
` [PATCH 24/34] KVM: selftests: Add support for creating private memslots
` [PATCH 25/34] KVM: selftests: Add helpers to convert guest memory b/w private and shared
` [PATCH 26/34] KVM: selftests: Add helpers to do KVM_HC_MAP_GPA_RANGE hypercalls (x86)
` [PATCH 27/34] KVM: selftests: Introduce VM "shape" to allow tests to specify the VM type
` [PATCH 28/34] KVM: selftests: Add GUEST_SYNC[1-6] macros for synchronizing more data
` [PATCH 29/34] KVM: selftests: Add x86-only selftest for private memory conversions
` [PATCH 30/34] KVM: selftests: Add KVM_SET_USER_MEMORY_REGION2 helper
` [PATCH 31/34] KVM: selftests: Expand set_memory_region_test to validate guest_memfd()
` [PATCH 32/34] KVM: selftests: Add basic selftest for guest_memfd()
` [PATCH 33/34] KVM: selftests: Test KVM exit behavior for private memory/access
` [PATCH 34/34] KVM: selftests: Add a memory region subtest to validate invalid flags
` [PATCH 35/34] KVM: Prepare for handling only shared mappings in mmu_notifier events
` [PATCH 36/34] KVM: Add transparent hugepage support for dedicated guest memory

[PATCH v13 00/35] KVM: guest_memfd() and per-page attributes
 2023-11-06 11:03 UTC  (15+ messages)
` [PATCH v13 16/35] KVM: Add KVM_CREATE_GUEST_MEMFD ioctl() for guest-specific backing memory
` [PATCH v13 20/35] KVM: x86/mmu: Handle page fault for private memory
` [PATCH v13 23/35] KVM: x86: Add support for "protected VMs" that can utilize "

[PATCH 0/4] KVM: s390: Fix minor bugs in STFLE shadowing
 2023-11-06 11:00 UTC  (12+ messages)
` [PATCH 1/4] KVM: s390: vsie: Fix STFLE interpretive execution identification
` [PATCH 2/4] KVM: s390: vsie: Fix length of facility list shadowed
` [PATCH 3/4] KVM: s390: cpu model: Use previously unused constant
` [PATCH 4/4] KVM: s390: Minor refactor of base/ext facility lists

[PATCH net 0/4] vsock: fix server prevents clients from reconnecting
 2023-11-06 10:50 UTC  (10+ messages)
` [PATCH net 1/4] vsock/virtio: remove socket from connected/bound list on shutdown
` [PATCH net 2/4] test/vsock fix: add missing check on socket creation
` [PATCH net 3/4] test/vsock: refactor vsock_accept
` [PATCH net 4/4] test/vsock: add dobule bind connect test

[PATCH v5 00/14] Add Secure TSC support for SNP guests
 2023-11-06 10:45 UTC  (6+ messages)
` [PATCH v5 09/14] x86/sev: "

[PULL 0/7] xenfv-stable queue
 2023-11-06 10:39 UTC  (8+ messages)
` [PULL 1/7] i386/xen: Don't advertise XENFEAT_supervisor_mode_kernel
` [PULL 2/7] i386/xen: fix per-vCPU upcall vector for Xen emulation
` [PULL 3/7] hw/xen: select kernel mode for per-vCPU event channel upcall vector
` [PULL 4/7] hw/xen: don't clear map_track[] in xen_gnttab_reset()
` [PULL 5/7] hw/xen: fix XenStore watch delivery to guest
` [PULL 6/7] hw/xen: take iothread mutex in xen_evtchn_reset_op()
` [PULL 7/7] hw/xen: use correct default protocol for xen-block on x86

[kvm-unit-tests PATCH v7 0/8] s390x: Add support for running guests without MSO/MSL
 2023-11-06 10:39 UTC  (3+ messages)
` [kvm-unit-tests PATCH v7 7/8] s390x: add a test for SIE "

[kvm-unit-tests RFC PATCH 00/19] arm/arm64: Rework cache maintenance at boot
 2023-11-06  9:37 UTC  (3+ messages)

[PATCH net v2] virtio/vsock: Fix uninit-value in virtio_transport_recv_pkt()
 2023-11-06  8:42 UTC  (3+ messages)

[PATCH v19 0/3] add debugfs to migration driver
 2023-11-06  7:22 UTC  (4+ messages)
` [PATCH v19 1/3] vfio/migration: Add debugfs to live "
` [PATCH v19 2/3] Documentation: add debugfs description for vfio
` [PATCH v19 3/3] MAINTAINERS: Update the maintenance directory of vfio driver

[PATCH v6 00/20] KVM: x86/pmu: selftests: Fixes and new tests
 2023-11-06  7:19 UTC  (33+ messages)
` [PATCH v6 01/20] KVM: x86/pmu: Don't allow exposing unsupported architectural events
` [PATCH v6 02/20] KVM: x86/pmu: Don't enumerate support for fixed counters KVM can't virtualize
` [PATCH v6 03/20] KVM: x86/pmu: Don't enumerate arch events KVM doesn't support
` [PATCH v6 04/20] KVM: x86/pmu: Always treat Fixed counters as available when supported
` [PATCH v6 05/20] KVM: x86/pmu: Allow programming events that match unsupported arch events
` [PATCH v6 06/20] KVM: selftests: Add vcpu_set_cpuid_property() to set properties
` [PATCH v6 07/20] KVM: selftests: Drop the "name" param from KVM_X86_PMU_FEATURE()
` [PATCH v6 08/20] KVM: selftests: Extend {kvm,this}_pmu_has() to support fixed counters
` [PATCH v6 09/20] KVM: selftests: Add pmu.h and lib/pmu.c for common PMU assets
` [PATCH v6 10/20] KVM: selftests: Test Intel PMU architectural events on gp counters
` [PATCH v6 11/20] KVM: selftests: Test Intel PMU architectural events on fixed counters
` [PATCH v6 12/20] KVM: selftests: Test consistency of CPUID with num of gp counters
` [PATCH v6 13/20] KVM: selftests: Test consistency of CPUID with num of fixed counters
` [PATCH v6 14/20] KVM: selftests: Add functional test for Intel's fixed PMU counters
` [PATCH v6 15/20] KVM: selftests: Expand PMU counters test to verify LLC events
` [PATCH v6 16/20] KVM: selftests: Add a helper to query if the PMU module param is enabled
` [PATCH v6 17/20] KVM: selftests: Add helpers to read integer module params
` [PATCH v6 18/20] KVM: selftests: Query module param to detect FEP in MSR filtering test
` [PATCH v6 19/20] KVM: selftests: Move KVM_FEP macro into common library header
` [PATCH v6 20/20] KVM: selftests: Test PMC virtualization with forced emulation

[PATCH v18 0/2] add debugfs to migration driver
 2023-11-06  6:28 UTC  (4+ messages)
` [PATCH v18 2/2] Documentation: add debugfs description for vfio

linux-next: manual merge of the kvm-riscv tree with the risc-v tree
 2023-11-05 22:31 UTC  (2+ messages)

[GIT PULL] vhost,virtio,vdpa: features, fixes, cleanups
 2023-11-05 19:11 UTC  (2+ messages)

[BUG] KVM: VMX: WARNING in nested_vmx_vmexit
 2023-11-05 10:55 UTC 

[PATCH v12 1/1] vfio/nvgpu: Add vfio pci variant module for grace hopper
 2023-11-04  9:35 UTC  (2+ messages)

[PATCH v1 0/3] LoongArch: KVM: Remove SW timer switch during
 2023-11-04  8:57 UTC  (4+ messages)
` [PATCH v1 1/3] LoongArch: KVM: Remove SW timer switch during vcpu block flow
` [PATCH v1 2/3] LoongArch: KVM: Allow to access HW timer CSR registers always
` [PATCH v1 3/3] LoongArch: KVM: Remove kvm_acquire_timer before entering guest

[PATCH v6 00/25] Enable CET Virtualization
 2023-11-04  0:07 UTC  (11+ messages)
` [PATCH v6 18/25] KVM: x86: Use KVM-governed feature framework to track "SHSTK/IBT enabled"
` [PATCH v6 19/25] KVM: VMX: Emulate read and write to CET MSRs

[PATCH v2 0/6] KVM: x86/pmu: Clean up emulated PMC event handling
 2023-11-03 23:21 UTC  (8+ messages)
` [PATCH v2 1/6] KVM: x86/pmu: Move PMU reset logic to common x86 code
` [PATCH v2 2/6] KVM: x86/pmu: Reset the PMU, i.e. stop counters, before refreshing
` [PATCH v2 3/6] KVM: x86/pmu: Stop calling kvm_pmu_reset() at RESET (it's redundant)
` [PATCH v2 4/6] KVM: x86/pmu: Remove manual clearing of fields in kvm_pmu_init()
` [PATCH v2 5/6] KVM: x86/pmu: Update sample period in pmc_write_counter()
` [PATCH v2 6/6] KVM: x86/pmu: Track emulated counter events instead of previous counter

[PATCH v7 00/11] KVM: xen: update shared_info and vcpu_info handling
 2023-11-03 23:12 UTC  (13+ messages)
` [PATCH v7 02/11] KVM: pfncache: add a mark-dirty helper
` [PATCH v7 04/11] KVM: pfncache: base offset check on khva rather than gpa
` [PATCH v7 05/11] KVM: pfncache: allow a cache to be activated with a fixed (userspace) HVA

[PATCH] x86/fpu/xstate: Always preserve non-user xfeatures/flags in __state_perm
 2023-11-03 22:44 UTC 

[PATCH v3 0/3] Add arch_timer_edge_cases selftest
 2023-11-03 22:16 UTC  (5+ messages)
` [PATCH v3 1/3] KVM: arm64: selftests: Standardize GIC base addresses
` [PATCH v3 2/3] KVM: arm64: selftests: Guarantee interrupts are handled
` [PATCH v3 3/3] KVM: arm64: selftests: Add arch_timer_edge_cases selftest

[PATCH v5 00/17] Improve KVM + userfaultfd live migration via annotated memory faults
 2023-11-03 20:05 UTC  (6+ messages)
` [PATCH v5 10/17] KVM: Implement KVM_CAP_USERFAULT_ON_MISSING by atomizing __gfn_to_pfn_memslot() calls

[Patch 1/2] KVM: x86/pmu: Add Intel CPUID-hinted TopDown slots event
 2023-11-03 18:03 UTC  (11+ messages)


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