kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
 messages from 2019-08-07 23:54:25 to 2019-08-09 16:44:57 UTC [more...]

[RFC PATCH v6 00/92] VM introspection
 2019-08-09 16:24 UTC  (94+ messages)
` [RFC PATCH v6 01/92] kvm: introduce KVMI (VM introspection subsystem)
` [RFC PATCH v6 02/92] kvm: introspection: add basic ioctls (hook/unhook)
` [RFC PATCH v6 03/92] kvm: introspection: add permission access ioctls
` [RFC PATCH v6 04/92] kvm: introspection: add the read/dispatch message function
` [RFC PATCH v6 05/92] kvm: introspection: add KVMI_GET_VERSION
` [RFC PATCH v6 06/92] kvm: introspection: add KVMI_CONTROL_CMD_RESPONSE
` [RFC PATCH v6 07/92] kvm: introspection: honor the reply option when handling the KVMI_GET_VERSION command
` [RFC PATCH v6 08/92] kvm: introspection: add KVMI_CHECK_COMMAND and KVMI_CHECK_EVENT
` [RFC PATCH v6 09/92] kvm: introspection: add KVMI_GET_GUEST_INFO
` [RFC PATCH v6 10/92] kvm: introspection: add KVMI_CONTROL_VM_EVENTS
` [RFC PATCH v6 11/92] kvm: introspection: add vCPU related data
` [RFC PATCH v6 12/92] kvm: introspection: add a jobs list to every introspected vCPU
` [RFC PATCH v6 13/92] kvm: introspection: make the vCPU wait even when its jobs list is empty
` [RFC PATCH v6 14/92] kvm: introspection: handle introspection commands before returning to guest
` [RFC PATCH v6 15/92] kvm: introspection: handle vCPU related introspection commands
` [RFC PATCH v6 16/92] kvm: introspection: handle events and event replies
` [RFC PATCH v6 17/92] kvm: introspection: introduce event actions
` [RFC PATCH v6 18/92] kvm: introspection: add KVMI_EVENT_UNHOOK
` [RFC PATCH v6 19/92] kvm: introspection: add KVMI_EVENT_CREATE_VCPU
` [RFC PATCH v6 20/92] kvm: introspection: add KVMI_GET_VCPU_INFO
` [RFC PATCH v6 21/92] kvm: page track: add track_create_slot() callback
` [RFC PATCH v6 22/92] kvm: x86: provide all page tracking hooks with the guest virtual address
` [RFC PATCH v6 23/92] kvm: page track: add support for preread, prewrite and preexec
` [RFC PATCH v6 24/92] kvm: x86: wire in the preread/prewrite/preexec page trackers
` [RFC PATCH v6 25/92] kvm: x86: intercept the write access on sidt and other emulated instructions
` [RFC PATCH v6 26/92] kvm: x86: add kvm_mmu_nested_pagefault()
` [RFC PATCH v6 27/92] kvm: introspection: use page track
` [RFC PATCH v6 28/92] kvm: x86: consult the page tracking from kvm_mmu_get_page() and __direct_map()
` [RFC PATCH v6 29/92] kvm: introspection: add KVMI_CONTROL_EVENTS
` [RFC PATCH v6 30/92] kvm: x86: add kvm_spt_fault()
` [RFC PATCH v6 31/92] kvm: introspection: add KVMI_EVENT_PF
` [RFC PATCH v6 32/92] kvm: introspection: add KVMI_GET_PAGE_ACCESS
` [RFC PATCH v6 33/92] kvm: introspection: add KVMI_SET_PAGE_ACCESS
` [RFC PATCH v6 34/92] Documentation: Introduce EPT based Subpage Protection
` [RFC PATCH v6 35/92] KVM: VMX: Add control flags for SPP enabling
` [RFC PATCH v6 36/92] KVM: VMX: Implement functions for SPPT paging setup
` [RFC PATCH v6 37/92] KVM: VMX: Introduce SPP access bitmap and operation functions
` [RFC PATCH v6 38/92] KVM: VMX: Add init/set/get functions for SPP
` [RFC PATCH v6 39/92] KVM: VMX: Introduce SPP user-space IOCTLs
` [RFC PATCH v6 40/92] KVM: VMX: Handle SPP induced vmexit and page fault
` [RFC PATCH v6 41/92] KVM: MMU: Enable Lazy mode SPPT setup
` [RFC PATCH v6 42/92] KVM: MMU: Handle host memory remapping and reclaim
` [RFC PATCH v6 43/92] kvm: introspection: add KVMI_CONTROL_SPP
` [RFC PATCH v6 44/92] kvm: introspection: extend the internal database of tracked pages with write_bitmap info
` [RFC PATCH v6 45/92] kvm: introspection: add KVMI_GET_PAGE_WRITE_BITMAP
` [RFC PATCH v6 46/92] kvm: introspection: add KVMI_SET_PAGE_WRITE_BITMAP
` [RFC PATCH v6 47/92] kvm: introspection: add KVMI_READ_PHYSICAL and KVMI_WRITE_PHYSICAL
` [RFC PATCH v6 48/92] kvm: add kvm_vcpu_kick_and_wait()
` [RFC PATCH v6 49/92] kvm: introspection: add KVMI_PAUSE_VCPU and KVMI_EVENT_PAUSE_VCPU
` [RFC PATCH v6 50/92] kvm: introspection: add KVMI_GET_REGISTERS
` [RFC PATCH v6 51/92] kvm: introspection: add KVMI_SET_REGISTERS
` [RFC PATCH v6 52/92] kvm: introspection: add KVMI_GET_CPUID
` [RFC PATCH v6 53/92] kvm: introspection: add KVMI_INJECT_EXCEPTION + KVMI_EVENT_TRAP
` [RFC PATCH v6 54/92] kvm: introspection: add KVMI_CONTROL_CR and KVMI_EVENT_CR
` [RFC PATCH v6 55/92] kvm: introspection: add KVMI_CONTROL_MSR and KVMI_EVENT_MSR
` [RFC PATCH v6 56/92] kvm: x86: block any attempt to disable MSR interception if tracked by introspection
` [RFC PATCH v6 57/92] kvm: introspection: add KVMI_GET_XSAVE
` [RFC PATCH v6 58/92] kvm: introspection: add KVMI_GET_MTRR_TYPE
` [RFC PATCH v6 59/92] kvm: introspection: add KVMI_EVENT_XSETBV
` [RFC PATCH v6 60/92] kvm: x86: add kvm_arch_vcpu_set_guest_debug()
` [RFC PATCH v6 61/92] kvm: introspection: add KVMI_EVENT_BREAKPOINT
` [RFC PATCH v6 62/92] kvm: introspection: add KVMI_EVENT_HYPERCALL
` [RFC PATCH v6 63/92] kvm: introspection: add KVMI_EVENT_DESCRIPTOR
` [RFC PATCH v6 64/92] kvm: introspection: add single-stepping
` [RFC PATCH v6 65/92] kvm: introspection: add KVMI_EVENT_SINGLESTEP
` [RFC PATCH v6 66/92] kvm: introspection: add custom input when single-stepping a vCPU
` [RFC PATCH v6 67/92] kvm: introspection: use single stepping on unimplemented instructions
` [RFC PATCH v6 68/92] kvm: x86: emulate a guest page table walk on SPT violations due to A/D bit updates
` [RFC PATCH v6 69/92] kvm: x86: keep the page protected if tracked by the introspection tool
` [RFC PATCH v6 70/92] kvm: x86: filter out access rights only when "
` [RFC PATCH v6 71/92] mm: add support for remote mapping
  ` DANGER WILL ROBINSON, DANGER
