virtualization.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-12-02 10:35:33 to 2020-12-08 04:52:53 UTC [more...]

(subset) [PATCH 000/141] Fix fall-through warnings for Clang
 2020-12-08  4:52 UTC 

[PATCH v2 2/2] drivers: gpio: add virtio-gpio guest driver
 2020-12-08  2:49 UTC  (10+ messages)
` [PATCH v2 1/2] drivers: gpio: put virtual gpio device into their own submenu

[PATCH net-next] tun: fix ubuf refcount incorrectly on error path
 2020-12-08  2:32 UTC  (3+ messages)

[RFC PATCH 5/8] vhost: allow userspace to bind vqs to CPUs
 2020-12-08  2:30 UTC  (4+ messages)
` [RFC PATCH 0/8] vhost: allow userspace to control vq cpu affinity

[PATCH v3] drivers: gpio: add virtio-gpio guest driver
 2020-12-08  1:20 UTC  (4+ messages)

[PATCH v11 00/81] VM introspection
 2020-12-07 20:46 UTC  (82+ messages)
` [PATCH v11 01/81] KVM: UAPI: add error codes used by the VM introspection code
` [PATCH v11 02/81] KVM: add kvm_vcpu_kick_and_wait()
` [PATCH v11 03/81] KVM: add kvm_get_max_gfn()
` [PATCH v11 04/81] KVM: doc: fix the hypercalls numbering
` [PATCH v11 05/81] KVM: x86: add kvm_arch_vcpu_get_regs() and kvm_arch_vcpu_get_sregs()
` [PATCH v11 06/81] KVM: x86: add kvm_arch_vcpu_set_regs()
` [PATCH v11 07/81] KVM: x86: avoid injecting #PF when emulate the VMCALL instruction
` [PATCH v11 08/81] KVM: x86: add kvm_x86_ops.bp_intercepted()
` [PATCH v11 09/81] KVM: x86: add kvm_x86_ops.control_cr3_intercept()
` [PATCH v11 10/81] KVM: x86: add kvm_x86_ops.cr3_write_intercepted()
` [PATCH v11 11/81] KVM: x86: add kvm_x86_ops.desc_ctrl_supported()
` [PATCH v11 12/81] KVM: svm: add support for descriptor-table VM-exits
` [PATCH v11 13/81] KVM: x86: add kvm_x86_ops.control_desc_intercept()
` [PATCH v11 14/81] KVM: x86: add kvm_x86_ops.desc_intercepted()
` [PATCH v11 15/81] KVM: x86: add kvm_x86_ops.msr_write_intercepted()
` [PATCH v11 16/81] KVM: x86: svm: use the vmx convention to control the MSR interception
` [PATCH v11 17/81] KVM: x86: add kvm_x86_ops.control_msr_intercept()
` [PATCH v11 18/81] KVM: x86: vmx: use a symbolic constant when checking the exit qualifications
` [PATCH v11 19/81] KVM: x86: save the error code during EPT/NPF exits handling
` [PATCH v11 20/81] KVM: x86: add kvm_x86_ops.fault_gla()
` [PATCH v11 21/81] KVM: x86: add kvm_x86_ops.control_singlestep()
` [PATCH v11 22/81] KVM: x86: export kvm_arch_vcpu_set_guest_debug()
` [PATCH v11 23/81] KVM: x86: extend kvm_mmu_gva_to_gpa_system() with the 'access' parameter
` [PATCH v11 24/81] KVM: x86: export kvm_inject_pending_exception()
` [PATCH v11 25/81] KVM: x86: export kvm_vcpu_ioctl_x86_get_xsave()
` [PATCH v11 26/81] KVM: x86: export kvm_vcpu_ioctl_x86_set_xsave()
` [PATCH v11 27/81] KVM: x86: page track: provide all callbacks with the guest virtual address
` [PATCH v11 28/81] KVM: x86: page track: add track_create_slot() callback
` [PATCH v11 29/81] KVM: x86: page_track: add support for preread, prewrite and preexec
` [PATCH v11 30/81] KVM: x86: wire in the preread/prewrite/preexec page trackers
` [PATCH v11 31/81] KVM: x86: disable gpa_available optimization for fetch and page-walk SPT violations
` [PATCH v11 32/81] KVM: introduce VM introspection
` [PATCH v11 33/81] KVM: introspection: add hook/unhook ioctls
` [PATCH v11 34/81] KVM: introspection: add permission access ioctls
` [PATCH v11 35/81] KVM: introspection: add the read/dispatch message function
` [PATCH v11 36/81] KVM: introspection: add KVMI_GET_VERSION
` [PATCH v11 37/81] KVM: introspection: add KVMI_VM_CHECK_COMMAND and KVMI_VM_CHECK_EVENT
` [PATCH v11 38/81] KVM: introspection: add KVMI_VM_GET_INFO
` [PATCH v11 39/81] KVM: introspection: add KVM_INTROSPECTION_PREUNHOOK
` [PATCH v11 40/81] KVM: introspection: add KVMI_VM_EVENT_UNHOOK
` [PATCH v11 41/81] KVM: introspection: add KVMI_VM_CONTROL_EVENTS
` [PATCH v11 42/81] KVM: introspection: add KVMI_VM_READ_PHYSICAL/KVMI_VM_WRITE_PHYSICAL
` [PATCH v11 43/81] KVM: introspection: add vCPU related data
` [PATCH v11 44/81] KVM: introspection: add a jobs list to every introspected vCPU
` [PATCH v11 45/81] KVM: introspection: handle vCPU introspection requests
` [PATCH v11 46/81] KVM: introspection: handle vCPU commands
` [PATCH v11 47/81] KVM: introspection: add KVMI_VCPU_GET_INFO
` [PATCH v11 48/81] KVM: introspection: add KVMI_VM_PAUSE_VCPU
` [PATCH v11 49/81] KVM: introspection: add support for vCPU events
` [PATCH v11 50/81] KVM: introspection: add KVMI_VCPU_EVENT_PAUSE
` [PATCH v11 51/81] KVM: introspection: add the crash action handling on the event reply
` [PATCH v11 52/81] KVM: introspection: add KVMI_VCPU_CONTROL_EVENTS
` [PATCH v11 53/81] KVM: introspection: add KVMI_VCPU_GET_REGISTERS
` [PATCH v11 54/81] KVM: introspection: add KVMI_VCPU_SET_REGISTERS
` [PATCH v11 55/81] KVM: introspection: add KVMI_VCPU_GET_CPUID
` [PATCH v11 56/81] KVM: introspection: add KVMI_VCPU_EVENT_HYPERCALL
` [PATCH v11 57/81] KVM: introspection: add KVMI_VCPU_EVENT_BREAKPOINT
` [PATCH v11 58/81] KVM: introspection: add cleanup support for vCPUs
` [PATCH v11 59/81] KVM: introspection: restore the state of #BP interception on unhook
` [PATCH v11 60/81] KVM: introspection: add KVMI_VM_CONTROL_CLEANUP
` [PATCH v11 61/81] KVM: introspection: add KVMI_VCPU_CONTROL_CR and KVMI_VCPU_EVENT_CR
` [PATCH v11 62/81] KVM: introspection: restore the state of CR3 interception on unhook
` [PATCH v11 63/81] KVM: introspection: add KVMI_VCPU_INJECT_EXCEPTION + KVMI_VCPU_EVENT_TRAP
` [PATCH v11 64/81] KVM: introspection: add KVMI_VM_GET_MAX_GFN
` [PATCH v11 65/81] KVM: introspection: add KVMI_VCPU_EVENT_XSETBV
` [PATCH v11 66/81] KVM: introspection: add KVMI_VCPU_GET_XCR
` [PATCH v11 67/81] KVM: introspection: add KVMI_VCPU_GET_XSAVE
` [PATCH v11 68/81] KVM: introspection: add KVMI_VCPU_SET_XSAVE
` [PATCH v11 69/81] KVM: introspection: add KVMI_VCPU_GET_MTRR_TYPE
` [PATCH v11 70/81] KVM: introspection: add KVMI_VCPU_EVENT_DESCRIPTOR
` [PATCH v11 71/81] KVM: introspection: restore the state of descriptor-table register interception on unhook
` [PATCH v11 72/81] KVM: introspection: add KVMI_VCPU_CONTROL_MSR and KVMI_VCPU_EVENT_MSR
` [PATCH v11 73/81] KVM: introspection: restore the state of MSR interception on unhook
` [PATCH v11 74/81] KVM: introspection: add KVMI_VM_SET_PAGE_ACCESS
` [PATCH v11 75/81] KVM: introspection: add KVMI_VCPU_EVENT_PF
` [PATCH v11 76/81] KVM: introspection: extend KVMI_GET_VERSION with struct kvmi_features
` [PATCH v11 77/81] KVM: introspection: add KVMI_VCPU_CONTROL_SINGLESTEP
` [PATCH v11 78/81] KVM: introspection: add KVMI_VCPU_EVENT_SINGLESTEP
` [PATCH v11 79/81] KVM: introspection: add KVMI_VCPU_TRANSLATE_GVA
` [PATCH v11 80/81] KVM: introspection: emulate a guest page table walk on SPT violations due to A/D bit updates
` [PATCH v11 81/81] KVM: x86: call the page tracking code on emulation failure

[RFC PATCH 02/27] vhost: Add device callback in vhost_migration_log
 2020-12-07 17:42 UTC  (5+ messages)
  ` [RFC PATCH 04/27] vhost: add vhost_kernel_set_vring_enable
  ` [RFC PATCH 05/27] vhost: Add hdev->dev.sw_lm_vq_handler
  ` [RFC PATCH 06/27] virtio: Add virtio_queue_get_used_notify_split
  ` [RFC PATCH 07/27] vhost: Route guest->host notification through qemu

[PATCH] vhost scsi: fix error return code in vhost_scsi_set_endpoint()
 2020-12-07 16:07 UTC  (2+ messages)

[PATCH v3 00/19] vdpa: generalize vdpa simulator
 2020-12-07  5:33 UTC  (31+ messages)
` [PATCH v3 01/19] vdpa: remove unnecessary 'default n' in Kconfig entries
` [PATCH v3 02/19] vdpa_sim: remove unnecessary headers inclusion
` [PATCH v3 03/19] vdpa_sim: remove hard-coded virtq count
` [PATCH v3 04/19] vhost/iotlb: add VHOST_IOTLB_UNLIMITED macro
` [PATCH v3 05/19] vdpa_sim: remove the limit of IOTLB entries
` [PATCH v3 06/19] vdpa_sim: rename vdpasim_config_ops variables
` [PATCH v3 07/19] vdpa_sim: add struct vdpasim_dev_attr for device attributes
` [PATCH v3 08/19] vdpa_sim: add device id field in vdpasim_dev_attr
` [PATCH v3 09/19] vdpa_sim: add supported_features "
` [PATCH v3 10/19] vdpa_sim: add work_fn "
` [PATCH v3 11/19] vdpa_sim: store parsed MAC address in a buffer
` [PATCH v3 12/19] vdpa_sim: make 'config' generic and usable for any device type
` [PATCH v3 13/19] vdpa_sim: add get_config callback in vdpasim_dev_attr
` [PATCH v3 14/19] vdpa_sim: add set_config "
` [PATCH v3 15/19] vdpa_sim: set vringh notify callback
` [PATCH v3 16/19] vdpa_sim: use kvmalloc to allocate vdpasim->buffer
` [PATCH v3 17/19] vdpa_sim: make vdpasim->buffer size configurable
` [PATCH v3 18/19] vdpa_sim: split vdpasim_virtqueue's iov field in out_iov and in_iov
` [PATCH v3 19/19] vdpa: split vdpasim to core and net modules