` [RFC PATCH v6 72/92] kvm: introspection: add memory map/unmap support on the guest side
` [RFC PATCH v6 73/92] kvm: introspection: use remote mapping
` [RFC PATCH v6 74/92] kvm: x86: do not unconditionally patch the hypercall instruction during emulation
` [RFC PATCH v6 75/92] kvm: x86: disable gpa_available optimization in emulator_read_write_onepage()
` [RFC PATCH v6 76/92] kvm: x86: disable EPT A/D bits if introspection is present
` [RFC PATCH v6 77/92] kvm: introspection: add trace functions
` [RFC PATCH v6 78/92] kvm: x86: add tracepoints for interrupt and exception injections
` [RFC PATCH v6 79/92] kvm: x86: emulate movsd xmm, m64
` [RFC PATCH v6 80/92] kvm: x86: emulate movss xmm, m32
` [RFC PATCH v6 81/92] kvm: x86: emulate movq xmm, m64
` [RFC PATCH v6 82/92] kvm: x86: emulate movq r, xmm
` [RFC PATCH v6 83/92] kvm: x86: emulate movd xmm, m32
` [RFC PATCH v6 84/92] kvm: x86: enable the half part of movss, movsd, movups
` [RFC PATCH v6 85/92] kvm: x86: emulate lfence
` [RFC PATCH v6 86/92] kvm: x86: emulate xorpd xmm2/m128, xmm1
` [RFC PATCH v6 87/92] kvm: x86: emulate xorps xmm/m128, xmm
` [RFC PATCH v6 88/92] kvm: x86: emulate fst/fstp m64fp
` [RFC PATCH v6 89/92] kvm: x86: make lock cmpxchg r, r/m atomic
` [RFC PATCH v6 90/92] kvm: x86: emulate lock cmpxchg8b atomically
` [RFC PATCH v6 91/92] kvm: x86: emulate lock cmpxchg16b m128
` [RFC PATCH v6 92/92] kvm: x86: fallback to the single-step on multipage CMPXCHG emulation

[PATCH] MAINTAINERS: add KVM x86 reviewers
 2019-08-09 16:39 UTC  (6+ messages)

[PATCH v19 00/15] arm64: untag user pointers passed to the kernel
 2019-08-09 16:08 UTC  (16+ messages)
` [PATCH v19 02/15] arm64: Introduce prctl() options to control the tagged user addresses ABI
` [PATCH v19 04/15] mm: untag user pointers passed to memory syscalls

[GIT PULL] KVM/arm updates for 5.3-rc4
 2019-08-09 15:47 UTC  (6+ messages)
` [PATCH 1/4] KVM: arm/arm64: Sync ICH_VMCR_EL2 back when about to block
` [PATCH 2/4] KVM: arm64: Don't write junk to sysregs on reset
` [PATCH 3/4] KVM: arm: Don't write junk to CP15 registers "
` [PATCH 4/4] KVM: arm/arm64: vgic: Reevaluate level sensitive interrupts on enable

[Bug 203979] New: kvm_spurious_fault in L1 when running a nested kvm instance on AMD i686-pae
 2019-08-09 15:43 UTC  (2+ messages)
` [Bug 203979] "

[PATCH v3 1/2] selftests: kvm: Adding config fragments
 2019-08-09 14:58 UTC  (6+ messages)
` [PATCH v3 2/2] selftests: kvm: x86_64: "

[PATCH 0/9] arm64: Stolen time support
 2019-08-09 13:51 UTC  (6+ messages)
` [PATCH 9/9] arm64: Retrieve stolen time as paravirtualized guest

[PATCH 00/59] KVM: arm64: ARMv8.3 Nested Virtualization support
 2019-08-09 13:00 UTC  (8+ messages)
` [PATCH 47/59] KVM: arm64: nv: Propagate CNTVOFF_EL2 to the virtual EL1 timer

[Questions] Building kvm-kmod on 4.0+ or 5.0+ kernels
 2019-08-09 12:51 UTC 

[PATCH v3 00/39] put_user_pages(): miscellaneous call sites
 2019-08-09 12:20 UTC  (7+ messages)
` [PATCH v3 38/41] powerpc: convert put_page() to put_user_page*()
  ` [PATCH v3 20/41] fbdev/pvr2fb: "

[PATCH kvm-unit-tests] x86: access: avoid undefined behavior
 2019-08-09 10:57 UTC 

[PATCH 0/3] KVM/Hyper-V: Add Hyper-V direct tlb flush support
 2019-08-09 10:44 UTC  (6+ messages)
` [PATCH 1/3] x86/Hyper-V: Fix definition of struct hv_vp_assist_page
` [PATCH 2/3] KVM/Hyper-V: Add new KVM cap KVM_CAP_HYPERV_DIRECT_TLBFLUSH
` [PATCH 3/3] KVM/Hyper-V/VMX: Add direct tlb flush support