[PATCH V2 00/19] vDPA driver for virtio-pci device
 2020-12-07  3:29 UTC  (25+ messages)
` [PATCH V2 01/19] virtio-pci: do not access iomem via struct virtio_pci_device directly
` [PATCH V2 02/19] virtio-pci: split out modern device
` [PATCH V2 03/19] virtio-pci-modern: factor out modern device initialization logic
` [PATCH V2 04/19] virtio-pci-modern: introduce vp_modern_remove()
` [PATCH V2 05/19] virtio-pci-modern: introduce helper to set config vector
` [PATCH V2 06/19] virtio-pci-modern: introduce helpers for setting and getting status
` [PATCH V2 07/19] virtio-pci-modern: introduce helpers for setting and getting features
` [PATCH V2 08/19] virtio-pci-modern: introduce vp_modern_generation()
` [PATCH V2 09/19] virtio-pci-modern: introduce vp_modern_set_queue_vector()
` [PATCH V2 10/19] virtio-pci-modern: introduce vp_modern_queue_address()
` [PATCH V2 11/19] virtio-pci-modern: introduce helper to set/get queue_enable
` [PATCH V2 12/19] virtio-pci-modern: introduce helper for setting/geting queue size
` [PATCH V2 13/19] virtio-pci-modern: introduce helper for getting queue nums
` [PATCH V2 14/19] virtio-pci-modern: introduce helper to get notification offset
` [PATCH V2 15/19] virito-pci-modern: rename map_capability() to vp_modern_map_capability()
` [PATCH V2 16/19] virtio-pci: introduce modern device module
` [PATCH V2 17/19] vdpa: set the virtqueue num during register
` [PATCH V2 18/19] virtio_vdpa: don't warn when fail to disable vq
` [PATCH V2 19/19] vdpa: introduce virtio pci driver

[PATCH] vdpa/mlx5: Use write memory barrier after updating CQ index
 2020-12-07  2:51 UTC 

[PATCH AUTOSEL 5.9 22/33] vhost scsi: add lun parser helper
 2020-12-05 20:59 UTC  (15+ messages)

[PATCH] vdpa/mlx5: Use random MAC for the vdpa net instance
 2020-12-04  2:53 UTC  (19+ messages)

[PATCH 00/15] drm: Move struct drm_device.pdev to legacy
 2020-12-03 15:12 UTC  (6+ messages)
` [PATCH 14/15] drm/vmwgfx: Remove references to struct drm_device.pdev

[GIT PULL] vdpa: last minute bugfixes
 2020-12-02 20:48 UTC  (2+ messages)

[PATCH v2 00/12] x86: major paravirt cleanup
 2020-12-02 17:08 UTC  (5+ messages)
` [PATCH v2 04/12] x86/xen: drop USERGS_SYSRET64 paravirt call

[PATCH v3 16/17] x86/ioapic: export a few functions and data structures via io_apic.h
 2020-12-02 15:18 UTC  (2+ messages)

[PATCH 1/1 V2] vhost scsi: fix lun reset completion handling
 2020-12-02 14:48 UTC 

[PATCH v2 00/20] drm: Move struct drm_device.pdev to legacy
 2020-12-02 14:28 UTC  (8+ messages)
` [PATCH v2 01/20] drm/amdgpu: Fix trailing whitespaces

[PATCH 2/2] uapi: virtio_ids: add missing device type IDs from OASIS spec
 2020-12-02 11:21 UTC 

[PATCH 0/7] Introduce vdpa management tool
 2020-12-02 11:13 UTC  (8+ messages)
    ` [External] "

[PATCH 00/10] vhost/qemu: thread per IO SCSI vq
 2020-12-02 10:35 UTC  (9+ 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).