[PATCH] KVM: LAPIC: Periodically revaluate appropriate lapic_timer_advance_ns
 2019-08-09 10:24 UTC  (2+ messages)

[PATCH v4 00/20] KVM RISC-V Support
 2019-08-09  9:26 UTC  (12+ messages)
` [PATCH v4 02/20] RISC-V: Add bitmap reprensenting ISA features common across CPUs

[PATCH] MAINTAINERS: change list for KVM/s390
 2019-08-09  9:04 UTC  (2+ messages)

[PATCH 00/34] put_user_pages(): miscellaneous call sites
 2019-08-09  8:34 UTC  (13+ messages)

[PATCH 0/2] Simplify mtty driver and mdev core
 2019-08-09  8:07 UTC  (12+ messages)
` [PATCH v1 "
  ` [PATCH v1 2/2] vfio/mdev: Removed unused and redundant API for mdev UUID
` [PATCH v2 0/2] Simplify mtty driver and mdev core
  ` [PATCH v2 1/2] vfio-mdev/mtty: Simplify interrupt generation
  ` [PATCH v2 2/2] vfio/mdev: Removed unused and redundant API for mdev UUID

[PATCH v2] selftests: kvm: Adding config fragments
 2019-08-09  7:35 UTC  (6+ messages)

[PATCH] KVM: arm/arm64: vgic: Reevaluate level sensitive interrupts on enable
 2019-08-09  7:08 UTC  (2+ messages)

[PATCH V5 0/9] Fixes for vhost metadata acceleration
 2019-08-09  5:48 UTC  (10+ messages)
` [PATCH V5 1/9] vhost: don't set uaddr for invalid address
` [PATCH V5 2/9] vhost: validate MMU notifier registration
` [PATCH V5 3/9] vhost: fix vhost map leak
` [PATCH V5 4/9] vhost: reset invalidate_count in vhost_set_vring_num_addr()
` [PATCH V5 5/9] vhost: mark dirty pages during map uninit
` [PATCH V5 6/9] vhost: don't do synchronize_rcu() in vhost_uninit_vq_maps()
` [PATCH V5 7/9] vhost: do not use RCU to synchronize MMU notifier with worker
` [PATCH V5 8/9] vhost: correctly set dirty pages in MMU notifiers callback
` [PATCH V5 9/9] vhost: do not return -EAGAIN for non blocking invalidation too early

[PATCH V4 0/9] Fixes for metadata accelreation
 2019-08-09  5:35 UTC  (9+ messages)
` [PATCH V4 7/9] vhost: do not use RCU to synchronize MMU notifier with worker

[PATCH v3 0/7] x86: KVM: svm: get rid of hardcoded instructions lengths
 2019-08-08 17:30 UTC  (8+ messages)
` [PATCH v3 1/7] x86: KVM: svm: don't pretend to advance RIP in case wrmsr_interception() results in #GP
` [PATCH v3 2/7] x86: kvm: svm: propagate errors from skip_emulated_instruction()
` [PATCH v3 3/7] x86: KVM: clear interrupt shadow on EMULTYPE_SKIP
` [PATCH v3 4/7] x86: KVM: add xsetbv to the emulator
` [PATCH v3 5/7] x86: KVM: svm: remove hardcoded instruction length from intercepts
` [PATCH v3 6/7] x86: KVM: svm: eliminate weird goto from vmrun_interception()
` [PATCH v3 7/7] x86: KVM: svm: eliminate hardcoded RIP advancement "

[PATCH v4 0/6] mm / virtio: Provide support for unused page reporting
 2019-08-08 15:11 UTC  (4+ messages)
` [PATCH v4 4/6] mm: Introduce Reported pages

[RFC][PATCH v11 0/2] mm: Support for page hinting
 2019-08-08 11:41 UTC  (8+ messages)
` [RFC][Patch v11 1/2] mm: page_hinting: core infrastructure

[PATCH RFC UNTESTED] vfio-ccw: indirect access to translated cps
 2019-08-08  8:43 UTC  (5+ messages)

Why are we using preemption timer on x86?
 2019-08-08  7:28 UTC  (3+ messages)

[PATCH] vhost: do not reference a file that does not exist
 2019-08-08  0:52 UTC 


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).